From 777fdbf8abc545d40c22c29aeae275dd23c07fb3 Mon Sep 17 00:00:00 2001 From: ancientpower Date: Tue, 11 Aug 2020 20:18:59 -0500 Subject: [PATCH 01/94] ghosts can read newscasters by clicking on them --- code/modules/newscaster/newscaster_machine.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/newscaster/newscaster_machine.dm b/code/modules/newscaster/newscaster_machine.dm index cb2d49fc64..470b34e82c 100644 --- a/code/modules/newscaster/newscaster_machine.dm +++ b/code/modules/newscaster/newscaster_machine.dm @@ -95,6 +95,10 @@ GLOBAL_LIST_EMPTY(allCasters) . = ..() update_icon() +/obj/machinery/newscaster/attack_ghost(mob/dead/observer/user) + if(istype(user)) + user.read_news() + /obj/machinery/newscaster/ui_interact(mob/user) . = ..() if(ishuman(user) || issilicon(user)) From 6392367df47825cf7bf88c99094d009033090ce6 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Tue, 18 Aug 2020 17:28:09 +0100 Subject: [PATCH 02/94] donator items --- code/__HELPERS/donator_groupings.dm | 10 +-- code/game/objects/items/miscellaneous.dm | 84 ++++++++++++++++--- code/game/objects/items/pet_carrier.dm | 3 + code/game/objects/structures/bedsheet_bin.dm | 16 +++- code/modules/client/preferences.dm | 4 +- .../code/modules/client/loadout/__donator.dm | 21 +++++ 6 files changed, 117 insertions(+), 21 deletions(-) diff --git a/code/__HELPERS/donator_groupings.dm b/code/__HELPERS/donator_groupings.dm index bdff20553a..4305fb1ed5 100644 --- a/code/__HELPERS/donator_groupings.dm +++ b/code/__HELPERS/donator_groupings.dm @@ -17,9 +17,9 @@ For fast lookups, this is generated using regenerate_donator_grouping_list() /proc/regenerate_donator_grouping_list() GLOB.donators_by_group = list() //reinit everything var/list/donator_list = GLOB.donators_by_group //cache - var/list/tier_1 = TIER_1_DONATORS - donator_list[DONATOR_GROUP_TIER_1] = tier_1.Copy() //The .Copy() is to "decouple"/make a new list, rather than letting the global list impact the config list. - var/list/tier_2 = tier_1 + TIER_2_DONATORS //Using + on lists implies making new lists, so we don't need to manually Copy(). + var/list/tier_3 = TIER_3_DONATORS + donator_list[DONATOR_GROUP_TIER_3] = tier_3.Copy() //The .Copy() is to "decouple"/make a new list, rather than letting the global list impact the config list. + var/list/tier_2 = tier_3 + TIER_2_DONATORS //Using + on lists implies making new lists, so we don't need to manually Copy(). donator_list[DONATOR_GROUP_TIER_2] = tier_2 - var/list/tier_3 = tier_2 + TIER_3_DONATORS - donator_list[DONATOR_GROUP_TIER_3] = tier_3 + var/list/tier_1 = tier_2 + TIER_1_DONATORS + donator_list[DONATOR_GROUP_TIER_1] = tier_1 diff --git a/code/game/objects/items/miscellaneous.dm b/code/game/objects/items/miscellaneous.dm index a7f7e3152c..735a425ff6 100644 --- a/code/game/objects/items/miscellaneous.dm +++ b/code/game/objects/items/miscellaneous.dm @@ -47,8 +47,11 @@ spawn_option(stored_options[choice],M) qdel(src) -/obj/item/choice_beacon/proc/spawn_option(obj/choice,mob/living/M) - var/obj/new_item = new choice() +/obj/item/choice_beacon/proc/create_choice_atom(atom/choice) + return new choice() + +/obj/item/choice_beacon/proc/spawn_option(atom/choice,mob/living/M) + var/obj/new_item = create_choice_atom(choice) var/obj/structure/closet/supplypod/bluespacepod/pod = new() pod.explosionSize = list(0,0,0,0) new_item.forceMove(pod) @@ -152,10 +155,44 @@ augment_list[initial(A.name)] = A return augment_list -/obj/item/choice_beacon/augments/spawn_option(obj/choice,mob/living/M) +/obj/item/choice_beacon/augments/spawn_option(atom/choice,mob/living/M) new choice(get_turf(M)) to_chat(M, "You hear something crackle from the beacon for a moment before a voice speaks. \"Please stand by for a message from S.E.L.F. Message as follows: Item request received. Your package has been transported, use the autosurgeon supplied to apply the upgrade. Message ends.\"") +/obj/item/choice_beacon/pet //donator beacon that summons a small friendly animal + name = "pet beacon" + desc = "Straight from the outerspace pet shop to your feet." + var/static/list/pets = list("Crab" = /mob/living/simple_animal/crab, + "Cat" = /mob/living/simple_animal/pet/cat, + "Space cat" = /mob/living/simple_animal/pet/cat/space, + "Kitten" = /mob/living/simple_animal/pet/cat/kitten, + "Dog" = /mob/living/simple_animal/pet/dog, + "Corgi" = /mob/living/simple_animal/pet/dog/corgi, + "Pug" = /mob/living/simple_animal/pet/dog/pug, + "Exotic Corgi" = /mob/living/simple_animal/pet/dog/corgi/exoticcorgi, + "Fox" = /mob/living/simple_animal/pet/fox, + "Red Panda" = /mob/living/simple_animal/pet/redpanda, + "Possum" = /mob/living/simple_animal/opossum) + var/pet_name + +/obj/item/choice_beacon/pet/generate_display_names() + return pets + +/obj/item/choice_beacon/pet/create_choice_atom(atom/choice) + var/mob/living/simple_animal/new_choice = new choice() + new_choice.butcher_results = null //please don't eat your pet, chef + var/obj/item/pet_carrier/donator/carrier = new() //a donator pet carrier is just a carrier that can't be shoved in an autolathe for metal + new_choice.forceMove(carrier) + new_choice.mob_size = MOB_SIZE_TINY //yeah we're not letting you use this roundstart pet to hurt people / knock them down + if(pet_name) + new_choice.name = pet_name + return carrier + +/obj/item/choice_beacon/pet/spawn_option(atom/choice,mob/living/M) + pet_name = input(M, "What would you like to name the pet? (leave blank for default name)", "Pet Name") + ..() + +//choice boxes (they just open in your hand instead of making a pod) /obj/item/choice_beacon/box name = "choice box (default)" desc = "Think really hard about what you want, and then rip it open!" @@ -163,21 +200,17 @@ icon_state = "deliverypackage3" item_state = "deliverypackage3" -/obj/item/choice_beacon/box/spawn_option(obj/choice,mob/living/M) - to_chat(M, "The box opens, revealing the [choice]!") +/obj/item/choice_beacon/box/spawn_option(atom/choice,mob/living/M) + var/choice_text = choice + if(ispath(choice_text)) + choice_text = initial(choice.name) + to_chat(M, "The box opens, revealing the [choice_text]!") playsound(src.loc, 'sound/items/poster_ripped.ogg', 50, 1) M.temporarilyRemoveItemFromInventory(src, TRUE) M.put_in_hands(new choice) qdel(src) -/obj/item/choice_beacon/box/plushie - name = "choice box (plushie)" - desc = "Using the power of quantum entanglement, this box contains every plush, until the moment it is opened!" - icon = 'icons/obj/plushes.dmi' - icon_state = "box" - item_state = "box" - -/obj/item/choice_beacon/box/spawn_option(choice,mob/living/M) +/obj/item/choice_beacon/box/plushie/spawn_option(choice,mob/living/M) if(ispath(choice, /obj/item/toy/plush)) ..() //regular plush, spawn it naturally else @@ -188,6 +221,31 @@ M.put_in_hands(new choice) qdel(src) +/obj/item/choice_beacon/box/carpet //donator carpet beacon + name = "choice box (carpet)" + desc = "Contains 50 of a selected carpet inside!" + var/static/list/carpet_list = list(/obj/item/stack/tile/carpet/black/fifty = "Black Carpet", + "Black & Red Carpet" = /obj/item/stack/tile/carpet/blackred/fifty, + "Monochrome Carpet" = /obj/item/stack/tile/carpet/monochrome/fifty, + "Blue Carpet" = /obj/item/stack/tile/carpet/blue/fifty, + "Cyan Carpet" = /obj/item/stack/tile/carpet/cyan/fifty, + "Green Carpet" = /obj/item/stack/tile/carpet/green/fifty, + "Orange Carpet" = /obj/item/stack/tile/carpet/orange/fifty, + "Purple Carpet" = /obj/item/stack/tile/carpet/purple/fifty, + "Red Carpet" = /obj/item/stack/tile/carpet/red/fifty, + "Royal Black Carpet" = /obj/item/stack/tile/carpet/royalblack/fifty, + "Royal Blue Carpet" = /obj/item/stack/tile/carpet/royalblue/fifty) + +/obj/item/choice_beacon/box/carpet/generate_display_names() + return carpet_list + +/obj/item/choice_beacon/box/plushie + name = "choice box (plushie)" + desc = "Using the power of quantum entanglement, this box contains every plush, until the moment it is opened!" + icon = 'icons/obj/plushes.dmi' + icon_state = "box" + item_state = "box" + /obj/item/choice_beacon/box/plushie/generate_display_names() var/list/plushie_list = list() //plushie set 1: just subtypes of /obj/item/toy/plush diff --git a/code/game/objects/items/pet_carrier.dm b/code/game/objects/items/pet_carrier.dm index a4b12dd629..ef2fb44d3d 100644 --- a/code/game/objects/items/pet_carrier.dm +++ b/code/game/objects/items/pet_carrier.dm @@ -29,6 +29,9 @@ var/has_lock_sprites = TRUE //whether to load the lock overlays or not var/allows_hostiles = FALSE //does the pet carrier allow hostile entities to be held within it? +/obj/item/pet_carrier/donator + custom_materials = null //you cant just use the loadout item to get free metal! + /obj/item/pet_carrier/Destroy() if(occupants.len) for(var/V in occupants) diff --git a/code/game/objects/structures/bedsheet_bin.dm b/code/game/objects/structures/bedsheet_bin.dm index 45cac650b8..c36fba96cb 100644 --- a/code/game/objects/structures/bedsheet_bin.dm +++ b/code/game/objects/structures/bedsheet_bin.dm @@ -243,10 +243,24 @@ LINEN BINS /obj/item/bedsheet/random/Initialize() ..() - var/type = pick(typesof(/obj/item/bedsheet) - /obj/item/bedsheet/random) + var/type = pick(typesof(/obj/item/bedsheet) - list(/obj/item/bedsheet/random, /obj/item/bedsheet/chameleon)) new type(loc) return INITIALIZE_HINT_QDEL +/obj/item/bedsheet/chameleon //donator chameleon bedsheet + name = "chameleon bedsheet" + desc = "Bedsheet technology has truly gone too far." + var/datum/action/item_action/chameleon/change/chameleon_action + +/obj/item/bedsheet/chameleon/New() + ..() + chameleon_action = new(src) + chameleon_action.chameleon_type = /obj/item/bedsheet + chameleon_action.chameleon_name = "Bedsheet" + chameleon_action.chameleon_blacklist = typecacheof(list(/obj/item/bedsheet/chameleon, /obj/item/bedsheet/random), only_root_path = TRUE) + chameleon_action.initialize_disguises() + +//bedsheet bin /obj/structure/bedsheetbin name = "linen bin" desc = "It looks rather cosy." diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 017a25db34..fddbb46847 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -791,9 +791,9 @@ GLOBAL_LIST_EMPTY(preferences_datums) dat += "" dat += "
" - + dat += "
" - + if(!length(GLOB.loadout_categories[gear_category])) dat += "No subcategories detected. Something is horribly wrong!" else diff --git a/modular_citadel/code/modules/client/loadout/__donator.dm b/modular_citadel/code/modules/client/loadout/__donator.dm index 378c70d187..06783df03d 100644 --- a/modular_citadel/code/modules/client/loadout/__donator.dm +++ b/modular_citadel/code/modules/client/loadout/__donator.dm @@ -7,6 +7,27 @@ category = LOADOUT_CATEGORY_DONATOR ckeywhitelist = list("This entry should never appear with this variable set.") //If it does, then that means somebody fucked up the whitelist system pretty hard +/datum/gear/donator/pet + name = "Pet Beacon" + slot = SLOT_IN_BACKPACK + path = /obj/item/choice_beacon/pet + ckeywhitelist = list() + donator_group_id = DONATOR_GROUP_TIER_1 // can be accessed by all donators + +/datum/gear/donator/carpet + name = "Carpet Beacon" + slot = SLOT_IN_BACKPACK + path = /obj/item/choice_beacon/box/carpet + ckeywhitelist = list() + donator_group_id = DONATOR_GROUP_TIER_1 + +/datum/gear/donator/chameleon_bedsheet + name = "Chameleon Bedsheet" + slot = SLOT_NECK + path = /obj/item/bedsheet/chameleon + ckeywhitelist = list() + donator_group_id = DONATOR_GROUP_TIER_1 + /datum/gear/donator/donortestingbikehorn name = "Donor item testing bikehorn" slot = SLOT_IN_BACKPACK From 264e789c3d9ba453e82b1ce208eb8768f806b4ec Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Tue, 18 Aug 2020 17:38:20 +0100 Subject: [PATCH 03/94] yes --- code/modules/client/preferences.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index fddbb46847..871e6dc49d 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -801,7 +801,7 @@ GLOBAL_LIST_EMPTY(preferences_datums) if(!subcategories.Find(gear_subcategory)) gear_subcategory = subcategories[1] - var/firstsubcat = FALSE + var/firstsubcat = TRUE for(var/subcategory in subcategories) if(firstsubcat) firstsubcat = FALSE From 945ac02152cc694dd635aaf90019f9d182751b9a Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Tue, 18 Aug 2020 17:48:10 +0100 Subject: [PATCH 04/94] small error --- code/game/objects/items/miscellaneous.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/miscellaneous.dm b/code/game/objects/items/miscellaneous.dm index 735a425ff6..fe03d0e41f 100644 --- a/code/game/objects/items/miscellaneous.dm +++ b/code/game/objects/items/miscellaneous.dm @@ -182,7 +182,7 @@ var/mob/living/simple_animal/new_choice = new choice() new_choice.butcher_results = null //please don't eat your pet, chef var/obj/item/pet_carrier/donator/carrier = new() //a donator pet carrier is just a carrier that can't be shoved in an autolathe for metal - new_choice.forceMove(carrier) + carrier.add_occupant(new_choice) new_choice.mob_size = MOB_SIZE_TINY //yeah we're not letting you use this roundstart pet to hurt people / knock them down if(pet_name) new_choice.name = pet_name From 19dce2263d4d57c8c1288bf0eb6a8f76965165c6 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Tue, 18 Aug 2020 17:49:01 +0100 Subject: [PATCH 05/94] that too --- code/game/objects/items/miscellaneous.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/miscellaneous.dm b/code/game/objects/items/miscellaneous.dm index fe03d0e41f..28526e87d4 100644 --- a/code/game/objects/items/miscellaneous.dm +++ b/code/game/objects/items/miscellaneous.dm @@ -186,6 +186,7 @@ new_choice.mob_size = MOB_SIZE_TINY //yeah we're not letting you use this roundstart pet to hurt people / knock them down if(pet_name) new_choice.name = pet_name + new_choice.unique_name = TRUE return carrier /obj/item/choice_beacon/pet/spawn_option(atom/choice,mob/living/M) From 98baa090057295ad960dae3e0ba692a80b79c2fc Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Wed, 19 Aug 2020 01:47:11 +0100 Subject: [PATCH 06/94] the aforementioned pet changes --- code/game/objects/items/miscellaneous.dm | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/code/game/objects/items/miscellaneous.dm b/code/game/objects/items/miscellaneous.dm index 28526e87d4..e75cbed4c6 100644 --- a/code/game/objects/items/miscellaneous.dm +++ b/code/game/objects/items/miscellaneous.dm @@ -47,11 +47,11 @@ spawn_option(stored_options[choice],M) qdel(src) -/obj/item/choice_beacon/proc/create_choice_atom(atom/choice) +/obj/item/choice_beacon/proc/create_choice_atom(atom/choice, mob/owner) return new choice() /obj/item/choice_beacon/proc/spawn_option(atom/choice,mob/living/M) - var/obj/new_item = create_choice_atom(choice) + var/obj/new_item = create_choice_atom(choice, M) var/obj/structure/closet/supplypod/bluespacepod/pod = new() pod.explosionSize = list(0,0,0,0) new_item.forceMove(pod) @@ -178,12 +178,16 @@ /obj/item/choice_beacon/pet/generate_display_names() return pets -/obj/item/choice_beacon/pet/create_choice_atom(atom/choice) +/obj/item/choice_beacon/pet/create_choice_atom(atom/choice, mob/owner) var/mob/living/simple_animal/new_choice = new choice() new_choice.butcher_results = null //please don't eat your pet, chef var/obj/item/pet_carrier/donator/carrier = new() //a donator pet carrier is just a carrier that can't be shoved in an autolathe for metal carrier.add_occupant(new_choice) new_choice.mob_size = MOB_SIZE_TINY //yeah we're not letting you use this roundstart pet to hurt people / knock them down + new_choice.pass_flags = PASSTABLE | PASSMOB //your pet is not a bullet/person shield + new_choice.density = FALSE + new_choice.blood_volume = 0 //your pet cannot be used to drain blood from for a bloodsucker + new_choice.desc = "A pet [new_choice], owned by [owner]!" if(pet_name) new_choice.name = pet_name new_choice.unique_name = TRUE From 097851cbc48620f11b992d70959f0c2ae40e07ae Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Wed, 19 Aug 2020 02:11:08 +0100 Subject: [PATCH 07/94] better name --- code/game/objects/items/miscellaneous.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/miscellaneous.dm b/code/game/objects/items/miscellaneous.dm index e75cbed4c6..60a95b8f31 100644 --- a/code/game/objects/items/miscellaneous.dm +++ b/code/game/objects/items/miscellaneous.dm @@ -187,7 +187,7 @@ new_choice.pass_flags = PASSTABLE | PASSMOB //your pet is not a bullet/person shield new_choice.density = FALSE new_choice.blood_volume = 0 //your pet cannot be used to drain blood from for a bloodsucker - new_choice.desc = "A pet [new_choice], owned by [owner]!" + new_choice.desc = "A pet [initial(choice.name)], owned by [owner]!" if(pet_name) new_choice.name = pet_name new_choice.unique_name = TRUE From 46a464d3b8412c1613f07725e4f044942fd0fafb Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Wed, 19 Aug 2020 02:26:08 +0100 Subject: [PATCH 08/94] no it also cant be sentient --- code/game/objects/items/miscellaneous.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/game/objects/items/miscellaneous.dm b/code/game/objects/items/miscellaneous.dm index 60a95b8f31..6f1aec287b 100644 --- a/code/game/objects/items/miscellaneous.dm +++ b/code/game/objects/items/miscellaneous.dm @@ -188,6 +188,7 @@ new_choice.density = FALSE new_choice.blood_volume = 0 //your pet cannot be used to drain blood from for a bloodsucker new_choice.desc = "A pet [initial(choice.name)], owned by [owner]!" + new_choice.can_have_ai = FALSE //no it cant be sentient damnit if(pet_name) new_choice.name = pet_name new_choice.unique_name = TRUE From c1468923d8ecd7235a510e91e139804484efe31b Mon Sep 17 00:00:00 2001 From: raspyosu Date: Thu, 20 Aug 2020 21:32:52 -0400 Subject: [PATCH 09/94] nerf the teg it had to be done, my child. --- code/modules/power/generator.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/power/generator.dm b/code/modules/power/generator.dm index 78a20e5b62..da93b53504 100644 --- a/code/modules/power/generator.dm +++ b/code/modules/power/generator.dm @@ -66,7 +66,7 @@ var/energy_transfer = delta_temperature*hot_air_heat_capacity*cold_air_heat_capacity/(hot_air_heat_capacity+cold_air_heat_capacity) var/heat = energy_transfer*(1-efficiency) - lastgen += energy_transfer*efficiency + lastgen += energy_transfer*(efficiency-0.41) hot_air.set_temperature(hot_air.return_temperature() - energy_transfer/hot_air_heat_capacity) cold_air.set_temperature(cold_air.return_temperature() + heat/cold_air_heat_capacity) From 709ddb4e584952552ab89941351ecc4430f9159f Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 21 Aug 2020 03:48:30 +0100 Subject: [PATCH 10/94] test --- code/modules/client/preferences.dm | 13 +++++++++++++ code/modules/mob/living/carbon/human/species.dm | 7 ++++++- .../carbon/human/species_types/furrypeople.dm | 2 ++ .../modules/mob/living/carbon/human/update_icons.dm | 2 +- code/modules/surgery/bodyparts/_bodyparts.dm | 2 +- 5 files changed, 23 insertions(+), 3 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 480ebda4f8..a1b986f0ac 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -246,6 +246,8 @@ GLOBAL_LIST_EMPTY(preferences_datums) /// Which of the 5 persistent scar slots we randomly roll to load for this round, if enabled. Actually rolled in [/datum/preferences/proc/load_character(slot)] var/scars_index = 1 + var/chosen_limb_id //body sprite selected to load for the users limbs, null means default, is sanitized when loaded + /datum/preferences/New(client/C) parent = C @@ -521,6 +523,10 @@ GLOBAL_LIST_EMPTY(preferences_datums) dat += "" mutant_category = 0 + if(length(pref_species.allowed_limb_ids)) + dat += "

Body sprite

" + dat += "[pref_species.mutant_bodyparts["limbs_id"]]" + if(mutant_category) dat += "" mutant_category = 0 @@ -2119,6 +2125,11 @@ GLOBAL_LIST_EMPTY(preferences_datums) var/selected_custom_speech_verb = input(user, "Choose your desired speech verb (none means your species speech verb)", "Character Preference") as null|anything in GLOB.speech_verbs if(selected_custom_speech_verb) custom_speech_verb = selected_custom_speech_verb + + if("bodysprite") + var/selected_body_sprite = input(user, "Choose your desired body sprite", "Character Preference") as null|anything in pref_species.allowed_limb_ids + if(selected_body_sprite) + chosen_limb_id = selected_body_sprite //this gets sanitized before loading else switch(href_list["preference"]) //CITADEL PREFERENCES EDIT - I can't figure out how to modularize these, so they have to go here. :c -Pooj @@ -2510,6 +2521,8 @@ GLOBAL_LIST_EMPTY(preferences_datums) character.dna.features = features.Copy() character.set_species(chosen_species, icon_update = FALSE, pref_load = TRUE) + if(chosen_limb_id && (chosen_limb_id in character.dna.species.allowed_limb_ids)) + character.dna.species.mutant_bodyparts["limbs_id"] = chosen_limb_id character.dna.real_name = character.real_name character.dna.nameless = character.nameless character.dna.custom_species = character.custom_species diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm index 230a634e0e..ed509f900a 100644 --- a/code/modules/mob/living/carbon/human/species.dm +++ b/code/modules/mob/living/carbon/human/species.dm @@ -114,6 +114,9 @@ GLOBAL_LIST_EMPTY(roundstart_race_names) /// Our default override for typing indicator state var/typing_indicator_state + //the ids you can use for your species, if empty, it means default only and not changeable + var/list/allowed_limb_ids + /////////// // PROCS // /////////// @@ -121,7 +124,9 @@ GLOBAL_LIST_EMPTY(roundstart_race_names) /datum/species/New() if(!limbs_id) //if we havent set a limbs id to use, just use our own id - limbs_id = id + mutant_bodyparts["limbs_id"] = id //done this way to be non-intrusive to the existing system + else + mutant_bodyparts["limbs_id"] = limbs_id ..() //update our mutant bodyparts to include unlocked ones diff --git a/code/modules/mob/living/carbon/human/species_types/furrypeople.dm b/code/modules/mob/living/carbon/human/species_types/furrypeople.dm index 7706d4a9d5..6fca61e4dd 100644 --- a/code/modules/mob/living/carbon/human/species_types/furrypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/furrypeople.dm @@ -17,3 +17,5 @@ tail_type = "mam_tail" wagging_type = "mam_waggingtail" species_type = "furry" + + allowed_limb_ids = list("lizard","pod","mammal","human","insect") \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm index e399ddf872..9b39438563 100644 --- a/code/modules/mob/living/carbon/human/update_icons.dm +++ b/code/modules/mob/living/carbon/human/update_icons.dm @@ -660,7 +660,7 @@ use_mob_overlay_icon: if FALSE, it will always use the default_icon_file even if //produces a key based on the human's limbs /mob/living/carbon/human/generate_icon_render_key() - . = "[dna.species.limbs_id]" + . = "[dna.species.mutant_bodyparts["limbs_id"]]" if(dna.check_mutation(HULK)) . += "-coloured-hulk" diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm index 3d88282937..8e360a38b4 100644 --- a/code/modules/surgery/bodyparts/_bodyparts.dm +++ b/code/modules/surgery/bodyparts/_bodyparts.dm @@ -598,7 +598,7 @@ var/datum/species/S = H.dna.species base_bp_icon = S?.icon_limbs || DEFAULT_BODYPART_ICON - species_id = S.limbs_id + species_id = S.mutant_bodyparts["limbs_id"] species_flags_list = H.dna.species.species_traits //body marking memes From 2bd63023d164df23eb453a668245c68c898f51ab Mon Sep 17 00:00:00 2001 From: raspyosu Date: Fri, 21 Aug 2020 00:19:46 -0400 Subject: [PATCH 11/94] fix it again FIXITFIXITFIXITFIXITFIXITFIXITFIXIT makes teg logistic (thanks to putnam for the function) --- code/modules/power/generator.dm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/modules/power/generator.dm b/code/modules/power/generator.dm index da93b53504..8baf751ac7 100644 --- a/code/modules/power/generator.dm +++ b/code/modules/power/generator.dm @@ -42,6 +42,7 @@ #define GENRATE 800 // generator output coefficient from Q +#define LOGISTIC_FUNCTION(L,k,x,x_0) (L/(1+(NUM_E**(-k*(x-x_0))))) /obj/machinery/power/generator/process_atmos() @@ -66,7 +67,7 @@ var/energy_transfer = delta_temperature*hot_air_heat_capacity*cold_air_heat_capacity/(hot_air_heat_capacity+cold_air_heat_capacity) var/heat = energy_transfer*(1-efficiency) - lastgen += energy_transfer*(efficiency-0.41) + lastgen += LOGISTIC_FUNCTION(1000000,0.0034,delta_temperature,2000) hot_air.set_temperature(hot_air.return_temperature() - energy_transfer/hot_air_heat_capacity) cold_air.set_temperature(cold_air.return_temperature() + heat/cold_air_heat_capacity) From 95cb1faa375ff53861252bdeefa5795143ad1794 Mon Sep 17 00:00:00 2001 From: raspyosu Date: Fri, 21 Aug 2020 00:30:12 -0400 Subject: [PATCH 12/94] remove redefinition of logistic function oops! all redefines --- code/modules/power/generator.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/modules/power/generator.dm b/code/modules/power/generator.dm index 8baf751ac7..54b1362518 100644 --- a/code/modules/power/generator.dm +++ b/code/modules/power/generator.dm @@ -42,7 +42,6 @@ #define GENRATE 800 // generator output coefficient from Q -#define LOGISTIC_FUNCTION(L,k,x,x_0) (L/(1+(NUM_E**(-k*(x-x_0))))) /obj/machinery/power/generator/process_atmos() From cbe9d05fb663230afc09a7f2175f9efa3e751075 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 21 Aug 2020 21:08:17 +0100 Subject: [PATCH 13/94] fuck --- code/__DEFINES/mobs.dm | 3 +-- code/_globalvars/lists/flavor_misc.dm | 3 +++ .../carbon/human/species_types/bugmen.dm | 5 +++-- .../carbon/human/species_types/furrypeople.dm | 3 +-- .../living/carbon/human/species_types/ipc.dm | 1 - .../carbon/human/species_types/podpeople.dm | 2 ++ .../carbon/human/species_types/synthliz.dm | 1 - .../carbon/human/species_types/synths.dm | 2 +- .../living/carbon/human/species_types/xeno.dm | 1 - code/modules/surgery/bodyparts/_bodyparts.dm | 7 +++++-- icons/mob/human_parts.dmi | Bin 41745 -> 47981 bytes icons/mob/human_parts_greyscale.dmi | Bin 65445 -> 87998 bytes .../citadel_refs/furry_parts_greyscale.dmi | Bin 5231 -> 0 bytes .../icons/mob/mutant_bodyparts.dmi | Bin 8947 -> 0 bytes 14 files changed, 16 insertions(+), 12 deletions(-) delete mode 100644 modular_citadel/icons/mob/citadel_refs/furry_parts_greyscale.dmi delete mode 100644 modular_citadel/icons/mob/mutant_bodyparts.dmi diff --git a/code/__DEFINES/mobs.dm b/code/__DEFINES/mobs.dm index 6ddd269b4b..9c39446a67 100644 --- a/code/__DEFINES/mobs.dm +++ b/code/__DEFINES/mobs.dm @@ -64,7 +64,6 @@ #define DEFAULT_BODYPART_ICON 'icons/mob/human_parts.dmi' #define DEFAULT_BODYPART_ICON_ORGANIC 'icons/mob/human_parts_greyscale.dmi' #define DEFAULT_BODYPART_ICON_ROBOTIC 'icons/mob/augmentation/augments.dmi' -#define DEFAULT_BODYPART_ICON_CITADEL 'modular_citadel/icons/mob/mutant_bodyparts.dmi' #define MONKEY_BODYPART "monkey" #define ALIEN_BODYPART "alien" @@ -333,4 +332,4 @@ /// If you examine the same atom twice in this timeframe, we call examine_more() instead of examine() #define EXAMINE_MORE_TIME 1 SECONDS -#define SILENCE_RANGED_MESSAGE (1<<0) +#define SILENCE_RANGED_MESSAGE (1<<0) diff --git a/code/_globalvars/lists/flavor_misc.dm b/code/_globalvars/lists/flavor_misc.dm index 8225725ffd..82f3738f66 100644 --- a/code/_globalvars/lists/flavor_misc.dm +++ b/code/_globalvars/lists/flavor_misc.dm @@ -278,3 +278,6 @@ GLOBAL_LIST_INIT(all_mutant_parts, list("tail_lizard" = "Tail", "mam_tail" = "Ta GLOBAL_LIST_INIT(unlocked_mutant_parts, list("horns", "insect_fluff")) //parts in either of the above two lists that require a second option that allows them to be coloured GLOBAL_LIST_INIT(colored_mutant_parts, list("insect_wings" = "wings_color", "deco_wings" = "wings_color", "horns" = "horns_color")) + +//species ids that have greyscale sprites +GLOBAL_LIST_INIT(greyscale_limb_types, list("lizard","pod","plant","jelly","slime","golem","lum","stargazer","mush","ethereal","snail","c_golem","b_golem","mammal","xeno","ipc","insect","synthliz","avian")) \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species_types/bugmen.dm b/code/modules/mob/living/carbon/human/species_types/bugmen.dm index 2a955e28a4..694cda1ce5 100644 --- a/code/modules/mob/living/carbon/human/species_types/bugmen.dm +++ b/code/modules/mob/living/carbon/human/species_types/bugmen.dm @@ -13,10 +13,11 @@ meat = /obj/item/reagent_containers/food/snacks/meat/slab/human/mutant/insect liked_food = MEAT | FRUIT disliked_food = TOXIC - icon_limbs = DEFAULT_BODYPART_ICON_CITADEL exotic_bloodtype = "BUG" exotic_blood_color = BLOOD_COLOR_BUG tail_type = "mam_tail" wagging_type = "mam_waggingtail" - species_type = "insect" \ No newline at end of file + species_type = "insect" + + allowed_limb_ids = list("insect","apid") diff --git a/code/modules/mob/living/carbon/human/species_types/furrypeople.dm b/code/modules/mob/living/carbon/human/species_types/furrypeople.dm index 6fca61e4dd..3c320dd3da 100644 --- a/code/modules/mob/living/carbon/human/species_types/furrypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/furrypeople.dm @@ -2,7 +2,6 @@ name = "Anthromorph" id = "mammal" default_color = "4B4B4B" - icon_limbs = DEFAULT_BODYPART_ICON_CITADEL species_traits = list(MUTCOLORS,EYECOLOR,LIPS,HAIR,HORNCOLOR,WINGCOLOR,HAS_FLESH,HAS_BONE) inherent_biotypes = MOB_ORGANIC|MOB_HUMANOID|MOB_BEAST mutant_bodyparts = list("mcolor" = "FFFFFF","mcolor2" = "FFFFFF","mcolor3" = "FFFFFF", "mam_snouts" = "Husky", "mam_tail" = "Husky", "mam_ears" = "Husky", "deco_wings" = "None", @@ -18,4 +17,4 @@ wagging_type = "mam_waggingtail" species_type = "furry" - allowed_limb_ids = list("lizard","pod","mammal","human","insect") \ No newline at end of file + allowed_limb_ids = list("mammal","squid","apid") \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species_types/ipc.dm b/code/modules/mob/living/carbon/human/species_types/ipc.dm index 3aef14c256..806782a8b2 100644 --- a/code/modules/mob/living/carbon/human/species_types/ipc.dm +++ b/code/modules/mob/living/carbon/human/species_types/ipc.dm @@ -3,7 +3,6 @@ id = "ipc" say_mod = "beeps" default_color = "00FF00" - icon_limbs = DEFAULT_BODYPART_ICON_CITADEL blacklisted = 0 sexes = 0 species_traits = list(MUTCOLORS,NOEYES,NOTRANSSTING,HAS_FLESH,HAS_BONE) diff --git a/code/modules/mob/living/carbon/human/species_types/podpeople.dm b/code/modules/mob/living/carbon/human/species_types/podpeople.dm index f5a2f807e4..0f62953e6c 100644 --- a/code/modules/mob/living/carbon/human/species_types/podpeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/podpeople.dm @@ -21,6 +21,8 @@ species_type = "plant" + allowed_limb_ids = list("pod","mush") + /datum/species/pod/on_species_gain(mob/living/carbon/C, datum/species/old_species) . = ..() C.faction |= "plants" diff --git a/code/modules/mob/living/carbon/human/species_types/synthliz.dm b/code/modules/mob/living/carbon/human/species_types/synthliz.dm index 173411eaa1..70afa2f476 100644 --- a/code/modules/mob/living/carbon/human/species_types/synthliz.dm +++ b/code/modules/mob/living/carbon/human/species_types/synthliz.dm @@ -1,7 +1,6 @@ /datum/species/synthliz name = "Synthetic Lizardperson" id = "synthliz" - icon_limbs = DEFAULT_BODYPART_ICON_CITADEL say_mod = "beeps" default_color = "00FF00" species_traits = list(MUTCOLORS,NOTRANSSTING,EYECOLOR,LIPS,HAIR,HAS_FLESH,HAS_BONE) diff --git a/code/modules/mob/living/carbon/human/species_types/synths.dm b/code/modules/mob/living/carbon/human/species_types/synths.dm index c10521dfd9..3d55ce1027 100644 --- a/code/modules/mob/living/carbon/human/species_types/synths.dm +++ b/code/modules/mob/living/carbon/human/species_types/synths.dm @@ -61,7 +61,7 @@ mutant_organs = S.mutant_organs.Copy() nojumpsuit = S.nojumpsuit no_equip = S.no_equip.Copy() - limbs_id = S.limbs_id + limbs_id = S.mutant_bodyparts["limbs_id"] use_skintones = S.use_skintones fixed_mut_color = S.fixed_mut_color hair_color = S.hair_color diff --git a/code/modules/mob/living/carbon/human/species_types/xeno.dm b/code/modules/mob/living/carbon/human/species_types/xeno.dm index db34d1ae45..ddd1c86f0a 100644 --- a/code/modules/mob/living/carbon/human/species_types/xeno.dm +++ b/code/modules/mob/living/carbon/human/species_types/xeno.dm @@ -4,7 +4,6 @@ id = "xeno" say_mod = "hisses" default_color = "00FF00" - icon_limbs = DEFAULT_BODYPART_ICON_CITADEL species_traits = list(MUTCOLORS,EYECOLOR,LIPS,CAN_SCAR) mutant_bodyparts = list("xenotail"="Xenomorph Tail","xenohead"="Standard","xenodorsal"="Standard", "mam_body_markings" = "Xeno","mcolor" = "0F0","mcolor2" = "0F0","mcolor3" = "0F0","taur" = "None", "legs" = "Digitigrade") attack_verb = "slash" diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm index 8e360a38b4..cf3a500b17 100644 --- a/code/modules/surgery/bodyparts/_bodyparts.dm +++ b/code/modules/surgery/bodyparts/_bodyparts.dm @@ -599,6 +599,7 @@ var/datum/species/S = H.dna.species base_bp_icon = S?.icon_limbs || DEFAULT_BODYPART_ICON species_id = S.mutant_bodyparts["limbs_id"] + message_admins("limbs is [species_id]") species_flags_list = H.dna.species.species_traits //body marking memes @@ -613,7 +614,8 @@ if(S.use_skintones) skin_tone = H.skin_tone - base_bp_icon = (base_bp_icon == DEFAULT_BODYPART_ICON) ? DEFAULT_BODYPART_ICON_ORGANIC : base_bp_icon + if(GLOB.greyscale_limb_types[species_id]) //dont try giving species greyscale sprites if they can't have them, please. + base_bp_icon = (base_bp_icon == DEFAULT_BODYPART_ICON) ? DEFAULT_BODYPART_ICON_ORGANIC : base_bp_icon else skin_tone = "" @@ -626,7 +628,8 @@ species_color = S.fixed_mut_color else species_color = H.dna.features["mcolor"] - base_bp_icon = (base_bp_icon == DEFAULT_BODYPART_ICON) ? DEFAULT_BODYPART_ICON_ORGANIC : base_bp_icon + if(GLOB.greyscale_limb_types[species_id]) //dont try giving species greyscale sprites if they can't have them, please. + base_bp_icon = (base_bp_icon == DEFAULT_BODYPART_ICON) ? DEFAULT_BODYPART_ICON_ORGANIC : base_bp_icon else species_color = "" diff --git a/icons/mob/human_parts.dmi b/icons/mob/human_parts.dmi index 916686e63f0190d69b53d8368a04918e3d434302..fa4479620bcc16707de9e2905346fcabed275fa9 100644 GIT binary patch literal 47981 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 literal 41745 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 diff --git a/icons/mob/human_parts_greyscale.dmi b/icons/mob/human_parts_greyscale.dmi index 989ec8049cc86341ac9dc92da182db5620f9830c..ef819667114d60da03ad8f40b421da12f5ce9c3a 100644 GIT binary patch literal 87998 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

tijb)RJ(sSR0 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 h_wVv%nEn6& literal 65445 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 ODlH9N^)fZvkpBm98f9$& From b953622e6f208928a43a5400f57d639d1907ad2a Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 21 Aug 2020 22:14:50 +0100 Subject: [PATCH 14/94] FUCK --- code/_globalvars/lists/flavor_misc.dm | 4 +++- code/modules/surgery/bodyparts/_bodyparts.dm | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/code/_globalvars/lists/flavor_misc.dm b/code/_globalvars/lists/flavor_misc.dm index 82f3738f66..29b738e321 100644 --- a/code/_globalvars/lists/flavor_misc.dm +++ b/code/_globalvars/lists/flavor_misc.dm @@ -280,4 +280,6 @@ GLOBAL_LIST_INIT(unlocked_mutant_parts, list("horns", "insect_fluff")) GLOBAL_LIST_INIT(colored_mutant_parts, list("insect_wings" = "wings_color", "deco_wings" = "wings_color", "horns" = "horns_color")) //species ids that have greyscale sprites -GLOBAL_LIST_INIT(greyscale_limb_types, list("lizard","pod","plant","jelly","slime","golem","lum","stargazer","mush","ethereal","snail","c_golem","b_golem","mammal","xeno","ipc","insect","synthliz","avian")) \ No newline at end of file +GLOBAL_LIST_INIT(greyscale_limb_types, list("human","lizard","pod","plant","jelly","slime","golem","lum","stargazer","mush","ethereal","snail","c_golem","b_golem","mammal","xeno","ipc","insect","synthliz","avian")) + +//species ids that need snowflake coloring applied diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm index cf3a500b17..6204fc1ee5 100644 --- a/code/modules/surgery/bodyparts/_bodyparts.dm +++ b/code/modules/surgery/bodyparts/_bodyparts.dm @@ -655,11 +655,14 @@ body_markings = "plain" aux_marking = "plain" markings_color = list(colorlist) - else body_markings = null aux_marking = null + if(GLOB.greyscale_limb_types[species_id]) //should they have greyscales? + base_bp_icon = DEFAULT_BODYPART_ICON_ORGANIC + message_admins("fuck") + if(!dropping_limb && H.dna.check_mutation(HULK)) mutation_color = "00aa00" else From a75d91299a78a51365238b1c72705426c0c2f972 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 21 Aug 2020 23:16:44 +0100 Subject: [PATCH 15/94] yep --- code/_globalvars/lists/flavor_misc.dm | 2 +- code/modules/client/preferences.dm | 4 +++- .../carbon/human/species_types/furrypeople.dm | 2 +- code/modules/surgery/bodyparts/_bodyparts.dm | 13 ++++--------- icons/mob/human_parts.dmi | Bin 47981 -> 45085 bytes 5 files changed, 9 insertions(+), 12 deletions(-) diff --git a/code/_globalvars/lists/flavor_misc.dm b/code/_globalvars/lists/flavor_misc.dm index 29b738e321..7ac77e4bb7 100644 --- a/code/_globalvars/lists/flavor_misc.dm +++ b/code/_globalvars/lists/flavor_misc.dm @@ -280,6 +280,6 @@ GLOBAL_LIST_INIT(unlocked_mutant_parts, list("horns", "insect_fluff")) GLOBAL_LIST_INIT(colored_mutant_parts, list("insect_wings" = "wings_color", "deco_wings" = "wings_color", "horns" = "horns_color")) //species ids that have greyscale sprites -GLOBAL_LIST_INIT(greyscale_limb_types, list("human","lizard","pod","plant","jelly","slime","golem","lum","stargazer","mush","ethereal","snail","c_golem","b_golem","mammal","xeno","ipc","insect","synthliz","avian")) +GLOBAL_LIST_INIT(greyscale_limb_types, list("human","lizard","pod","plant","jelly","slime","golem","lum","stargazer","mush","ethereal","snail","c_golem","b_golem","mammal","xeno","ipc","insect","synthliz","avian","aquatic")) //species ids that need snowflake coloring applied diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index a1b986f0ac..b1a9bd46d9 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -524,8 +524,10 @@ GLOBAL_LIST_EMPTY(preferences_datums) mutant_category = 0 if(length(pref_species.allowed_limb_ids)) + if(!chosen_limb_id || !(chosen_limb_id in pref_species.allowed_limb_ids)) + chosen_limb_id = pref_species.id dat += "

Body sprite

" - dat += "[pref_species.mutant_bodyparts["limbs_id"]]" + dat += "[chosen_limb_id]" if(mutant_category) dat += "" diff --git a/code/modules/mob/living/carbon/human/species_types/furrypeople.dm b/code/modules/mob/living/carbon/human/species_types/furrypeople.dm index 3c320dd3da..534536d6e7 100644 --- a/code/modules/mob/living/carbon/human/species_types/furrypeople.dm +++ b/code/modules/mob/living/carbon/human/species_types/furrypeople.dm @@ -17,4 +17,4 @@ wagging_type = "mam_waggingtail" species_type = "furry" - allowed_limb_ids = list("mammal","squid","apid") \ No newline at end of file + allowed_limb_ids = list("mammal","aquatic","avian") \ No newline at end of file diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm index 6204fc1ee5..94264254d4 100644 --- a/code/modules/surgery/bodyparts/_bodyparts.dm +++ b/code/modules/surgery/bodyparts/_bodyparts.dm @@ -614,8 +614,6 @@ if(S.use_skintones) skin_tone = H.skin_tone - if(GLOB.greyscale_limb_types[species_id]) //dont try giving species greyscale sprites if they can't have them, please. - base_bp_icon = (base_bp_icon == DEFAULT_BODYPART_ICON) ? DEFAULT_BODYPART_ICON_ORGANIC : base_bp_icon else skin_tone = "" @@ -628,14 +626,9 @@ species_color = S.fixed_mut_color else species_color = H.dna.features["mcolor"] - if(GLOB.greyscale_limb_types[species_id]) //dont try giving species greyscale sprites if they can't have them, please. - base_bp_icon = (base_bp_icon == DEFAULT_BODYPART_ICON) ? DEFAULT_BODYPART_ICON_ORGANIC : base_bp_icon else species_color = "" - 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) - if(S.mutant_bodyparts["legs"]) if(body_zone == BODY_ZONE_L_LEG || body_zone == BODY_ZONE_R_LEG) if(DIGITIGRADE in S.species_traits) @@ -659,9 +652,11 @@ body_markings = null aux_marking = null - if(GLOB.greyscale_limb_types[species_id]) //should they have greyscales? + if(species_id in GLOB.greyscale_limb_types) //should they have greyscales? base_bp_icon = DEFAULT_BODYPART_ICON_ORGANIC - message_admins("fuck") + + 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) if(!dropping_limb && H.dna.check_mutation(HULK)) mutation_color = "00aa00" diff --git a/icons/mob/human_parts.dmi b/icons/mob/human_parts.dmi index fa4479620bcc16707de9e2905346fcabed275fa9..a6440938a40cc0d310424c19cdb7f2054c2a6a40 100644 GIT binary patch literal 45085 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 literal 47981 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 From 29ce240903564b91d9e18a5b99c42973b48ca25d Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 21 Aug 2020 23:17:40 +0100 Subject: [PATCH 16/94] yes --- code/modules/surgery/bodyparts/_bodyparts.dm | 1 - 1 file changed, 1 deletion(-) diff --git a/code/modules/surgery/bodyparts/_bodyparts.dm b/code/modules/surgery/bodyparts/_bodyparts.dm index 94264254d4..e90f86bf1c 100644 --- a/code/modules/surgery/bodyparts/_bodyparts.dm +++ b/code/modules/surgery/bodyparts/_bodyparts.dm @@ -599,7 +599,6 @@ var/datum/species/S = H.dna.species base_bp_icon = S?.icon_limbs || DEFAULT_BODYPART_ICON species_id = S.mutant_bodyparts["limbs_id"] - message_admins("limbs is [species_id]") species_flags_list = H.dna.species.species_traits //body marking memes From 613880b9b0877420f20b07e105c0ba7d7c7ee08b Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 21 Aug 2020 23:32:43 +0100 Subject: [PATCH 17/94] saves and moths --- code/modules/client/preferences_savefile.dm | 3 +++ code/modules/mob/living/carbon/human/species_types/bugmen.dm | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/code/modules/client/preferences_savefile.dm b/code/modules/client/preferences_savefile.dm index 64c5e775b0..0ff23b17c2 100644 --- a/code/modules/client/preferences_savefile.dm +++ b/code/modules/client/preferences_savefile.dm @@ -510,6 +510,7 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car S["scars3"] >> scars_list["3"] S["scars4"] >> scars_list["4"] S["scars5"] >> scars_list["5"] + S["chosen_limb_id"] >> chosen_limb_id //Custom names @@ -840,6 +841,8 @@ SAVEFILE UPDATING/VERSIONING - 'Simplified', or rather, more coder-friendly ~Car WRITE_FILE(S["feature_ooc_notes"], features["ooc_notes"]) + WRITE_FILE(S["chosen_limb_id"], chosen_limb_id) + //Custom names for(var/custom_name_id in GLOB.preferences_custom_names) var/savefile_slot_name = custom_name_id + "_name" //TODO remove this diff --git a/code/modules/mob/living/carbon/human/species_types/bugmen.dm b/code/modules/mob/living/carbon/human/species_types/bugmen.dm index 694cda1ce5..997d4eada0 100644 --- a/code/modules/mob/living/carbon/human/species_types/bugmen.dm +++ b/code/modules/mob/living/carbon/human/species_types/bugmen.dm @@ -20,4 +20,4 @@ wagging_type = "mam_waggingtail" species_type = "insect" - allowed_limb_ids = list("insect","apid") + allowed_limb_ids = list("insect","apid","moth") From 8370b1f854f60322294190d4b5227ecb11c8da61 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 21 Aug 2020 23:42:30 +0100 Subject: [PATCH 18/94] moths pls --- icons/mob/human_parts_greyscale.dmi | Bin 87998 -> 93216 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/mob/human_parts_greyscale.dmi b/icons/mob/human_parts_greyscale.dmi index ef819667114d60da03ad8f40b421da12f5ce9c3a..794074bfe4b7a5952c489949fda187c98cdcc8f9 100644 GIT binary patch literal 93216 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⁢0_?E$+GVO;`B9*nO; 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�IrpPXObW@~=WgpCsxEMc9`!UJF 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

tijb)RJ(sSR0 zqM8B&8@IOH+j1)mdwI@lZ`}z9Pf1BhxK9Tk-w_#AfqLTL;4n2d{=)a{&HG?Jt{Trp z2w^)Me?advPCvNb{Sse%Fm|NMNUm9W^MOMJZXd28#FJsvG3WjC>okSnOC z)=G!orQV8op0Gpw5alzSJK%S(;Y1+v4SthwXJ`4t{gSITj~}Zmc}K3xow|15QG1dk zmP)#v$~b`tK5oUIcXb%8Lp$CGc@%fseEgnZXoWBqTX1Vw||PL z-+KKt6}!$iN5tvJgomGEWMPScV}j&*q1&=S?us^(7F9E0Tdrp5z_8qrZpwhM`Kn`j zzD)R4`@*eP3Kw`>y188jfBt;vOk;(fO6~{D2r+z^O*!hIk%iI)>X<-8n}B@-LTn>< zz+2DapEkx(U7}`L#dyd^x?iAMY1!G$26ovdJ-_b`{0_wqq!lqwU@WE)75iM4o8z~y zFAgdKTs9VTy{00?2&_y@G?68Yw=LR}O4K@B>U8Q}xJ&Q>vfX&TU~6luH_mikN?`aN#2ausfUn6qJfQ^icr;hjImWUy*XvHP6N4@zQHSx5Xkb%_=nlvMk%fx^V}u!{OUHAHwX|$>RKEE(5Vd*L4pUu>awu4@`@6D_QY7%+?*V#W}m! z`sAfCJ9W{9hhm96+ayZVB^G4aO77tqDEKmy_|MD5#A(Bs&sgOWCnKZtSD>&f zPbvj_+~nMT6w4uqhbhxlYbg#N?n!(c9v0SATk8jCY4H%sVqs%rBSH8L4@x%m4s4>l zYK@4Xu&{aA*Jo{QZ9o3}dHk733AP)2W>3vBjGNV(Bz{K}6vDlPkMN{ztANvb>GSC_jxD7qOA95^6XjDs1%sEs-Ph=2{hmEgBQ4}*1t)V6naav>2zr3+AM${d*L z-UV`@vhI{k00;GXG5O&M&0%z1_f@IZ4Rc#>}GF< zHHad2(S_7q?-Bm(jq`df@cG1f)RUL+n8HF0S<_*0e0=%_}iHT^yX*_GF@cutI8)0rZV(KvYi;)UIq3{A1yTLJG2id0+ zSv0)D!_O@N#tO!T>OWf>T!5k^-9|9=Vq#(s2>uBbNBrInKV4_BP~H==NCng3*kmZf zvZ4PbkLmBMUdd@3u;zEp+JW!9X@1EVN_Wl{Z%AxiCbzwh3L+*;cnD5xB7ZvE43F(Q zsAgedaVb*aQ%$iJr*>Mo^X#jbO_O!v*RNln#L)$ez03PD*E<#wSh>syGfq*8}jK7^4QbzMYSHC&K(3+0{pW{QOA;)m1S? ze~b#ZertU=Z8B#iDt?X3m65#KPP&R3qW(t1KWux-IQiZ6gAZBHi9}F_m$YhYX+1k; ztMu1KHt7^mE=bDPWN+LDWT=t#`lrae7T3jo8{y0&Mo+o+(^ZU`G9`Fi={{^RWFu^C zAH1MV(&lT#5ro0~|K;!v%AnHun+HA-BiMHI@k&d(8>mJ42I(I%Tv9vr-z3t1$hZGL zMSw_2VLq=8)}SPz?AvG@0!5|s;kZx|uZw=2j%aYQON@vQ#Qgd7IpKciO82~Ly+{+| zpw=l^S+rvMF)6Zn1f7z%#W|XS(&h+T;FC#odu4?fZmosDhVetJXwS7r3T{NCo?x{{ zmI$s349DDES=qB^&n^hR$uOooaYDgh@WHbGe}mBr)JLIgq}kWz;lmpP0|Tb+?)PNB zK^8D?6W0q&<`pnU(#z(G?;o!BU@5zY!P@O z-#`AW0QzpFrKH?YO%%I`t=@Qx08W@W0tWH^tVC%@1J8RJe)s~+0(hhBY%XzM2^I$J z6EIr@_lTK)Nz=$mkW#l*U;M*H=JEwLU6m|E18EAI=RkD+N=Z0Gxn3l;?=E^C&}cyd z+mARQ3)zYJu?Vii2U>aBg$ad{nv^KeKJ*-_ZyJY&5`4JX99PEV zcE}D+w?l<$xbRnng_|J{001`f^XD73D~T;NV=GA6B18$NkrF~eg4B0fdYKgcxv_@UmG z8w?-SNhdM^lE8MrsXSzmQNAO`KxbI(O7*k!gfbmn7j-R>n6u+T$C|J*`ae-?mjV=; zghoW{aFEBx$K?$G?p->CFw9J1h+OmfIMUxwD6=v=$1HR{oJI01aKhjFry(spF_fMD z5CS2+u@D8-6gk-iMrp5&g~*ka6_<$lm;Y~ZtHcSVS`;e2d35xf$Dw>8BWFb{N(CtK zTen_7z?PFE(*%)FNxhD(y4r}?11_ElLTB~U9dk0V}QPQg?$sqS)SZRYnZl6P z%D4%PyZd!ca`q8f()yI)U{s}on>bC-vukjKW<|O=P#Sg`a8%p4VZ-WSeGiXv1jd4X z%-`7#+)E+|r{$G01j#N$kux$lyjVHbKecUf-8C^uty=H7zhMG-X)o`RHFaBwq$bk~ zQB4Y(no&KU0mJ{iQC3t7NDe9 z&D;>QjY;eC=Mb73be;XD62U>s1j!nIHNFKcY2ZKFSow_mt+nAL@z4L~JWP%iqA{vy6E zhE+J;AS5Z66E#ef^i!t0fuGzAINIhb!W-X8{~gzsZb4X)>zN+aB6?@@gTV=Oj8>hQQ^OY8Bp0oxP z@BsVR3Z=;Kr(<*!>vB}<{{guAp4mjI=zo|1^;d?VUXak8o_S$Vo0)g!tnTZ*e;@!w zLJOOz2+gZ!uMJQ}Dtue*U6dnnb8#&sAD5_yb~qj zh+JYckNiXa{D>Wed54j7UFA+#m^>Ll3J1kBi;-7(?p=~<2~v%>}P!AH@Ga?B4;sP0EMpr zV84Ga127rNL7Wau0KBlTVG5HkVc7Rq{J%KTvnbP}6OPdtE9>)GWKJ2@tvQjH&Yle| zJ0yMO4(dw`SS4WMU{Ve~Uquf_=`pYd$%gLIoj@7&{0s92XnPgYHNa7Y`m!p(n^tqD zU=+s(HuaPpmD0~~6q>e=>s!r>px=QJj(?Mf%*8M<>dmy*xp44p#Z^l%IR*P=*&_1+ z=Pcm9fK_KA|8b!ouL@i~wEh+>DU=&{>iIc`@8dsa=zGQ=}O`eY~Qhw)k4%ERNXVUeG;LrWn#aqX|P4UjN()~8xg0P zDH$IGOPt)@9E~*-GN0uY#%=#dI-_wSnu@~q{0#P%l^Tk6N8TU ziQA(Ien=$Y2tnMqK()k5-iHq_;Ta*u2~GQl(v@PpSN^R~L_H0F;p@~me?ge&r`+&; zIu^Mm!O)=Shzasc1fPD1`OvyabpJBTBTZW&cN*LGBcmgN>?78~tD zW?j$sA-xueSNHVv{AiEa859M0>E-5Dw!v-W$!u8iyK;2b4hm}`*6}U;n@~Yb=*Ie* zu@x`wjFM~a#dMF`ge>)95w^1ow`*J0{G>w7jfr@g3>=Ll6#jDEjRE7g>(Pcmg5wBxneAi!+7|&R3s6n;|VM1%jyUUweckc#s?Vk-D9v)`ihGz^8 z|M+npTZLDQ2wbbeH*-rOobuo(sr0_v?|;xFG-(`tHUa|&u>?~g{EYDJa#|jd)Ya9E z#2yonUu8Y@0_xV~kb*z-_Rk1Ua|?^fF9F8~cK&ONpCWsvW8jfKjU&zDOf4;M8+c68 zAuKm}D}wy8$fDf}z3;9NGxW*G$)oXW&aPLq3|?*{MQ};KXNt3VG;mATL;;qoAm&i5pvmG!Nm6l6Sw~BjLCt znjocZ3XL#e-eqM&zv)1R6PZeLOUoo_cc-JX(?o&{;^9ap`CR7bk4;a%2+2kvde%Ds zzk+fy`t|F^QPSe5;?0}>KKR{cZfqk`-v14on;Q-FaxIX(Ipw|f^A-gZm^&CPk5s$f zS9YIHbgNh%#qk4TrC^b8KR?};7zOk&Rcn!S*Fprm6LnikkZ}Ja4GB|9gfJNKm`=3Q zcSx*i!`!|dgftwr#*0t_^TK@Q%$e&~pcIg&Ca{qoLugrob{Q7}+G#3ugP1JpWUf!j z%*dFC#SzmZiK(CVKqyLG-ObHy2AOpQ6u4bviEwjsbybvLS+0Smhk}dO(L4R^6_CuG zU>e=3Uxa2HQOAkKMaZ5L>iB&h+7MbOF4Wuls(^AxV=EvgREy#af&UG&J(7?n+f)kQHbqKuK-&z3skU)qZ z|CDBJH3P)+;(PEZpN|Y&YS;SCV{5>c4uNP_+$R=2g%+MBm9d z%0-IsT}w@(L=*o=D=D=s0%zIcPE00Fa7se)2n7kxPsVRRgCnS;$7-ucNm*)UW`pN? zHxw$gyn@9N{(PmRtlAn2DI>2NlDqG*Zv8_ZC2f>>LCVGB7a-=c>Ofr7YQ)&*zqQ0R z%^vST?k|Jpkb9kp6qGEDhQvC<52IoA3{(VA{Pd3>l@Z~E5=s0rnY1jgT3cCJdDDtN zt)oK&kzsxuQNyjz#a12d6^)^agdkC4SCw>9y=Aa1QJfQ~eMs?6mQN=|L2VI|F&vhn zS-G{>&!YsDiojH|Lzs>i!K{iP{aJ7%uaHjq%H^6INs>+r%51d8#}V4gvhwm`M#-ej zh;y-w(qJ~gaBOtLBVAmyr3e!={Uz41&<+(PK;nFGE@;t!lMRT;3S7SveXF zMGRlUcfSj@H^$r75EKgf_skXwHE{-78JR@v_QL*xf;;pK4C%liLDk#EIOXPKGSOmj z#eTGgw_R%IBNUr9PA6md5EM8v!soU$^pnN#TMc!}$Gp7ej*eG6yu3iB?(JpGdaixY zl1eQO{x-!L`d$XYH5^w_k)3yZ?pjE!`)2B<2C&PDXsx?6ts<@=&Ht0HxY88fk9UI#+HunCUn6m<+$M85~-I#kZ zr2`Qvb;!x$@s3DZsk>V{>*Gi7v}u#Who(e<)J<=kpO0@~ zWqNwr%-46s;BY#N$V0G2!2N)zW@Tq1oou>#danReEEX`qhdC?IN$5$<6%UIVTn+f&lY2L+tzl`gl^hd~xAn@NnWhjD8+h9~@ zvo89msHm6*f&h#mi#W$#PyijLZJ@1CG2aYq#KK7ReW~3wO%Hq%C#%QNj?{WJjwmFA zb$9Q32s>Az!#dFauEFpQSs+7gnTxkg`Yrzy2=kTN2|vRMw_e6$g6 zDJXpcfx(Wzo$q)w4SY9)f$}pgSc)UW4K_B#(AqqX^jIR=iPTW5p?8r|n$T|yRF`>q zTjLIa^W^|ZLsHI*1(Yljm*9iO-MdrGp{cyBC?K~wdU`hcJ}U>-8B+(z7Hf~!tR^li z06s!OR1aSxA<%|M2vtT2ZEjU|iZ}k{qrGZ?3x(*WdzwesmzAb2ydAK=`gaic$-aP$6i*^=|rSj>tw6t&cn6!R36!PfayY~|ET9+?h z7U(!kX93C&B`Tr4qWlsF{V7od%YY#RZdXUUHq0HgI&(j8HQEoj?t_14ru(NIhl zrxd{dZ1kn4r#t?t-G}6%Bo8RiJ!PrOIP?yQssL^SZT5yH(LWvo>GXQHtoB`Iw*?G%XnO1z-V*g$jSVmf!Eb#N- z>u&<&K@18E4+F5TOixXjIyl@x`ph7Mh!iw~{u}E~-5tsK(hdSnY$p>VBzD(2;ovy{ za_C`YdH{>f&CW&^77BW7&t^`lVYWL>3=i=T^U3D}4IjCbi3UO%8q1)~2dQJYRZt zwju)Lfd!Pu%9K`AaHXg#AYW8&ts)*ELd*LY^aqp=Ll?NZERtV|Xn^B8Xm$6>8sw77 zAi}#q9n@G`i>iABUDq&s%0%;2r^BHLf9wcpf3QDDP8>)0KZtu1a4grbZS+Nk2BAoy z3`r`a!I&|mNm1sRNv`_yzOUgt&+EFX9j=uxe7sP&5s_SD<85eE6`bq{vSEJQQ-p$g8ItT1 z67vZK)gVuhs-sdE8$!-t<Z5L76pF5+j)l5t#_3_42wMvk1mw3@fzE(LA$+0J&U8sH1*rINa*dLf zQTh(*2e9ydJQKkCrt_Q((6avdI8f)2%`k>iaWl`QE0p9mNa-#C*P@H(-(5lO|LU^_ zW;mjS^NYFE>u-~SX8$Hru?HVP(XlRUo4`(S@%95Pdk;?(WoDpuVS70*xqt2djJxm- zq56L-&Hi5(+@dT2oBugU6YL~s$J6vO7Um%6pl*+?UXa6o#_~yN4?F|o+M-ZhJa+-* zqtttWb3;fuigvLTA*Oo;pE#`AwfL1*gbwzCViYP2+0=Ab6boSNU*23 zf6tKOT$!SEXh)RSOtRM(LqE6a?&wD_U1**{zESs@-E+TKq*b^%*XHOj+3Udb4JsMQA!9bwB;5 z3x27XS)m9F;!Y{4-t*45X3A9KODoDf8Rw+lYNU(_H$McgIUF1~@Gbigp!tW07O|8-e6%jOk?;;NG{U=Epra5&i~8f6zgh7@ z=~aos?BveJCMd)keuwr2NrTfQ>%*mdfs|AzI8=EYU&%8SS%Hd@_sBQ1ue+1WgD!>k zGkQrZ3?Dx#zp2AfA6y4IZUI0qgaLhzPfk!XFZ6b3-TL*dc(_mEUgV>orGgrz5D+Ny zY)bqo+$=2aedy%z8eP@v?|+nptvkPO-I8_6tQ<0R&kn09?M`SHPA^fmlKbgXDHiUx z(vQM_a`1I(q2e?5y({*|r@h*f=hYw)eZaiWbLMi|&AKuphmPQF>2CUwTl>4s+y}Em zd&u9Zy^Q-K{Gj+$ju1ouV+oy*I9Dj^l8IRwU%q1N-Q*J~PoBsnM`^BB(|Y&*{a(B( z!=4J=eCLNWz#vjb3Hw0B$;l~&rTK~e)34#ziiCsTi{`YfI^Sz1&CbcWQB+j4)5oG*p6*by3l%_bIwz71%rzD@s+dKEjzHcSfjt@dd|;C#Iz-Jav6=cs^i7j$`TmJ#O?Kk3)%dEKm6g!fr$$nTLpin_IB=jb>&)@G zC$7(%2TPMQV$GlHYs+{V8ghZ&nLk8eT1CXn_La4Kk~B9BI!~wX|m@hr`~yc@v(&vwV)Oj9IFM67tqJ zqi|;H)^fj?0BbkJ;DnTxOZ`vxA30Kvh;4h?J}vgh2Py#xuU>IM6MbH_@Vg`S$T}G( z!IK8%jJzJjJC65 znIct=viI-@k2ZI>a8}!E#T<-Lj#fqkqw^^Ph10vN1rjt7X{$BAJiEiDF2yn0N$cv$ z^})!l%YM0Boon9e7@ix;y9;hEo5F5C5qn;cw1OZtY^?nm3^mczDZ?O zRmiK$w*e98m;_Tx7&biRr{>umEH z^il|Dwdb6gHJkG5BUk%=Q>#=L+9RNU4OiBQik0l_>?^j4iGBUO=80pk7cB9Jn;ecR zv+I1e2klY5Dw}KpNy#-E!Wi2;#zU>9RqJ*(4!ZKk{Att7|6c6>6=s$pvuW-z*E-eS zTI|@P8>i>j_Dz~)U8dH2gU7BeKYE+~V+~ZnqrEh2YN0|7v?kQ?INgVH1GW#gh>neM zfBgdVBoyWYKA2n5`X#M8yV|KYfo$9~@hK@x^z`(`^D2u+jeiqPphf8t9{Ee`&{7+y z?mnfarHx~rbaapFz|YS=_?3J=Z~(BJ1wl=o7syfRdH?@np@ue zZSc>tlSWT$9VBgbfZQ^#F8H7zlBxkeNU{{6`< z!M+Iz3FK<92~pBz9fMph1dT&F?_K!5wAn=X#!gN(HMJOt(w7cx8+L?l7d5+}f}KUc z(f{d<9-%=@%kk+|t5=_!n>wel>-e!_?M`{StL=o3^$-IBz%%A#p0OCRRqKd}Ls=fJ zz0P@^B@ByxgN;qX2B7Otv|Y)ql2+flmv)JAvzj!r@QR5Bvy3xVD!2?_z~x}}Q7W=9 z)BoIy>Z$Rw&i_xLDqqVXw!rtwjr8*|71P`o2gxEel9e(p>;sGJnJI?s!HK{t= zTn4{!SY^s|onW(0@9OF*wtVh4|23bIjolNNkU~CVF3z`YTmOsljdQ12$R=T9Q@f>; zrt6>YHx6r@v-^{Aj{Uu!J2W>WISoU-q$>(`bVv`=?v+@x*VEH;|H{Q(PX4+P4L)FA5@DzWJ7^b z)yNwy=YCtqkw-hE~s-(6}o{>)J8f6)H+;4CuiHrsE`6Jw-% z`7U+bcIo)hzi(TU_HLUu&q_v0JHW+ceQJ?UM%tiG^Q?4lx7_n=RY`|qG1@28f4}n3!qZ!KdSd+J z_<0>$rh?Ouc)ZlBEhQVm;afeW#aL~A#1*(f`XQn6u2J!L-QGr=MOoa z=w!WaR*;>Z_&iBP#YS>(Up1t{7Ql1a)t)0qQJN6aK6H<2otvwj|M6<4Se27Lb(H^0 zio`;V)54j-pEZe9jZ8uU2}w5a>#C|9mf41HXR71IFKaOO+WMZEU-HVae)Q0`k6HRR ztg;P1omr@(8p1PZ%QG7G%`wJ!Jy1yJs%r@>dLC)!A|_F;81qr_sl?08XunXi-GVMK zFyWZs{Esx9)$Nvgmf1^uA{8Ir4>6eLIAA9ko2n7-J(DB<#mn!~T;kwd?Kl4oE8u`# z6tJJQZvO78@Ar*MdzzlU5;bp%v$wO@hNc-EKhCN9_Owv4n(P{1owwCCK8et>K3y%- zJ9bFwNa$!-(s&rcKdxsqs;Wi8d-fPH&8;f5ZAf=s5E;pfnPsW_6oz=s*qDdQ^TRw# zU2WqWqptZGc`D`O9sK8Itu}76>#0LkqO-r{T;lW`dM5>+#O2he?P)u!cf(~*)K{LB z0an!kN*e`vI_GN#8GM?}C`%mteabpC=a(8Y$0|+uXHM6)^eV=1*>cLN@4sww&1?5P zua3G1FNW1@TD9cDI0rqdW{t)+Fn72Oc2qu@TssvvpRo{^cE_tbQcv=gKs!jQ70tn6 zQ9G$`LhOP?CiD)BzEl-Rh&q9IDfmdTQBv)%D3kZYMP#As9v9JWT4nuwRD^Y5^AEp# znze4U`sQ>$%Qq~~h+6*CKG1KPW#V8EHmh<}cR=D`!m+2X&}+jV@O?nyxx-oPsiR?E z$B!QJ*>UW|U9rg@0z7r;GF%lTOq8D7Yj9$B!T0@+G7U;(6*etBJ^rYpZ}k^b>0ZT= zpBF^A6lrc0ZeBY1nqNS|Z=831%-%HFjorNWQ@T^U?A7~bwVu8bn3&iXd}!YD4eY;3 zgrk(1K=)Ej@0TaohR(4tU08qDOF&?v&gcv`$E*!~pLV8lSr3cNB%D>V}K< zd%f=XQ(JiV&!N}z4e|T5RO>usc&`3mH_N_KlFv9+LW2OF(nqmbJV(#>*C$gP4&i^n<6MA#>===+`SmP*e>drHir1TG$ zl}%Gw6hwmp_io`TinAWweNZCosEb04s-#m(qaW=S}J9u8Ptpi6GdN%(WqI~8%Jzh0x!4HUrVW~TFoQn zBlOot3E1@f>(~YUH+;OJL(Ci3Qgv6xnf4kQWY2yaz&)-w!Hhxr0KiVD0wPwi~V&j zEpAfm8{YU9vd0tX)Uj65ZY@Nt$<}ui9lpyw0{Ww0=piHPIuI!1++!U>XZLMU@5<}ZRF&C+uWfqXzMDd-mX-o580c25TJ`MGgbh-Pm83&ORd=b5p2;Iu zx%5|kTamqfK!G37va-JVv>V~!lq)6PZ{DctWXe!Q-H97bx!Aq|JM4GJwS60Zbap;> z?mZ$m)qW-SS5mC`ZmvpY^<4Si%~2=E1lepyx({|<@s~%3A^{|JN)=5r7tW0x`aRgp31e7R zlc>G}t6ndaVDjQ*P();;|HFrZOum%F8d5>^qu7V;w)DA#zG+B7+HOgn{l>Rr2ixk+ zM^@NTR$M8ek3~-N&D&;35s{c2KN={1vcS<#10=1+_h6?bp$xCA-3?JzwaD9;^rE) zOV|mw=$EhI+q{`kGM3qEzTa%L>*moPqZPajU9=vfKiU3aktRy%Mvj4$n3mZ*A4X%tbpa$CkCl?qX4Y8LfobLMyjDM zJ+ouB2v^UhC}e2(%-m<^*>73lVL^r!p|1Y^{_ndzsJ$eHLkMMxWD`)IUxF~nTdp#5 zGqevJj0dhIhc3dYJ%H!Og+)dEMXD&?7G+m0etv$S$xaU}PI$`}EeS6$$L~{h(lm{X zmdAYx;8(fY4py-gIMEKE?L>Q&s^~uysb{Ly^YLB?poAaf%i;VgNQv+>A;jk4EmG^n zZNG|izYP#F|NXOOt(==U-ht5|s^;ZcBWO=(KFN(=vuS!E!q{sTAz1n18lYuM)L8)9 zAXpYQAg7#Eo%q>ryHDXTVozgj*6y-eA?fh_+Lq%XFw z9z3NhfWgZKT~)N$r{+Cj5<8Gjm%KXPuU*~HKOybhv%*DoJ-b@TwROA5=^}y^n7jzV z$1yB?jdRj&BYf$3JzO7d@1O(pmt5NcoI6!MX!uuhoG$Tt)af7Fo*3t?f^;6{|7Tl~ zqV7{e|F-#|3)Zzs%=gjwR!6LG-c!*&w}ZiBZnR=*sxz!(;*yr3;j)Yd;@coh>cnw7 zetspK#j@qg9|$kQ)!?_VadI-k9l&Dw&z0uvAl`Z>Y$kGj*y$@iP$VdM+hc30#{p%Az%2ce;z1<*ib=x}pS#1HedO)S<8e zIHXxOdAH15fA zkW;=t>?w(37`6wiXk;{;co(rreC-Npk16pDmw#)0kEkmq!3|^rFGls)>0v+K690## z4(G{~At*VyW+2S{xfqLh81hQ@80FP#x1q-Nb>4! zdg*V7+kgR0c}e{Ua?>BTexfEpO+U|R6Kr~UD0cw9eZ^XF%JMZL#n}7WtyJ~o+LHc> zg!FVVw~`{1zfXB69Ol}sl*#bUa-O9`%AskGr%o={9s8&KKkq_H<4&b5UD{jilor+RrC&maM z4?);V*|_goag2m5JUsw>#F{#`#jvs9uu5&Rf511ZpFc0LL>Ug$uc2S(Je9Y7V6L~T z%N&v76clnaq}v-dvN9gx2)zE|?;e+6CjHT4Vw;)AD1D2))Q=xOD0g3v6oN~GTWAUI zk)Q6m>4qp}1Yya(w>Hs4HAh&2G5q_g$J>Y_$z>3^aM{g#`6Q1Jp%hf=X1J+Mf)z#x z@F5P}-F8ww279Tir-y_!6*rG6G(Dtl|7T$@PJ1Y5>**yXB{2}N5Mo3v?5^l4`sk`h zGxWJ4RV7c**yXOmWiEVKT|%NQp5q3)>+7Imf{a@i=w{ z#kxAVGraU{}uj}sWD)~tt$)e2~@N-}! zAowEg`S@`WPee&T^F`yTxKf)nC_mSXe!9Z4og35Xdk zW427kj=ehLKAE%O*HGsL3Ze|*tRLLMvP-Ww;G0z;WJt~FgOMy9p6o=}&XrKuJZ&zyY}O>#MP~bLO3*Rtost5#a?QG zMLv9Ir&?&BRmUfKTH*9>v*o7jzM*l8tWHS7jX zV5JhQdnYatL$L-BzZkfZaCjl~yPLDUYrM)4NMGG-85m9R~4 zTv*xmiAy@w(Sl16V<7xn0f*$LaCxTqmrH5yxH5Pzy{jqj785Dh{E}ZT36RW6yZmIe zw6y&E=n$ulUP)jAN_Pvnp;fLx>A_lKW|wYW6|`yT zaLw0=qays>3PX+`W0CZt9nYx!wL8}9-Vx5bR3&Dg7-Z$^*2hk;YBfH`t*#6xTd4KA z!b|uG2}W2r9P+giHthSZtz|Q2>l$?%A?co-WLk`aWUPhwT1{gg2?_rK8gxpr^{=KRTT9 zh<_>W95qKr7GNRjhYut0qp%|3Liq9Hhozg`ednIG-tjX#sUTUrD>{{nJm=e8WS?7< zF~DdcU#;#@MB;|SQg)Rr`_G1qHkoW7q$|GDuAyyeYAOY399dk^ksbhlC#)@apcI1v zg8S3+SAx-yb{$wdHa=dHVWx;^M0J8=?V1q!rAwDi0SEB!>N@H6+7#0uSjex&OlNK@H=;cP^V{%^sB_M?&NcQ-1QY47rtG)R)dhhlY=~YMSAeDo6Un)-<>Q) zn=LkO?&Y9|akctSbxFM(!A$zb72W^XbpRdEvM-u}1yl(u1Y zJgaBu9fAi1s!tc8EtZ@lG1_J{Cx9SSZVW4iXPX@^3P=!cEWEtuq`^M?h;|zt=?=vT z(?o6vE|b)?UTq%S*Z=jYj@i7n8BUR5j{W5$%p}alw~N)Y$Ma%S`Chg7&uz zTq1~Qwbg21?p6}@pO%#FS|fYUe%(l1^U5*_PQ&}FeV#ZL^(cu>e4;Uk;{7VCC_Z#U ze1mFTL3NxW_3peH@=3AXf3kaGc*ReYuQ*lex6}=ZA8-!jidG+PKlnBI9c|&afZc?} zLWKJU&O;oyRK4wO+4HFaOtfo6^!bc`+Ez>OQV3G;XyN`*2p8N&-*QUaqY`C3Ml5i6 zXKu^Ho`h&!YGH13LP)t$v2Y)~SZS=g)d|3kJS)|6t3GQ#EU>yyr&@Px_gCYZgpO5P zrfGckRS_)byo+Yp)!KrK*KdVM%g33U-$z!! z;z%72b-z5-?VoGf4bDI;n83e%YDr}spFMW9INHr|FKr5~v7FmDI@c)!unMml)qgKCv_QB!69lhHBH+zQ2(X&=@G#d`esaq9Mw zY($xpP0uW@n1qCURw~3v>2ZH;T0KT5ag9r&?|EGvG#=VYtV`^gUUY|&tSzR?3jyzY z=$z(mCkT@qj>ND91qD)BJYFBYs_uH(nC3DrJ|Q-f@DlT4L^`u1tf>g&9Yz6n;zb2- z1sElms@l2Yw?%I)OK^_E0qp_ZK|mw_)luiF;WW;@`v>dY0{r|mr$65H!FRz=?S987 zO%=Vo@Oaw%Z;~6xMJRJ1C8G#;p5emRhL$T3wo}gSnf&I>>e{ok+92DJzgwcToWdt0 zloWO(`AULtE^MpzCzkyh8iO0FoOl6XVbl+@g!WKmB$G7)+?0J`8(L2nd($|OK=$NL zkPqaIQ+u5kKG{4TKU&T553ucGij##fa~0O}#_iio6ap5ig;gXT@J!Qv+CJ(AMG;Li z5(S;jw9cq!;i#J7Qg*E7XN262^aK3_k`26Cyl@`7N7>?&beIwmn zs&|wuwXVRCg>P|-%4QUA5V`REVzLSA5-lzES%|_m+vG8RK-#{g9GNd z!jkxFgZO$`7bV!NH+_9J1i3%~OB#N*tG74Junh931mR#`QZgb3M*|pfG{bAY%9G%D zl4!Yoy<7+O0&T{vO%IEgT2i zD6^vLkVunhO3NtS7{(HFigD~HCbUsB5f?qY6&Y#bq~JgUa*eza__WwL@>?M!dIqK+ zm?;1V#K~CG`||Drz#`GvLAP5sOQ{epvaG|Kj|qv14?eE_rHV&Y0~)Y?tiNH0=bRhd z`;vRI=l5Dz@ITSrh7fLdKK*d==9&j^X8I~P5;tOFo4dFcNr%Pr|B(QeB$q-GwF$*# zh*caRzfMGfldy=$8*ve%isn;#}6m6~hj+yf`D0(47sl|K#_FmrPV_;P``0AgQuAVRyEk&@Z80$&v~ zd8HI}3Wz&`c(s~=mCwvk(C^!1w-0YGc)<6q<(aYP|K*;w3=D$M+1k95k%B#Tg;!5k zH#KJ1DbIHr;48XtGk>S$m~zg(_}Ub4@?O>@L>g!LytsctKwjQtV!-?NZx@72`XW*7 zx1qlS43Pe=!tx(`5*X-9b~sKc5;@c|GOk;?>jHuZfGu?~Mx zV}!9apCEu~2S|Dqc|>~dx%^hvC1*FhSp#JYWLx|Q8UYAUyixX}VNa#~m|nQ_$pVC2 z%2=7-mtOa!#r35DCPkiyPaqZ-+ZN0G*GRy5tUC|^T?;`pb91HV0IT6dMZ3(_ba!ER zRRWG^Bg!{>rUCCGH%Ht9h#Fi6aMgN2UJ80(Vl(;X#M3ZImc{h>GRLFTVJj@)K}0N( z_}C_=s^-*f@Mm9uhi*a*WS0by1iUA_5Zv}Q2uW;+SPxLQ`rPa&0BgOI2D%?mOM^0k z(HAyz=-HfdyV^=E>J%Az6;|26Z4drO2jB4pN8%J@tt zhW<}YbixoLH!k_Iv*^i_6?p3V4;?BCQ(OoH27V^OVK>(&1A25O1PFiQ4(3uSP)=G| zfdhgh(d5tj#O0FSf71ZKI|0zWndpY=60!m5H+&u9e81m~I3*ki^uV7WaswE%`b+0( zll|Dg8yDsYpe7(Avkpml^y^)P3BsTTp*r1Z>M{D3Rj08a>r5>J&J*$oEGpip-bz%A zzMgug76pfn(ImQMKZf)hk*gA{4rl_zYJgjl3>IYpRgVN4-N9Q|@=yMIb)4{6AV zoPfm4pL&;HkP$tG=Kv+!%D=);evpXU=KA!CmVLkU5LsL6l?uz}OUCCty~NEzHhW{+ zc+!T(gH&j=lUy6RPh-p{Gc6p!A`Fl3Hg9|>X{Yf|7Sb4oK()c985L#=W6>#7(cQiG z-H*8S+&Rq-tbklgffceDgG?(Liq)t4>p4#Btu8|bg9jmf>OH$f`L%Vy4gIeNCM$4U z{nzcX5*E6-^mx+YAhMyb;%n|->{&-o`C#RoTXp6}9~Hpy>6M?3!*JW^f>K8&JHs%2e@7F3aCfLxOe=qf=%0bNt9g7_@IugRyU z3a}tjtq=sJuyNHfM<)(MEKz19;wkg-)4&ro?DsAO0clgGjvZJ11|51L3DSs=MnBVv z+4S;6{WGc8q$Y=iMy*O#ueD$qtLWYd3euf0s%WJp1sL z@XAk~h`huA?(Jqb83hJXS0a|K#V z<3INuic}HYHa?>{QGTt2_)D9w{(kNYK9#bJfhp6quimkpnWkaxf7U!`@wCJyI|0?B z(JnlT;rCD9ztB`6S~XR9mYSu&<%6bML)o3r6h#;kaE&FvOp^24Gk5Pj0?^rdH$hV( z1gp8sLT{W}ha6iCt;;LpUVRHk4hsTl1Yxz`yhMQW-wOy7p0TFh41v2%2o^k$+Z|;D z0w65VhBEQ9hAyYYDa2~>$E=3}0r#eWg*^ifMud?O+yoUyKG2RQQTjCJJJ;7_DsWxG zS+p1Xz}lx;<+a+c;E`rMbLNbN$>=I5lLY#C_yiJumMzL0O~OU0z}7(K$yQGpyYw0# z$2|3Ax>g24`byfdEYf)uco^P66Dq{Di0GinB>6e|PNrH#Mn|83L={8z>P!Y|J~MXFJ!2&0T)oiVM!os+X9^rf8Edjze%Z3H)-{R&Xr z$oY5cAI-(;0?6n@PzKf{H`M@m2cgyZnfB^)hj-lf;(PHCDO|9E@nRy?dmiY;))yiK z%2QHSR@UEe`P=Q{h0O&01)_{uMroH$W5=|(HlHP=6l^e}m(dpIPiMZ|a6_%)tL9Hsr=CH>O@wY0qsi^OCnOoVG$tAz>+YP`Z~l zu)vwfO;{F@U#&!;qxYZ40hR?h=>u$t)D5J`i|Io54MOXc%P-o@rfY~vKusB31k0`C zZW#!W0;DIQ+v2fFq@B8$U=S8qkRIviW|%%T9Kz^>NFeZd+VS`#-g$BF&V1j)8G%O+ zO&P)HU`b%jO2HG~f-K~!9S^X>1i8^St0DgI{nV>sXD0%lb9HK<FF}Z{UZ&SG^d6 z*9imK(ukELY##K|CCMymw0O#BA6AS_Z6}!s8HxDXy7}yVQKtxDL&&N2$yo&aaJopL zSah7-fB*C$2oBg1f)wIj;a}k0Q}Z~T(0;f8(%9aXhF4qB#kxjD zwshVm`L0bXd8Exz-F}yRMeAuuxMQ!>lT&k3qui*9CPyB?93;9a>$y*guO(?G*&eB> z%aGHwrKpW-RCfjhujxcedW+X84+$*jsgS*aRS+~=# zbMbOid+WQ5ikB^0W{2?A6`q`t0!*>0=C%6;%)iXHd$4``*ccsL#HU{H4{BHs;zX3M zFg*Sih=p3W+xl~PaPYD$2(oc{fY^dI=2-XPGWu8OR5L|l2BI<2UWhm!H1vb?#h?1X zAe+fHFR#i9Gj_GN_BjEB)dqbAIF}XP4np+5A(W~r+du-h67s~x+;fTY8#k5_xl&7u zF{Rix<23^Xn9X(4sKGv`nOh*Heq9(f+zb zlPA52P?(5)&!IOsk_Eqfp2ck%Y_4HQvm2oM4k;;4fNLZ+prPQQkR>EiFGv`IQnlCd zPZu{W|AJ)5?(qKo6bee9NZQgn&X2TZ&<$KLf!-~jlfnoJ@Dgu)XUfZ&pNIn*Uz`fz z3Rsy(1X!>Psq5Q1N87Qgz?cHoRF_+4o~nupms+0qYi@aTR@QEvPwsy&%u~aLVgd<2 zOELsa=Hl(CY3Z~SNX9z!ie`v{%n|B-xhDrBC&th_@!P&}{B2l2-j9?+71#!af|htb zHP(K7DQzq$=h>IYhELE?kmGD^WLhSn#U6>EU`dQgO(_7>o>&LnQyib+_L4Ive$qKqh`CWiA0n6t)%oslF)_P&2#{%|359ras%5N$ZSKr`5no9IIz$&-4JTksTO2Ci;A!z4UbZzH! z4|$u=BwC?5p*Ayn4&k&la@R^-l|A>4xD2(dLxmFayV00LoPJzzK>oEg+vTZY=ntTE>=-S!+Rb+lFQo&nsJ2qU z*>(;HY70WR6qbR0@vG!Oa;2baMElMKbz*SGz6F~0t$ zxhPQhBoGg9g`DSS#dY-b(q6GsudpZ(wHrxF%R7R&I7EjlfIxJ0cboi~{bZlB95G3E zU(|9erzoTVEI5B7lSLy->t&9rK8zHS@}`g?2IS%r*1)U~2CmgMHh%J}FV?YlxFv6O zaZ|mbPkK?*(e|Y$4W52&-x{x^fhDsx^e($$*wIi&y2XqK*HMcm_ zwDKSzRTyl1o~RNMK%w86`Qn8FJbs1>R4veE#dJwN;a}AwFv9)~_VkJV^Su-OUiqz_ z?Zn2szz$UIkfV~qp{h8@H-!(ZDx4kK)BNaqz=JJbdCw`LW^TFT+i%(CG?zu3Md45D z`Gzx5SOdI7)dBti$tyD{mw^RlK&c-Jop^Z_D?3L4VcEnOnLYdfvux~x_*CPC+=io* zQ&UqzF@E#3sCPO+`c@!uh1e?ELz61^es#U*BjeP@*6A-$&oR9Y|o-m^)Ay zLjCZ!W(qB1fX3GgR&_h^Z`!1G^NCqPcfUeh)q0kHxQ@USEnpUEc&cP=pc>|5`X*M| zROF>dB65vg+`+fyt^E~ z9CEk^I8Z1c=I0GjawhtKH6fb@a=z22%)k1CT0!y|hAT9PU!o;8bSS$2MPG#zAPe2v zvgvLEEbya?JvgkpKdlJN%KL0HS0>XFy0qdVCu{0+R*;POt{{sZYGWSj7k ztnZYq#&;I?9)PKPVvlL+o=vl+n|v;dG*cW;rUn~+{VaaGf1sGkHCyngD_~>(b6Kvh z3FrS(Y^v<*arClqf&lw}Jma=Rp}~f6z_EwX2E;rLR>Ds7+0|lQLfRP{sxpSI+rP8gFC&kjq!wIG&$ybu#3L`1!u;%CR_`XUfpUc0?WD^1n% zqR3?9vzdy&gc4GHHqkZ9X*KvHGD&qe_zZV+zvj4CFhCnZRFgN^2GAj)Fr z9VlL|5J4(18bh@c_**~Qh67?4^PPA2s$K}?`AnO=IJp$fe^7j_FDN8r3C&$hHT7ud zW+HA!H6zesO8fy&CHQA(JS-$*J4W63f)jdBa47&76nQT}IJ0e&4gM{xi$i7E7gRov zf7}D4o~vML!yZ==7@Eou+r$5-l-3%YrUB5*h%vI>y|{L+v;4u!muoaHa_l#sKs$R; z2q~bQCGz}O=lqDV3*!JVVN%s-<<~Ea9yHz%@bmBvHlajX5yij^2}<$eiXy zG6VquP@1@EDk)ZW>OQE^vshn3NQj$UBn^PLfocx{3)B>UNDClHTV6KQ*Pn4+{t?L2 z0MZYV!XO+pzStdk9g!jA{l=NiW+({Y^F%!V2jR3dB;jD`aDi$ymNsP)Q^L!g$}dUzkeFXJ2cJGb=t~GmI7Hs?E@Xp;`J9=_&t&2 zD8^E8)a!c{H*fAeJx;~eXd2G#Tv`9OI0hFV9Ud3g)npvWJ$OT^ zbiabJsaQPL=%N4Oc3hl8Kk+~js1NW)qEp|G;_7vZo&_nw%K&69dKi#-Kgbj+3GOTV zZ&Tsz0ui{pM5Tke^qA2Ysox-W>UZ8ljd*N)^K3)jm--?sMo+&6WEYNPAx03XVwwC^ zd)jgDUf-T+isQ`hGoWR_X@T2#_g2yIPd2&^{U7Nypf73lGb2DMrKEYLm8$MiixYcV z?Q@XzE+x(40A2+*4=VKD_-)uVj7A1cISz47sJ*QQ@1>=yo5X{5XEgE9zV6K&P+EYN zoSpI>fy^zCa2jL%q0|@fE27Py=d6%ve;9P#UhB3{7SZ-B3XwJo%X-=0{N60!=SCms zIy?SfNwi&_i=9DPLbiyayy=DrK?}sW&?Z8v3jPD4AfOzoIFZn%t&rfd@bQ4iF`$e_ znUyGh@G;PKlyVRRB(=LC;{@_=0?^2w@AHF81~P;=>2XZ+v#X@)|GyA-X@<-`^T}uk zsHv%GUi)id+<_6E8g;}MDBgxSC0F+pS%{KMT_1=i8VL}z7laLwa|E2ZA&-WMq3}f| z11R+Y#hDs2Upu?~hu+#$lhb9BMJ48eQ#)!R3_E#6d*i;&c^16@6-lUGD5R#KU)()Q znmN?;N9dyBuFCoUDQW2U-;##ev?u>(#_(ZrZHM;L2Y@iX=3j6KKyzJ+5@IgaKQslE6s-psBE(@MGkFh zQeQLD4tu>e<@IQ*$wQ^{LU@>0{Pa=99M}b-{w^;UfG)G8o0U!L77+@F9RxcD786V) zeaKr{uz7e;6eXB^1X?=Pn5Vw72h${Z(2NX}*imss85x6m4+=ao?h}GI8b{ZOpafw} z_Ceh?#xcauNL9k`-v{GsE*Yy+g>zF1^EL>okmLw>I&iNR)^$q&;$6 zXYGU6TVfK#<7-3cekZ9b)ksNvkEP{eeSbhJ?{R0=^|G>W7q!0qY>XJRC|`57DPh9m zP{O+#BF@5|jdLTO+uulh+jW;epv%jRaMN#OLu`6sVIOj{{t{xL)g))%gWhNP$D z`GD$K{O=S5v|rGu6^Rn*go^$@hL#wK(huAhZO;uvn=gDL&A+_HHhU#JWny3EPa2~F z^4Ls8yRj!5{W7pz?`jtGD%#rH<5$Nnzl&C7Ga1yG?PR7wOToq3!5+-)_N8U@4!(B% z`g`>F@Wo8Ei!LtOwsRmCp`{)@hiLax8||a}4QDaO6aBOV*_RzqQMrPqyH%K9`R7M8 znSwwj%cA>c;iuTx*i)94du>|)Cdo~s59?v{O(Ni|fWVl#*Kc()9BjJjlcx~)!Q8Kr zKU=PEck1_b0rOU5SmgOSutm0qG%>`O;L07JzkU@$-$eR6fD5ll$Cc)viRe73N*c+o zk9BP!-Cm)TtA9BU<>p>8ofenSVspF{U-;qn{4*xA8^MJoP2@6CmMllN!9!?~^#D3? zE#x6xtryxN;aNb(V7~n(v^PU#L-$)wvpQF;hd&y=eti#+whOxc8|d})I3puE!*e1H zEryaM3Y{<|I}h0}S}h*gr>@=&^t$ROgMDz!+$=s^UG?H5qLptU4gvybaHDQ$WJFpV z5Op6L8~Q7aRXcbdC!c)us5@|IYSgXZB<6Ue%NMr({Fwr$s;sJtUP~sJ7ays)-%Fkk z%Z+}2o?WpYTQ=W3ux(99&{o%JHB28Rt7^E9#smZKD)*}>HfNo=xp5v7VV*+K-dwn6 zp~VqR?3$qCZLUU3q$Rk24kIk2M<;h%_@1HMjfy{dpxl;n8r>#9_L$jxpB_f>7@!p% z8vkMF{I_0ZE%ebIOY|Z;iu8W8s^;2AzxEWi2b3&}-5~8-WfPx!k;xtd15W_5r5uo1 zg|4?_pg*{RsHg^uzDC7RwATG|*m;+L<8R>1iwr=K&wC)Yq3h|kPB!N_MC0E*ClnAr z8VdP9Rl09k+7T`PA2TzTM4Q`i{g^8y+Pspso^*)6ZujYhh}n8Cdu-1ge>N~tMikNM zZL6e|)MhAtFvv^{Bea|#=0U5Kn}3?af;-J}9hG0&H3`6nr;kpNsXyoiU`(q1NHgNc zkGG&%{LWQoswb_j_ao9A%ZU%#U${2u_|7|7Xz{liohSGO-a(0738pdvEb)E_XEs_` zu5**>+=jTetqq;?$oj>3E#%!eVUBlEKs^+FUV{YVXE0pZc6w4KIb|QJtKWrkOJ&*Z z*^kJktI~Du(%c=iq&C!R=&a6D*okg=f%W6Sn?u-!nZaV38CVS4(@VvjVprdC+eTjt{%>7sk--pI4BTjVYoZ!N8WbWQ3mrG zb}*uaB9lA{`}m7O3-{yvV9Z-ZGiEF71@yf_9xzg2|LU7}`@D)acnRScea5-Erzmu9 zAnoMNGofK&Mx0{C&kl1m=xw`m*bu^(Ozf}q4$fFz%wCni(5QQgUf<^I+kEave|iVfH@L!a&{mbKW5JMzr@!T+pA%_=+>#DOP{tK2KIWQ7W3e4uIh|^ zS?-heCq^+dcYKtDbq2(0pqd7I^@L#I);ayCO*e1e#4yt>5Q^_uW2QPbDztg?`1t4B zhP2YrRhSZ1{0ES&haC12HWBYImb7uzfPICYwwFWWGk&xk`l+t?rEtX@X+Uh27wJx^ zKZVCFY2PAD8sau~@N!@PH*p%VoNTd-y>cDsLf zbv;BgnB$}~_nsH8`E0NeA@|^zHzRxbB@!Ug{_;-Id>3?d;HEAlX(Z4B{wO z6*R*LK{9}s&>oL4=wrXf4Wq8Zc8mff8p^8C0LO^xd=+qyEiDECntt%Qy7I|*W+8qpsRR~rOrB1_r0a% zgPggeKazNyodSH5jH|j5Mw}o~eg{VHXXPJXE948LIUU+bQu7k17}ufnmRN~A<0BvA z6t`mx7TUVg!>VzdS59w+tv!WjN4|n*LcW4VYwT4!ckR{Y@WklGF2I_RPmOX8;tDak zZR6@lp;bX-L;|*Z)2s7oB!Mm0rCH5(=ia?}^6*ef^?DwwHT50G^kp0RX|GxtpqPGj z3jHO2cLeY%r0deSBd-{&@cv^|9PzHJ^N|x3pSKBRj(>&bmY>O8=U=>yHjG^;8ms@~ zIY)Xq@069bap}qo6lc2>IbPL23bQx{Za!niO#?>(3T4-~iAJdyM8C|L zD~eNe&qWTwq+zncK6mcmSuao3_r4XrTt&H}EOH~o8FgK4)ISbXE4w8}aOOR!lU`Ik z0RhhKrnex(j;+B6APTxJ@sYlG6mRd&HE8p>_|d-u+*ut-J5KVVy}sC!9UV7||Lud! zBu(0Uk{1mby+vMp?f;JSTEg=mZ~MRcW_q2j=p5;tQ(sr7kNF=FRoy2s#sIVK$Y3Xo zct9U*G#=i$XAk$6^+i0bqgB}taur>&mEXRc%)1vf&q&ecopm?c8u`Act%*0SeA0`f zxog%dPf|q6H3f5|AOArYP;bKly6~VMSM)k#ZLTzr(opK(r41L^S4h<}BzHP5$H0f; zRd7Hm7&JO)C89KnVH}rz|15lB;-eI&k_&qkKykjYJQw}n%WWJS%tod#=J2_LdFwT^ zbmn??-uid_!$qbJyzLU#D6|ym1bkcSX3+on3on<6|^5S5>Ie$ z?7QE)U+~A99$IyiaM`9_Z@tKExwnPiq&RCy^F$eo>5b%Y)2IB9bX@6OJNIXy|95Yg zWvZfZt^gBxN<6!yrGHiih)-D9Vsi51BpQ7hiJ9aU|M*KsCjIrqqPI)za)*0SNJOk89K zPKD1DFIU>0@iFhjCBZe6@9rI5?A|;W`u-FXF7(k5Qg`Q_u4YbbsjUglwE%K!d(34={(N$?HODsItXyKN?+PsL=1#Jdc7|YOJ#on(w1eE`|bU8dL?HIJarr zFghI{+#2a5sGu1-H?z=R*Bf>W0sY=4yRXi^zK#l(Un7d^^I5av|J4Hc-+#1X z#fr-Ic5~130u$rd)uS(Oz1p-bx=P0LTuN}kBg=E#Yt7dT=P)f>rnC|hxe$_EZ*$IH zFN@U3*53Z(45ClDT}|gGrLnQuIYz>kOXMyKgd7D`E0%MCGE_42Ho9Lz4MZu3Pi;Z0nj z2S-;8+SkZzU*#-DL%CbZqof~&hrS<4QFFEM=WpL;Uc*y!hc?yK{eDfXJevK7mS>M2 z6f-n5?1DUVpXFtgcT8f+RjaLF4-yf3Ad zayzb9J!+5QXPcCZTH4Rwz4^)OK42%A|MTSMmIZoB3j0RyXClZX?WHVyh`(8X;kNuO z(wrI^G)sda=7N!9Vu!O&;a^B*P7CU8YWd)E%HV!K?(f);Zie>O>?dBls(*z@ZH35xkZj-4YppxICQux=mH*Kcx-ePt%dGmdi zufeN-X=$+&{CW)c^c?X&dWL@mm-X|`0){si8RK5)^{MPPYHgltGku;@+DVLHv7$4lk3qlbQD&(KbBWwyqmW%FfxW74IbQg zc+d9#LEM`_L-qgvS(Bw~BT^z{-;Gic*;-H(CD}q`7o(yf zp)6Sjqp|P%m|@KQJ+JzF{-5vp{m=LOm+v{hIj3WqnS1Z+-q-eA9?!>PczqBSL~!yy zLh?#n)&c4ZLi=L`jvP7i838e-sfzX;ZmN7e)7G%D`cfVoP-+uG&-pPzKIr`$uzgo&g^)Y|wekY$ z=3;-vmmvsDKZ5GV6%p60in8IsX9)?9LC_RDW>m{y_XBZCgE?IN97OenLB;{>jd5>W zItAsI-48xX4%s(tq<7jC%y6L8(K`nZ9rpO91vZTE$yR?k&oW~LvwsQ|o(E87>D&}a z3r9)r51<->3Jlg5wlc7umfzSg$Sq`yt8xYiFIp$Xo-FDi3wmE|nDqok_-uSwyX%!q zq-SE@p!?+1&fG;-jIj5F+xPUCUzRCdcKHEL)rPZ%+POpPgO=_sFE4jHt&ufjFvqR8 z3Zpmv*Bq#it-DGMt99a%=MAq}&N|Fw;gTOV=9^fN5h=IH>-ccLUq~OD5a}2`{jIWz zxO5sR_hATZixK16?UjM-5IHI>q62Q)=rw1QqP&IBM6=E>V}3l6Io5`&W_`88Mem6O^Uy1^Ubh zsWE(tkgD=FMD+oqycsECl)ExuuVO}#1dlGWc&i{p_04n66Q`>y;k$&$COYmUk`Or= zLrX;D5tB)}(5F+VncNyehTPb&(D>-6y!d?;jE^w$Hiaf40z1DZUuy_~^7JyWWH(#) zow3STmE$If&hqjD&lP-q35lyCWc17YB$M$UtH+ya+4N;Vl>}@PVolXOO<;pb#NwIW z4;Tqy(^Pu<OpW*NK)EHFzvr>^!Z7mYJ~&Mx9NW1Nhx4 zXlk{v0p;;}h5n_bC4wPi2vomNZtT?-{ey25nY{+k5fBmfoOIM*L3*YGy*|0k%hOK5 zVYv|H!2aAx7+@xZW>aJyAwnQ@(KD+hh=|Y`4vxWHi27Xa;)#<41S|CzIk2UIi8mEP z^mci##&zRk?l5rR;kLPQy`|zGv=e^)ZTm0-Cn7tH1SKI{O4{ola#C3y@BFcdRi0Lw+yGX0xO#N(J-PP^fmCPLq6yUZ#AmP92@Bo{8ZuPw; zlc-aTdm~^#Cj0cPjZgR~haC^wn$D#Z`GGt8xn`y%9? zp6{H#_lwRlkr=88s!^wI#+a>wXrTv@{G#F7e1Ow5n^}UpMbOThUNH=Z2;3>Ahh@+t z&*h_tsSM^&Eg`2rw=Z~5gx*n#T?!N{vXd zP53RQ%+hos3^{V)Ja%2EJUGj*`_{*ovHAG=cD1s-zcU$2r>bA~k5N}K2MtURrOi2L zEMBgzM%>nShy6Wt%!$f;O{PZ;@8x~PMTsL13FYv8StLO$CTuQue7)T#Pu@C0BWIOu zv19!Ms&h~rH1Ka1$poYA@HwT7hz9Lq*gI^PLwA7Q5fa z>s+qQ^r&P$g03mluJ)nL{Jy$xd&ag~Vidj^EHeE92&LHRf0ThX`*%!hmkYLjaSZ}RRWYEnCio;-kM-;v4 z`rdTr)=@BdPx3botMG5FhhXY5CNqG0*9qQW<-ngI!YUi=l9vNx7<`vm&oW6 zpX^UyIlsEZ%_oh(pllo`L%*~|%;P<>hUN(hQ)+6hOi*PS(!ghYPOhVcJ)oUZXW3K_ zA-$+e5J0oW{&VfaWf04N8jf5$8P#+ewQi(!T8u&p$9jsfAGWkZ7t0_k32Fau%}<*S zuGlDq={pf~-w41?0@AkD?=buiK*4o!r4bAg*%kKW?str`ei>@Hbmk1WGv=MsH3P2l zMlr<)*P%4;m$K0n2wz0La}7DV3^>Uy3Q0qN8;8#z*7v+FF|DZ)T2TSR4g^RlMeXlC z$`OeUSV#($vY1do3<5R=TGum>bsAOj{a2ODpIaoEhDOI7K^Ljoe*j! z-o`7I5s2d$!kn&|STgB4aNGFaZi^*cSHFzxvbq-o^%p?b6BLZ*qcZA>^E=TgnTK0#qC0Vmkk9a*=ja!173`5iJcCyo?|ijY*IPthZ$Kve{%cYpw=<(9SiB?Br=~AzesiHZx1g*v~`+{WQY3C{|W* zR8&+PXuJBu{&?h6M{1Xq&_4yuvS0%~;z?kXbod)JyXNn@AQ31X_gHgZz7_XTf!Ra0 zB12%HhCX4>}aORAClh6IwL5aYa*u0d0ag zEE&8NeJFdLNUST}P3Aade+Gg8&PIF(1z*I}5AqWPAU}Y*@J-G*ZlUh7!J29n8E&%H zDtaNX{~BV>C9|=yv4?RfbQI(KrxW+trH|WQ^!fRfh z;KCi@B6PVhbDa_qc%FCmLf)!)0BayrIVtqfwbY#Hvtk4O?=0u<|5!a=uTsABZsa<) zlB41;lY$7WZkzICobNi4grDRU0v)&qH)Z|&V;G9P8;$%gpG6c+@46@k?w^crB2X!h zD>y{1QG3?R%tJTWhVhLEY=j_tr|9_|Rk^Mmom6O$nOxu_EM(!jM&$xWO$Y_Y(ns+4 z4DSump|v0rF^^3%$Y3-<;EA3DdGx$xp&j{@qXuZRJ&xsBL*bNwA41AwU$Z46u*-X z3d1gBU?GEeswSUkKJjO@f4fp)$UmpYtV1Sg14)d8)66=;gFq8rJm}k*>ff5r1f>;J z>aMr9_c2(eK{+R3KX%A#VK>CxoHqPPs=yIg3bJKx*wTR;Y`KDqm z!Ow9QKmYOV*9)}^U;Xw31$V#vW))HZbA8_*J0Vtn)5PrL5|iYm5LbUA9H*O6dHCF7xf8e~oo#I% zZ$2{=RTi2B33nKL2^$K+=8&79>GEmw{50){pC1Ffhnw3+B)&nvY|lIhcBa-QSCDmN zCP=@_HU?Gcqni)bPNd-d6Y<$8L3bpDbJ4&0&vy*tRz`#f0{Fmuc=}HutQY;nUht(+ zH?LT_x6`5`oe;rzjE9G>BZBl^;Gi$H6!$=N3I`;Qz903`viuQ)jGbj(5EodTPU~-S zjtyXs*Zi$K@^%`Jo8Z%wi|@r3_wx|N5a_qZ_=~lKa+h$M$H-Vc7Chi$ZtkE~w!@1o z)eDF1Rzg%;icjs#J!$}#elqU$LQ9xrbc6XA6l^p;zC<+lxvCL2TX`BiN3NHbm2LG^ zM#P+MXEih2m`Nt7^xVvOyd;kna2_3R?dsYy2XGszr=pLv5=^5J7-*Ffj|V|KZIz{t zU^Dz#q8_hri9`nQ>vZ z_Wl9%781@fD_-rHhxLx(sP2Y&&|SIIGs*eNsoG@6h0Kn(!z>4D%Cg<4NPFPDwn*#&gis4EaH=Z1Z{i@Ho9@KW$qI7?kKG#2cpU`JCQN9xF zoKd1Mj62v{G{)|i;O>SANoVX)9@)D!)xQ-wF)#WLlo*mo%{$kRTuUiEvLw|k?%x$5Cc^D0w z?%Q$)sW}DE46#s-%A}BAICM47hCgFqri^bElcHhX7J1iE$Pk*nHn!e7LpDAPy^@Sw z@B>)j?ENKq{EBE^kKqW(suFI}Ar+?9DO)RUxr0q`UZN=yP~|O#3>@aaM#&-g6=zfVbRHFsQS7 zEX5vol1QWk2+xCX^6%&!j$0nBEv%s4bq*{OknDs>>ye#w^UoHzcEq^_Dpl|RlIkOc ztex7~)qjINgyI2Re-7+N=(-7uh9bk+VZgz{P<>%Gq+}A1TDSaqO{gn)vA95f}%iO zi_O>1Pwy-^^%E0MfFGA;z4I58t4Ml~K;A3a-NQrRAsAo^rK=G329CBRouqen%UI&_jx8i>tdDXU12KB>s+DvPo0HyH#dA9Giam z@+EgRrU5c5wu7#vj6~hQZ6HnleYcU+yg>}oTuYFP!Ebm*wv4*PL(g@xY$8Z7!Fkds zN~6kce{d2KxTX!)xgZa~^R#|&0QMaxxfBsFTVU?mII9kh^j5}2BlrHCg6RpF}jb2YLH(cM|#2eIlbWRr^9fD1_9eBYM zj`{|5`RheQba@Tj=WG%xzC{h=utl9&3~%P5O~UQ-Grh(=-p*N0f!@w;bNn@QT^TsV zT32D-D|~0!u=e)UJsNy~F4v?*&poRU=|f|Ku?M2|7}_~B6FD1^X?EeSag9$U!L0jh zg`?(xd|PF59(lR{USR$pq6s^3jyu}$pCpo>c{Sh4ppj)g{zSgOJR2H@bt-1NhPEE> zI;ITMT2)SpRrmzkogG4VUv%?)*LM>>IeV(3&XJ`o-3Nb=X?UPFEt7BhBCHxR1!xuz z(}zdnk9a&%2ayOZQ0oKFQ179vGAxOZr&KF+fJ%cd4Xey}&`SdsGBqtt1N4b+7RZ#9 zmrFe^1!^(Bm6eqim0ALoD;^9AH8_=v&;V{_(|7ytc=@-D1WP|eyw|ySE_X=K{09Ed zniIQoE65d{W_dh0`+0MeQ!&`h)64(y#?mhM#c2O02Vzp_%J9I`B8WAhZ9QXIg1PP2 zExq}Zh2^2mte2x33)gPq{XrRNucZ1xSfNX|oAprp&fnsVMoy0v9W%L89>m}^D1K48 zy<1e9O5lyc%1!i?FInm7HDwl`S=+7BgPtQ_94$WzyxtRy8eqTgRZdS#m>VgsWwfm> zWUW?Z1e-{I&16~Y!wfKs+a!f5il`LIef8^Usslo;-zY zT0+A&SljdBC1UI1MWzPsFl5x26~T;hEic5+B}x5`%a*&4Dd6u!I{{uFA3$7l?X@n_ ztO_GZV!R0{S06~6@|#rNg9L>px@B=tS9xQ4%7)7ia$&K*UyODX(Q+nM{QYGX2nj?o z3)hY9F)ne-*u5hCBF%67azaum;p_o@p8n9uIOtMIEijyJF&RE9?-*=4mO_TCODo}vQZDx7W+_~jzsVXEB$YofXS@pT~a~chmjJ^Q_KkN*Apww^@KzB z4r5e30Pv!e8u&6k-aGwyfBDaiX_SkYb^1q)81H3Hfkb;n47(L)wM^*-8?f`6H+syH zAyqU(V@T}l3df{U$%Z$hs&Tg%4?@w<$SO_@c^gS!t^d(Tlr;#Nv4&8lp@fI|mYuJ` zQKo=aJ5g(Ztm%(YT?D~mr8a=|y$S?SnTl;brn#fTTY`V97YgWvd|7DdEDf?l0tvNGu zD>4SrNEYNNOv7&3BXQoV4&j`bbW4a^ashzzts|&pA_3Q~on7HQECI;5Y$ydf7Z6bK z=U!n+K_QMn6}W@TEx>9T&y5FGOvsNGOYPh&rKlnb1K|dff?PemM~dzb8pyr9mX0ag zV#9>Ch7^8HDuyur`BY$yqa}Eko{$Nb{*z-+SJOa*(uI+(v!5in@n9Qk{00yRg!V`A zq$2hwb|JC-GLP%_ft3?wGPB%%bbDHPxgzA0>%SIPFg+qS*c)IaA0aL}dF&LK=B+OP zA!20b?%uiwG}V9o`o-D=z|X=nYVUwJ4XzvIl8 z78Z6^^OUx6f-U34=;^#EOCF{MzArpy!jfrK9zK9`00%Yq1E$#QY8}Ht3S%6Nw;AooOM?QO=gy{v{x^Wz zx(Ha{NzJqt);uo|GKXLO4lAkyo9^ks5{wD?BxGC?$}ln=PP6J(kd%3!&)W`zLX47h zD9k7{N%9vNVhOjHW>e^Tikil)9xG3kD<`clsySIa8H>b{@1qVjrN;4K z*{(K)b?JuMBqq_Lhk2E}WT5>Ol3rburs7uvM=m|Vixy*IA+ytt%m3U?h$ZF1E}QsJ zP2}lEW?@gT^K>vg0gny(8SzD{*w6cZU@!vc?Uli;jy`*~8$~U{AJG~iKS+9cbwyC3 z)>e_z0M1PVU^n~Fspl_W#sZdoQZyNGe!9GP7DF74eB{Il58wU8WYqpowCBTYhD*=t96<9c*39Y7X4i@W2V}yzxQ#;U{S|c`fEoP|b(aQz@*KptY zTdT%IyP9q1irNnmhh{=s@>Ax zAbc<6t~Ohx?{Wid6ejuIzf&@}f6!>wT1uuv1CuTblT_R*oMO+-i=S9YJfAwCNTx@c z-qUsGz8z+ATGA;v)XwqD(_um~?V=cRgX^d9hWscdw|D~H@&AhamDFaN-Sa4T<-Py= zQ98DlOqKyc#J8L7?mxnY?ylb?Dn~Bj&nxE!huKDzcJwPe9b>Lyk@rObDdbaN8()zH2qu)G>M~urjkE_rYt#R)5f#tK(IPD#l3{4c zcEwIjIXOUW7wdsDa?2@d%&3u*|3Lm^%}}4ihnqk&U{mGa0RGj|VGljk2~S2%mz78n z$q_a0;nf1U7G;(^(k!n7BwL({_x{~K;Mrms^)V6L^d@&&bbsWP1_j>P+}pK;{_QRa*PcNv`wN>qYlJaTh)F#lpCDo&Xk zn>LEwwq#jJ5X_8P)#1bh+3RO+8o1^!XXwTk7QW>z;gg!=J-a?O6bMNq8vo!fo^+ic$ zLGjPWhM!~B>CZm$R&e<=u8ewm@N#y8C=m2Z*QmT}>t-umrxC{I1>i!+z^7k5gSOEsuG)G-CHjN_%=cZjCpT z*bhMLYI&l;>hGfMbgVSx`_&sYHCv;G$$6{NX@>ZuM?kQ)TV-Ka2m(xh9X4Na77sI!#AMM*#kTpt2}X8lsgYfaC1y{{vE@U8oTa+QY}E zS6Ec!2@o^S>V6k4u1;WZ3=M_17n(9eB3cX?Q1Rh;Tvj$LR1-|j(9q*2PSk;;_>f0T=BJM{;G4!Q{`<>9UnJ@xU9`^+)|z$2+9a z2Vocy%9`V8)-1P{@Q07}7jkT!1vA6WRfQ4;ICN(XvbL zva&wpSXOj#MG^N4Mh&y;gOP8Yzo`HyzOpJSE!CVBL+qQ-CjrIF{LUH~48Nz1B397s zwqL)lp)CZvvk-0B$C+V|GD{>-o~ivoC>$U<#!yd8+y@N{dK9b77H#{qvhv_k$>Zix z_ftQwgV)YV$V&1EJDb8T2=@8Yp`mM{>dAorH-l;(I;F+H(M-y3wn4_7hXs(#bHvV> znVA~`M;MKD%%%R>>yH#Rwu}~lbyV8JkKVkX@dXw;)GYe_`*#a0VnEn7$6EomE8+}q zbzukD4Q|ckf|3%{pmU;@raRc{-b&KIVnhh-mR9J&Bdgot8SIJp1~$Jy6fTl?Gv;kq z-@SnByBVI(l^PjpCdkSl?U>FBz8~8@shWe~$O+moHz^r0O4mY|13L zSx;B@r65`$M}^|MxngT5c&Uftj-TwW09YFdTJ=Do0;HF_MQ0BjIG~s14P_8eE0ml~ zZp)T~67Xj3)8Sz4-KgN!ZV0&7{HKb>sV^Q4ti68{X2OyH?jhXnX|U~eAB2L7=5<_7 zEM?%r0S$c=CypP# zBvL#ixD1@XdUA4d4pNmcy6M*n>ire5kpb=W|(f|)ChPwnER8Z9)}z0M@@Jrm=k!VpWb&zR4^*s z_A;oeyk1OLP8GX*;)qPReQ?0y2Y8rJ+~M``D-@cpu!{k+aLaeC^;Jj4cs@d?EaAc> zu-S|O%ZMT$q0|V95k&@OsCsDI0ktnhV*57xWjt?WF)vd#bG0IHwG0Gdd|mN9zdAbX zU^0irMLkG%n~P_|T$HF})xMzhp4jhFH|Pqn^7)!%s7O&Dm2D4;dr{0MDEMnnIV>QC z0N&P662#3!_`yg6>py#TGOrifc!x-tEdea5M`*2hZxH6BZD7F_Vs-Uhs1vFl1t7`R zm36FT(52ye%Ntm>!SE4{tVziwf(0B2rEe~Ci*i5;v<#|JSNGR$Z`Hh2q9HIZQjAN% z^m#y*2;CKsA;GOstala4s-S(gSFcug{(73cS!SM<^M;d?tZ9(Jfn|ex2QRXsruL)R zVQ2MY%^NYFGnR?ah~_UB-mQ}qX}Jcp{Mj5yG!!E z1hNA)O8l(R56p(R=RZi)55qdz+IL~4&4$t`yHe%)Uk3yL=lqy4S;+p4W8!Ld%0bOg=)XbmJNQX-8(6|iTy9-gk3oS)0lv#&{X^#BacX9;r zRGX>>MtFCbj&CZlDqjPWA&j06vf%@byhPW2;hE15n%EuD%Wk^~ATXd3?Dssz0}Kfd zW8|$SXL-z`)4M*xoH@IUeW6>AGA=6XrVg2qJqtOqx-xo9P|z&JQO~J6vJgCd5Jr0lOc4a8kzQuJ0@pN|1qhUA12oQIHo655Xqz`)h+7f3<#0j z+hygc3#aO<)ze9{la41BmmTOtL0_8J!14i;0Z_(_SS%;3ly`N-&^|5MwpfsOs&itQ zUMP4fbuKr7^vBwywS+;y0vQN<*u(EpCdI7?r`g`wk%+8*(Gn_ezHhN~lb0(dFCoSC zcX!b7T(Yo2IF>+faDErk9&Ub8PB^YcgT zYeK@@@6@Py(F=yyc&jK|-vxF$A$u*&4_V_h?w)nBo^HqSD-V`?o(Pzk4p4rCnoE|A z$XyQFR%+xQlLc`)CxV5qNby&2Ms_^LERnOFu zVGI!2jYWJZGRUWn4F%xud#*WASwGpa^gN?;LMF@8jGag-o-zLDP_ERFAD&u#+kQPA z_cD19HPJu4e+@5WLO&2?-YPP+5L&x&y~!_L zZ53&eN2~6V$R%pak=^u(w?*vJ6xsBSx8T!&<5;%YPq(F~5gi`^e&kg;S;%_~?^~&- z?X!YodR1z6F8xxZRA)X}SfaQu$YX?Q#!CMj4;q{AdztPZNEbLqSeR!dHOUY}Ij0`% ziNG;5ycpA~o#gu}d-lXkq}j0I)%GFt8fQdJH7s@(pQ@4V+&G6*rsvWpKJItTN_Q>( zZFbXSY)VRMzecFSDQ-~;dF2c1J=N~l%Y&qqsW@m>Nv6^d@>7@mCa8M50+B`MMz_|*>-jYI@qlF=1WY<5fi)@G}b}n10 zcfZYbvX|?8<1SuUKx)Zx;dXKS zE~&Yx&ZWU#vd=@3sim0J%E{Hj0m& z!LP?8vlRoyv+T--0+HhTuM-|xj9r&2xxk>=*;U)&Nl#abO83k=lZT`3pMCgFjaH3g zo*B89#OOHMMuw^JsDcssefjD_&3e7nrXM6^j*wmZ^_nB`4QZG^*R2dcGM)NU0~0i8 zwE-9$-jO{0PVlUZB*D3=TleJ&aYWSS_!ZT|zwpqVjGN9$TT_diWtbz8xk@DmB)pt& zh|`O8Gpk&dVq@=MYnsL%=7!+!CsI9by6K9NCL<>&ar3|XC~!% zlHxi7DP97--m2-91T8f|Z+j2YYr>)at4So~`Gr&CocL+NIhZ$O$s@VOk>NLQ#wH;| zynNRXL1E$UVhX~1AM3bY3#`PSyL!zgrHj1f0p%{$x3zA&H>V%FR%j5$SDpSk8cM4fK2*Rdr= zS_UK;U##45w$rmrx$xS-h5a@VJdP^K2kb9mc3=+ILub=ho^WH(uk1^H;3hmT^-0PS zuY43q@W~n#g=mz7Yu)SHxC4oe3uGsh$}ca`T# ze*bJwfIdHQLE@^@G)&@Ken=fbt_xO}kKV6JclJ0AS?_d$W1--9V{Tz;_S-0!Y3Us` zueeN1_GD0LPQ{-lS97T}%NwYh%@9X7M9(!-3gV$$SwU--0OtQkVefyN>CbX0hYR3+ z`WKzFRvFnLoFSR=m3)r36jlC9V^n6pj`#d3a+IQzbIo@jF%6nA^>6vtuTVQ6StOHo z3%63qu({6Gd(;@dXB^@s!#0?(qyKDIG9?#4eOxh)ij`s_*H+-v7-kIsYlFh7`&R}k zsR6E@eNv?^j%tltKki>DoPO->Pi{s!_ex1QhBKWcDkYeSt9|~J!Zx3mzlzDPe4^ix zjh{jv7Y!{uQ3VQf>G}u<(dOo6F;UStU>VVIGUo#urT#3%neJs*gK%EZQ zf#2S5-i1lFHpu~bsR0cZi_)VaW?Oo1UoGpn7$#Bjan`rkgItkxnL`J6#CX&5gh1kR zenh)5@Yc)EC`>5!9+xTx^DcT1$5mJE!;fbt?n@(Gdm3~gFLI{j)1@no?4nir72W=; zEHx(uS>A0xE!Ou3jToKVoG#5I`kH&~y*4tJn;jb~Tk1AHDWBBJZ}>J$b?i=k<3df` zs4RNpT&%{k1@3}7$aFN&+rwG-a8#lSnV?KRClO0wUGHcy%D=NTST#uCI z1|;3wB&V4Xb4pjjh{45G>gE;>4)Rm}-2(-3meWOolfK$Tjt=6qi_}@pL zn$?AVIp?t2$#YfQi{-wSaz?krm&(t{hUxR#`2L2V^J@X^@UEgs;~3kk z1FpWhM_Mwv?_=#Iq*9k_n?IbW`DyPdPQzycSD0N=ee*`MEpvpXB8Z4Oe)0bc#~ShlVj_qI19uHL zZg7O`T|t5g7~*pSb8@J$LCSS_h{t3|-t2+5Kd!Pt_u{arO!sp5m<_h*g|D&!#G$>Y5}fltuq zpGTjVM!DcIU%ov-W68z}3+s1eiT1*x^SD3hMg+^w4?-l}3c+XVYgzOdgV?*4w7MuM zuHRG{jH*>(K|$S*L7W+ttdm`pIz$k6imIa!VXDm8wcE_OI{%)$1cU0>TrUb?NxVKwN#{=2 zZoH?j#2Fk4yn?`YW$h~c(zUqznS?63TckjVO~uS(Au})M(#22nDX+MEP$yuKGtqva zt;fvtVPQszkfqPc9meVd-iM1dI04_!z5};&!+2e<%*D@qn;rIKs(A0%h#_1G>pXRh^Qg^|%`g>Z|EAiWx3pGq< z#ZfzTEKhFK514p-*u)0lD;NTl(MoE8oug+?^Zk@?eWOKqfHN^gM5LK#`cck(KXV6- zb|D7mjq+&+5s{<6Zbf|$v`vd;&qrl*^K@<$tD3G`Us2%&OOYd6(Pgqs?Dmd0tSSX5A3ywo#Y zXO`W1Zw9=|d@w!ptUvY42f#b6%1z0~UY5-)SxZj@{B}pO`kjdkrf=%Z6$M13S7jr5 z3*LO9LHaS_XGC9?&Pdm|le#B3a|b`G`F$)Ph)fMvP14XGF%JA!%LZHo^yB}uY;3j) z!v}^S-X(_py$bAFz)?}Lha4g6EnZ1lo%ZyX>q22l%s&>57E0{_3BGv(6zSCuu%`1; zAPWt(M>&w;MWA{JpjBl&ggx`*=4KHHJiDfH)U2TVH{WV&Lw~9O`mTE&G(UFohn^*a zub8AC!CZcZcTXjU%c!WU!HIbvYHo66P#~SJ3G5&-vS_&<0LWRR)Ke}1F7Yd+ya!UL zGSbY@P!RqhUP7ijKcw~LL2&z=7Cb=}%(g86r@~a_^Dozh<39}lATwpcRIjZr9z$qy z9#IGusdwk94V--eP!*=E3zy}^i#FUi??Y%?C)b@^0-inuc=}B44D0!5ZU3@U{F%V~ z_0E`srt3fKe*P%?mgsx4wu$(d?LMViySR#Ms*g=pX} z4~`tBl(cQjk3P^BX5;Zer?h_1QC;w|Y{L)j8}~)T&sx;rJmctE8}>^CuCN6p35KhO zJ?X8OHfmd1zeyzPjY8T~KyhYohTn9;%UHlL+ss0Jh%H3GE-Bq(Hr<5iyR>m?;j=>s$_)DcZkaUGFSVT`9SdvHSX3%r)YkMv$5^V7_lwsxd};KyttIDG6e z`hDs}XcnR3pr*I2tE+40KM15KQ1UoGE;Vi|pqaf25GCqlk`zk|x978~N5vu5W?*hE zDIx+~{V4eoFb8P*V}Z2ylJU$TY3W!{!?jt>rHHQ`!J`_v87lm9-C$e=MP=;QbaQh< z(^|k|3E6`;1OmDCY=J$G=H<)J0umJV%5f743JifEYkz=v^U5?q27Yepw&~vKUja)! z#S=v+U)*cg=AMmXbPzD>TE$|q&ijhOrah3jr%&r35*Wq=w~C=bhlE4n&@GZ<@n!rB z8~**jjNx13!_wSRHnV&y@4(l|28-^8WPa=FkbZU%eE2a<#C)=_fj7hb%D(-oUxQ`W) zoXqkV;S|oGgimW%>)Y5YcLyNfvZfm@et6${^l;&ZhwFmm8&{)ITEH)y*yCLYZn-&b z!q$qg+?G4yhv7T>uWABf-iE)$cEmM2gWSFPs)Xyy+h<^r@>(-X_^2`@J!ad`uVF+= zUD)mAvK~Uut)vkc33x3oh_7~Up`vj~xj|e}5+iGETzqU4O;TD+V$S1~kzsOb0}H0= z{=XQGYF#AP${{hBT9+K&px%Jt;a}4^)XRkOuIm*mjZIPnCF7j)&Z1p)N)U#JXy+ZP z!*-Ko0y*>DyMjBPtc?A0I5r0Vf^mda_&U`21P1oPSFKc9mHp80F#4exh?{v#cCeSt z3hRPiJ>g0Bg`uwg3}P8D=2`fCH-FPLT92c*1Q9a^1cr|^xon2vbJN7sR6;}qV*P^G zU2Vd{!`CZVudg(zr@V_`&u~-OCx3 zHg8p)M?+e!sg3x3|GZmLN$=1ltjA5)M0h;HBq&O+hgQQpXdXBGWeY-9BCZv7sr4|o z^55!2^Pw{8D<#H6dUkXEKLw^6`@i1YDJOKuL_SX7r*5zJ(u*WB^kx`(3F9}=K;c!X z!qx#8W|!wnjlCM@=jV+C7(cqKhj)1Tv`0Kp@wY#EIa^z=J%_e_gigt3+v=^Dvrk8p&5jw;<`Dyoued6uV`mqHxdYI1*r|C$pu0f>ly&_fUp4oh+Sc^izFDXQP zJOf2L7-2pb1@EPwdIgI1wPz((AWT04pJBO&j^E_`e00(0s3&KE%$YEc&oEb}>m~-} za}C}v0@72}(i^-wiGzPDq7CEw4J&AL7c=7YsO(FYY;%APtUHp$j zUSl>`S)lD9zq~27eTTKZPxNyi7bbp7CxP#u#Mt1_S~_xM-|t(`hSj;?QgMGTRRqWN z-CrBhu%yV?*F7NL{bK71@)CTCT+++_nxB6k{U@aUA&%p`#p=15r7zk$dnTug|JBgV zzArFA6Mb9eI4}3rHZ(6bcGe2uwT&I6{R{^L8tj*6)RzJ$xh+PCcp%7S( z%>v(*H)) zTz(c3>-WR-v`mX$;^E~T1a)wfd9M_>^eS}MGTlMk<}w%^UEQ!yzk3fL>(>dW1W2UT zJtfwk0G_@a9@2Z4u?|Tosi#1ASlxef?Q)mIw}sc3SU^pBxEi`7ZawJ7Jg1&FT(;x{AUd}Y^X%o^tirNJG70W-VEJPU+ET}zwU zHwGI6$86h=A66&>fSC1LJ|KjQ39h4M0S52qFP_XE4<%~DCb$fP!N?Chyc-W$6d*~e zkGu^$nc4DJztGwRf@cW|J;V^)%QV0U;(L*}!@z{QLXiK6mMS6yAaQ<5AjzRe)ndlrM@EDzY^qjA#za=)#m^v;#q}zwkSU%kgFfx z;|3g6v~a?)qWNh666;-m2?}j|;U`X>v^(Bw4**Y|k?HB;6)U(S@2#*o-)>3MBgw~q zrd?+!9%1fAEUg*Gm^wC$6}En4h=_$nruIszpY)XwjPKH0uyqZD?+XD5s`Ag1Etg2&V@m|I!d`#2*>*OI^@pK+rJ?1L@> zD-Zxb7Gm_VfuBJpPlxyGfzbQXKtdi6(pLet- ziAFf_9kcG%nK4r2{rekpFV<=5u(U0{=7%f7Bllxc@PKp(THdHSIH)c-3RsV;SFW5g zD^KrlT5umOOy?9rt(l`oDV;|^S5xrttdy1PL%hW<#NlE;&TGq8@?h4;S4j0 z)Q`KngqZUqV3NKwb9T;64=YasjLGf?Za_~g>f-bUN@L`N?n8R^4bWw4N-mxv$}r{} zC*TH7Vt0+8U6E!3y-@L$wzL&}awonb4Un4byKk6E2dkQ@@bsafr2>JA9Sj;AP6jxc zUi#1Tz`elk{6gOCEFheeSAU6H08jzap*I|O7fS*=Fa|DxhcaH4^Ac+yRp|kWVc9J+ zyU{iu{?qM#;j>M&rR~t|8?5uJhz1(&Gp#8xZuuEpR4xJ?)!2Tr)8bM;JeMO zTlx;VK;^&!{reC<-;Z0$d-h(X&v+LU)||E=1TF2CfHe^y-_M>u&v!;Siva}oEHUv(h*03kFtjrWerU0ooFc-Xmg&LUP3Tm3X0JInz`mPHRd0n{L(yzEeR%4h~ZxMbMzQ;c> zPReIU!eUa70LD>#TThQ8V1DWVX#@s+Movx<0)Nr#6&1;5Cm{eb_{ER|cuyDhfTx$2 z89ceQb&{YHsIn-+X5@cyl}sWzAQx7FTRo!?G1|fv17qD5KOQ;#T{LbvY27v_J7t;5 zz*qA+D9)1_bP?}fU3X2P3y8L`Er~>HJf46Sy+xjbMD=r^-?PPLVV_O4r)Fn2NUH)} zS_f+=G-Wc+h)bk`rf*^4_=eW!u@w*&&A{mmj{&Gop(DDo<_heDg*Cif;Hd6qw}{cKw!Hr)!9@OQ z7}VF6Pk6nUoSwjYY;l6LJ|HfXrtv*4EjFcXusXb#?lhP<>~WfL+3$Vt@rWF1Q*3`z z0Yqyt>PI0X5#G)k1l6Z-x!v>n>MT9#@s}j84Zi|-wjZa+j*s6?)tF~v(#uz0tdf8I zDtbp74q?h28LcYijOAMeg4`^F1F?V}u}sU~3x7S_)v zX-oLGyH&-O$?~MyI?lCg|K9DrGw9YCu-7jiBdJ&Dr^{^=0AUZ5%A3@G{g}XHk`6J+ zq?MZsCPQ~@;M{m3%T@c0508Z`?A9zxZNdN%3w84Cbd?okcWED~te=Awy?Nrl< zMCJ3@6e<(ymbfk}P>mA;Qsy^%!}Hc!0|>umnoPdu`a8)EK_6~F1gc?KWg+e~{7U7G^{TKWF8MBBET!FIR0(gJx$% z&E2lhG8k?haYqDig~dN@eoQ{Mkj~@#}oB zw(g zP$7E&WYE5@EZdD}>u=z0beGO3asV( zM6_&I#cs?kX8c%HYhIr^LbN`TvO3)zs>~DKy!Gw=?8vpq&KduTx4Pe514d(#2EVvuUQiE#_n3lfm9zuS;0jvg- z0l3!uaxf-D>(yFv)vg^aI>vTgFw9H2NuR$3FRb2o(k+Dif zDxSo}t-KDvTqWFOsAef%*DdIKdUIEl(@;D|Q@cY!%+g#cC#c!M()USvIsLKo#d_;z znUx%Ab?3Qn9~&tlqm-!H#R|K`dJY|n`{s)TiDi_OahZ^r`E8z=^!)izQwCRQF9O&+ z&vNqrV(rc2scQds@!dSzl?P?>;*P{_GC~Nfa^H(y zYT)a(!O6Z4hkXn8g+I3R*VPJF%A%WxR7@@}tA&zUqS>3j0T!Bm%jN;mEZDK&-llyP za4DtEF17ox3TJv2zDBX}Tvs-N!DiEM$LCzbw~1c*dy6p&_3OExP0SlLBKV@=f>P4{ z*!x0rgB=tso)d=-UFT+VI1=~yJ6GRw14C{gQ%-O1iqH6yk7a#pUKt5axL7n#huq3O zDVr1#EFCNB3IF+5Pg4JMvMHQ&=_}tn15BOf+z5U~>nN|n+>r{9tcVj)OI9sD_ch`; zrxvy!6Obq*dN~xC9p#UYj8uS-E7H5gKUs>sMG;j=4}Lt&519KF&q;&qm3hLS4RWuE zeVd&Q=4<@inY&r`c;KSQstJm^v?Uvhu z+iW$ar8XQQ@tLEOBNv|28dTDA`<95$P&c^>*`D6*AX~tV52Q~Xffx97(D1H%(9N;& z68qV@pO!1?2Bmo!7x()w5ci+glM-{#%W^%DV?4~FOSci9zA@z`+XyLSDm)z^hQmJo zyvJeZslMBv6%*isp!JX|AZkJ>N*(R&*x$FF7r?sph-{|6e5vRvD$h$Z9H$8ft*QGV zWP5&A{IZSBq~$O0Sn9(sM6Vp=6=Bq09ZnXemf&pPNPd$S#slGwX<>s&H0{Kth+Cmaz1 zWzDDYa>EaLjlZxB40RPvO?JGG2<%%RZl_dLw2*$6)^j3DXL`Td!jq#%7zamKRSf#& zJc6-gh>(gPvuoU`Sy?~vBceNZ`f#=1ah?`}V7!Qc3ZG)0+`K)`GH|b{JT!ER&l}%- zdi-|plws(s_ms_S!~whF(kY$x0$DIAhSP@Wq)ZDi2;u(j0kb>=Ox6`VvPEXl^+^d} zrKE;R@x{&4QB0hoGa=;%dirln;>TR#4TMwhQjRL#J>^LCbva{gZvFtFIJe)x_)|~5 zn9lP~PPz=Q06gW}XMv=ip``Q58HZWE1Gb6~jEZ*OaMuU0#_nG4hT-AYJhCpDc(&*0 zl&Pve0ZGcTY`Y#eyV)J)29I8yQUvtjCCGLAcYkldnA07dh{<(BL>|!&ifc+e02{7y zU!C?Ex^Z-LKgBW#L<{N(_%7mYcOm59=eDBLOIA%WSkCDm-$8Jluk(YOWBN)QDd<55 zP=Dt6@cltZ;(d|ca?Jg+rIl3>*!8N4-QlN2g60ZDt=**oTME`Q&`KVNmlD%9*LKQb za3FNWzG?HmgxuT~X>{u1G-_)m=R2szWPEW@#XRL1A{s_mHoSBHXm&TOw=U+NjFpm= zw>tbtIqEKryC;NAzylZ0f+q5uyFDk#WKzJIsJN8r_LG}0Enn$?$P9mjavrf{J(t1B`k4;O) zr+!Tdb?3)3`=AO^UK3l2HBm6L>t!yJ=`xEse*&t%+fwRAmvEF^r?yac?`C1pLDb;9 zZxB!|vAQ1k;02Auk+PDJORshj=qj0T>|nO*Pw!_P#kE<1UtW!A zYN4+26|86j6>T$Rm`x<89Eh0|=4QwOMd5lP5bJ_!g5<=-VQ}f{LCi1>Nj=m>Nw;F# zb&zb-)w3!))yC5s5ChIfB#XEuaf&2H{)Gn=_p*4WhN3s^4`ylXuU zOuJ8g_gWCgr}$y&>NlAQ`%I*tTtt(L^L=_l0MMtG&>ygsEb62=tFpI&*w=Nor-nhl z0|f8tJFPQOC11OEi0@bS7b5YtFt51~MFjG8an}OGIk@rvkHqBve>=Mc;>}dhoQNim z>8j}HgiP>w{rz{svuB(8%cGbDHf%L`jeIC(^?OK%u47 zM^QjsU%%f$*n$LE0mt-3Yy0Ve*ASiYX8kw;z(qZ~kOk0ENJFw`u3!f&gk(G4&L;c& z{!_N6lF#YR>eq(a5~Bv@Q4|KrK6YIV?7L1fgAN-ld`ddk_#I0xegtsz?c0kIcc*Hh zvs_cSd!}tU&w!55jInM@BQPEQL;Wu2y;faE8l5+pd)vGDc(uwT;&}Icp z0_dVHu2wz!huPkp!=^9DBCVO(w%Z8i zU+*OSi4B|NJq&>R76qrnYF?S2{WnU03|k=F4ne$J*3=&cmToYxN$lG7ZKl&K_vR9| z#lU*R4-Cn$wr82{+qH`ykk4RjB!H?KM#DREBlGS2TO1^YCOiCXp?H_Ov@7G%9$|pM zQW6h8rk2k0z%kcMh^B;%vF;V7v0Vwk* z64D;CSuzui#u9t>m<-T5A0|&yn~35a7PwR{zfwxxe59yvYb4IF@>M-%UiSM(479l$ z)BDLoB=0!1H?&py9DaEsFhXtz`L1)3_8OQP4geROZQ8>k#dO7V?&d-$4f~R5K4Y;C z<(AZ}3~yaO{b^^_v|BsABsn~px}O@@xTQ+;>(GImMaarE9KdWY+*Zq31g3Noq~9DWYfxnFP7dtw@NC&q0b(W&^%_2)F(NW#Gt()K+Z3dPN{-YLtGa;JJA2Bt?rRV zGIwVA5JC=6?bRP)lkGa|+W8}9GSsr=CUVj^#NabJ)S8s&;MGgmcvr$glp|FYBX$fk z^1*{OR{m@zwj>Y*Pm)Am1!1dR7;bCLF^_R6Xc`405Z;uKrEHO8ThP-A#EM~b+U7&a z9QayK8ib7`KQ}a(AzdrdUvL|=6K797(0Y33j*Z&8fTyGa^oUbyLt5p!b?eCCsRl5s zLgfOGg&R&+6s8W0mpmkA6Gn3DgL5kWwr8*o#63oQ_3D-&ID4ohm;f*z41bc;Vfa(1 z4hY`9eY@b&`5^zeygrvUi=yPj#PoPNax%7%%S=1~2Tp`%HRCx`@^M5&rad2D+*i&z zmJp-;@%uTp6Qp0A+r)GH**KWFhGc*-mqAth@M}tqkKxnXz)#7x8T;``8-c>dj~|Dd z=bzU?vAzD?yBh`&UQ2ISZb+lZ8tBar#*s}=J6C*o(};g?6Q`ap4+k{==NGc&28W4& zw|Lb2^5tdlU2>;t+S-z2FCsaR+)O=F65*{I_w{Jr4%W+_Z%asjD|x0pd+qfOHp(V| z>o$JtT2bhSUticN%DOW=v*2fk^1Pp@>{!cu%t5m0#fWyN%(6*gz8-H#%U+^ILw{nu z%>wyf^CB-2(Die9a$N2nt?ox0TV9u!F`44=B(l{hXAKPOJ1>yV1-D-&9LnIrwtUxa z=+sT@@rNv$GlWm?emXp=!Vp3Ewxj6odhv_IcJpP8;1=nTlpno1n~8LeCVOeN;Aayz zaUVLqmy+5b#^tH`_5$e|m6i6^M0dAl+mUi?FDer2jRAoP%<5CLN45?O%H&JUMo}Of zah{1{))~Tjo+Pi?ixlQA#(RrbCGVXL0;PQslD0O7*V zr70IMw)OC*$iWV;{BQ|_jCVC#z3A`S57()n_0nF$kGFmFB%6W!SX%AiKa|eLm za{Tn0$~--P$k--j3Ey8G6ciLL>a3>%wjMc-cWNb(4G?dOLX}QQl4-7oV6Pmj8l&Nyvo`k4n_8U; z8b;e!bkh>JG~pk#JKNMs=3*bhHj%Q{zhvO?X6uNBaZ%bNP8l9&JO{5C`%jE6Iqj-s zCqq-77ur?HnjuR-iWgy=FY5)roJm7^DDYFTjp8N_e6V=J3kct!iHU1!GYpcn?8()d zmX`i$Auv`*vGo7-PWFflk}v9XhMS(p5K-zogI6e2Ry+eMfz`I>Py`RUvY%)DrcL8T zLH?nd?Asr!mSYxdeXP3Cci?Vp?m11u#i2W1RkH<2BJgmp25&%vk}CU10v%~8`TsZ{ z(=sfQ!Ns$03Hyj;tM480W-`S0q%VT+fDS|Qb}=i1Y{uxi2Q1~&v-M7CM3v2mgKYRI z>mPj%4A)K6hR)uHC$r~M^5)1O6HaStu6-01mX1tK6sz+0Q0Qb;W#w5Y@+OI%_$|#k zHa2{tvS*O|B<+Q>)1gVbC6q4SV9$A!`tI@|k@)Z_%cj($4DS*sAt(H?ToYD(jvOOe zt9vuIu2}~7H-z8nc>w$sWe)(oMTcBi746!!`nZ@FsJrdXb{gsMVK_n%tj}Z9wn)R0 zs)xsq9=#okYS5enrC+%HQaZ-|vKhY$@Qm|x zcStusj8|1%0p;#E1jLqyK{$`yR5e;1n$(9t2(~1%P$CAT&}KBGnQ&) z@jVrV9I=P7z0LzEOcP5>RmI@u&Uo6a*D)W;<5MiHov$v^J`*aV=|uhyhj|J`llm!d zlby4Bw^hks*h}j+j4jA@DRO_$^>;Vg-=o~~iz6UP zpoAn2n$D%?%C&s!rxG~<9VLh<7x1|azxCnxtL7*_XO$k>(5JuMWP3Ao=r<|g7r|_b zXxdgNpt9{P#D|_&zOLAB?Ai@6z|oohPgwq!kdf6b?>x=B&GIvWT6_mt_2LOX57O(^Z|TNQZ4sCl zkY;R+VDM#olV}aMs_fr=yxy(-s5B7*bN4+`2^`_ZmW7$*qk`6+ zG>-FXGu`72)Q|=$P1dHP8m!VP1kp9UEn!NZ{u&;XL}ekwBT_qTnD5S7{9Tz?Y{M$g zmvFnVzmtgpjG7jiOgeC+RIJWXhub$jI6{WFS8bAU+VvS8p6tj64v|6b_3Q7$|1g(brZLixLp5_V3)L0P5b%eO?47hK z@+jt`E;K$%%ipwn$M)<@wO^BzboiwQR9Vq(J854zA2Z=Bd1|&l*lGP- z+Agc5rxS^=Npg~WX(GNjLe6qRmC2UCMJ7m~dT$E6x-vNQzXYn$KXB>g2u?y4eM?VO zgp{1*hxkUr^mJ;6h~cM&qZKO!lP?-fZ7t9_F!kNp*D1oQVI;r&ZGX=>cgJ+iifTr3 z&VYY`eeRvsB&MK!O4lSX<=BNV8XEvEjHV`MRf&JmdX4_t-kAFTA5kh5+hKznb!dAxIMAW%3ENGU${i>$t zO{GO04~`8SL!71}=C~0TilqD(zs-)FX1eG5iZ#q%J$qCuex!d;8zSs;7zFtNQqqw+^^QxTjkqoDc1VsjWgKv%y?RaiW3M!V zS=dD6S;?re=HOZQQ4dnW+SgI#Zl7V@4BG^Khwa{B}Dsii(5K zIGxkNoE@!5wP@HmU=`^j?=L&?2x80?a|IfKFPCbi(u^sT>@6q~kP@7~36E<rDI6xS!9A4RS%Mr&lG%Ncg#ZzG)wkzVB$&Vnm$@Eucn89P6p7AZIaxj_T%S;l4>Q zylr&e4Gyk@iG6(`&|2mNc8YP36>oq1iAhDU81~vIGf=fd6iZW6aM7Yg*VvUD*>7+23l*6gDA#w~eog8OkFLv9sr{f6=LU75Qe{;wy#@V$2LQ zQf=Hp!F&+2Si+%lB~;};cJns9g*AGVHS8yZ0?{dNJ8{dseWIAqQdGpbDk_4$6f!Yl z>?tec_-L~!?$jA8Sj*pZmC&jK`pXprT#B!!i2=*L1=_)%uO&Qww+3xT+NV$RBML`b z4Jo;dj4Jsk6{&=5m+`m&9#AvoF^SpJthyRCADQ$MZ59?mKgDS~5UbU0bj0?fz9<<~ z3j#)5=T()((Q_RNK~c`myJANdP`U~v%_>V_`F;g{T3(WH^EWNJ^TBV_f5>u#>21Cu z=N9yQx4I@5w;iXUt37olG}HasQH6$15sPtpO&K!9M}KF z!9^4W-UAMO4{o0&o+O*!Zg!KoTk|*7E_-%%T~eUWchSQMb>h~@jzCR$ zV1q($t-G|muW8Oq_pw383Uj8-jWU*wq#?*f1ULG%P03FwfCvKa7^z=pl4JCo+una~ zAS}ObCSO~|Wj%H!PMWd}<5>#NFR2&NHza1mXj_p5@o;*|D!YqGIl+BJAmFcnewAcZ zwrv6kXIy zmakZ`08RJTQc9+ykzFJolAScc`#|N(2CKaU%IHCNC+QFknxKDSZ{IrkzAZUE+CnQla>xv~wGC|`e%{^{-6 z)QCULQg%Z3M--LZk!Gh#Je5+v^gT_>3Pdi?Hhr^POpg&gr%kwk zjrU;~$ej_32mCZGI*TQvunWZb+N;nKj^av%oO^ICTJ@fzc!1;;q;PT34ZWzNOWFSHVxlS;N&g`M3(F5W{rW7AgGMN^Ik(N#m&Pe$DKA zY!?1Sdd0DUp-$16{WPg`t`~Dr`N(J@0f~{#=*&SY7C+)kYuN;C{39RXN!yMO-rR)O zDwnZOQUejF@}8r))sTbz*WR(?oK#i%NITL$NQ;UPv%P`jf5+CVUMY>(%?k21f*gUF zYJ_Z)b@rE)d>WFTwFO785gps7Q2c=V)9~)S3w~lwW+cyc&u$ph*VX-ton+7Sm(=46 ziZ0g=K^_G;n}&_=7w%lZcK(RRbOqI?wAxU{{D)sz(>5Fo3SR?Lj_vN5DUDBMXLF$~oYLvRx{Q=%~))_C9gJwCp{n~hRRHC$&<+x<-vjL$Q6$$!E!WA1K`jAgIK zF|V3aPLk<9C>Q4NxV>sQdBt$C0aIq*zE?ZtZC(;kUN#267k0qp{U}UfdbUzZN zEMpJ$1a4DXTw9%te;08y)z<@UbC@?7a?SPC#aDD3q)Bata>(G<+=2Kju`;Sfj>U+!9(>JpRN2q7kCT^j zzod3qW-JGw^vNFM@uct`+DifNWp|#tM44zZC6O8F#g2v-ltxn52lKXc)jhe#D{D^d zCT$JrzL4t6i0z=7o=$5^G4`4`Nz)<@nuSe2BedkCXXMxUE=rA>dhxSzx~nYky1{nV zomRzpKe11fi^j6bkDGMD$(j+KDmEe$mtfYJ$ouOHd{V2nye5hKWj1IbXdyeWOB7hm zsirFDfrr^CSn`y@II_LC6p`*?$gsAA{ zs-?DrRnJsj3Ec0kFkx)=LiW0y(Kb0>D1?YV=}tz|*qwPHjg4(R-E86Gtfj|aWk~I1 z9FN78_>#*otyg_u*dHacmd~{9J9lQ(Mn#Ojd~=n|ihh6Z1@fO_rBh_49lBTt5E^a^}WXUs_v5;mRB{`nt4a?j!vAmQ%v#Ux`oW@nYTswPP)6xSuB&soJU* z0mwmsh^xmr#z1vF+N3k4lXUjaVbLf}ChuJ-pnB3nf@i|?(fG^s6gM)jFEn}ks`YHY z7PmpRZIP|D%MUHySN|ZyRWMXAL+j<@)krYKm^gNH7*aebu zx$N2D5vMSU!Dp@OTU&pX)y0qrZlpyFd!EH~9&%*Fm*_ADf_@wGZ}fAy#xvCoJ!{;i zT5`-Nu^YDGH%RCab+&`cU9#m{CY_n6WoWolSpI9;?&?k$72`B86JYDBTd-lNj#mC;2X3yF!d_L+1(e|d4nyZFwz zcKG{Y`|{=}P4T(ZioeAd{ArT+{B`)hKs{uMhrIp2w1fVq^ptH#ae>b-n#rfp(|IxX z_6J%T9K=NQLV$Ab%dxp%I=`r4g+i6g*xml3CtQY3Z(V*oHfwb&4c(2v1?wGDZpg13 zChMnocURNViEqS4bIzgewyH?lN9@64Gq3go8s z!&G?g!-dgk>BoSQin*o-(2N|BZqqJ@M}e32^lAGX@J5oEyy^P&FN%b-E;9_p!8>2x0f~7HcY{Vg5fWSD!F8BeevRoxfcq>Z1X8=y%iI} z!+Bvaub3`AjSLs~#FPZreDBlVz$0y6>e3q(@-i{;yhD^nE)>~eog zJ1e8!fX*DS(QjuCIwt-xk^GKR%*LACtkmA|k~ertk9;ki{^Np`2VV$&*$0PSU9GOC zt9u_^rw6Wfd=QhZhq?y&J18@t#kMwTrJc%!3(uHiP`~Z&Gma0;wlt@q{w00c-lNbl zLpD->ACIf`J-VeEbN44_p3`o_$M)S-!FLyp&;N`*+dFqqb;}xc>bqLoX_WnsWty03 zs%JqdI{wSo!9w#{w_hVOHo+18x806Vk*l=)3kq>b@-Z_%q|nqhYAZ;>lVWZ7)xu?Z zUARq+8U2-dX08h?%KkR?Z=j{6et%Tz@Eapsy6!BB{&TlsHmiT3Nu)$EW@%v@7_SmA zmp&nP3GShS#w&TqzCHPq*GvgDbQ?K(@Rg3$cegeKMfKnV|9OJ;$dUvdO*a!BmucI` zF77u5eYCmXC|re_5-!!S^eTN^Dm+N8Ddql6^LRmw>F*pT!3BWlfvR3rQ4s~clEF#FkVV}cRO3pdqoCgU<#h(q&{N~@$sr#osgU>0d6>#V}H46$YcLBhhF&+_k)%`Gm(j>7Uo6D z{XRH0awB#EY!V^k(!%)l-IAky_cbT_X~@Oe%;_Qj??lV(2lRJ zrPY06b#ImYV^w8=fMHQNW(1Y#-}?3s>`FW8l$_(>>;w0f&!4?)Cw}Q|N&Bl>&4V*= zq(+SuW;Mb_4CmDIu%`U^-k5o;T;+bLou$XF;K~iUoUcTw*sr;+w)0wjT|{&G29RuA zvpRMSUuPn{qk$7_<^9n96v14dD5IORacCxl9i*G|Tv+}m$(s%58t3e(6&v{J{A;JC z_E)D4>-ct#pLlJ)q-W)-%-9m`6vPr{!QwdHKL(*N4lOgkC&Jm;^(Gu;c%|0KGfl`e zzOEa>I3Vsr_{vEFZIllD|Jr)VDr|E1if4%JW z$W$+*@KNi{lK93-o@yH`t7szNU>2BAa8!Gp-Jk1eYp+|sVZ&9{;5iASiG_Iy38MFv z1V!2Pv={F3W>I%iXXw$6}Fa{ zsKfI_NzcMR!uQcX{eYGTMYJ*T?}&n?5P7WH zOnVxBy+?cXpYf(pEGwIi!3UX;Q^nw_pFVwmq&<6+yvEz(-OoJg4~Qs>$!ccr-@9+$ zMT3p8B1^W7=h+A?`Dfocf4ivYD0bu5D|RCkCPN8S5YKjk$9)HUSxA|eIIO#co|Cnl zoG144)Iag^5f_;F$ekS1BwyJs_j~Ks5t<8#Nv-Xwwj@4!zKZAKEwSCl(iXv}?5?WeXIPKTZzui|AibA!* zmHmU>uQNJ??YhINYcJHc$ye$cexleGJO0S{x5K?~IUJ>?&jZ%#42H>*d0lzb=-=Ho zKD`?h9w!91oV}6x&1`!eSp*8*F8PW2d`sXmX0;!j4gmwVz0(9U&MP#Ud1YQSLy~rvD70^W;BU7n* z3a=)K6aELVEJvJXUoAgvKFTKab4LqFhY+2Su6aM$6 zxSz~J7Q+m^s1{goz(}Q8&&vOXY{0(`lxQ>;)$Pl@UM>Co5tHCV7)JrYrJ8Rp(x4Vh z(5cPs-XvN{jLK*i9~k-ooYvE0#Ddb}5NBBS5XYyPvXwb$;Gaz152dLVUz3zmDYQO} z@{^Cx^5mM=TAG?LAR|EF9wK_AX5{H#h-p7ol??#9{4G{l6p%R!36N>kaTDvm%a3%M zHpeFy2oKPvUyfvve@UH_;?7r+UrDbOu{E=vHD{s5;{S6u7rnDhm)|eqAOCdR&MvLL ztaW9O7gu{JQW?%OpH%SkziuWQ<^0Fm93`#IP}iL0`E&m>0rw*P+5G#|0tY?6vRP!e z+;*?ZLV`hxZ~p&>eKek>mXH{~b{Y9`oQdng1_s-ffIC|Ss%vVt$TNG@K!>c17^2`~ z{SFW#1D7F82LHX)Tj5OI;`A+gV_p8cRznS|bsc*EydS-#f7}0E@zZvfp#01i|Cg^{ zpH@^vpdBjXTI4B)a2Gv9&K&-(X0n5AeBl0$K0j^u zzlLwP)Hwd=Tr`Jg7XNPt8vNhPDB14ZWPJ|3hI6<3`TN`e9-X_HaQ(9i|7Re@S*tib z;k+ck&RPKTUO&Wa8xmu_4&O@myg7e`4nj2zN*Epq=-ApXU+t`aZ7aG z4%UmncWOCtal*ML?LmI=+Fq_;H7p_HZUB%d)ZcWz>?T%|)9hn%bO4Aoj3(n4{uK$i z6!b-!Ub}WpZ{+xyqmd9;vMRz1yik>aRR1-e@w6xGm}_r7=xB-tc?m1_hB|k=ym%z0 zL&rr<`b~Pe>8BGH0d2s&%dWG~v1u-fNKH-k%uvu%KF%CdDc^x}yzk@V6 zoNkt17e#_eb|Lo3Cxj3PZ%Gp#x)z)N+}3%c1YJI<9iWqL@K7HVRpr%BwDI(!RkXV>1o z$jWMD9SBfb|2QDPLn6*Y&UGRoV9M0gbl&($nhUQr*NfVZ^EIsc7dzbjY4E(;;d@op zAD~^H!gbPO6}nhDvGL27?paW}(80D}NBY!5Br#Ky8Us{?(#00o?VNYyqICvsA203I zAA*cR7a&v{bBK`-A8wJnzrZFMT$>*XLkhSf=Jy*94SCGt15(aAK~n-wZ-(Pn$wjrS zgT3up@k}SxkMot=7bu-M@c4=MLjKIyt!_9~(si_|aQ*r+cvYOyqkExYyBk+n9*}C0 z=k}KmtX(|)M$O}!LrDa_U3B~?XXjrE8I8j$BhfHn`SY3-7|vab)n-;kVwP;tq3Bx; zMf_Gt?SIHy!Ny>pS1JZ$PeK!66+b;;-mYDSROZuqJs07{$=MbE%$}DQ&q|Dm(}r_8 z-^q8ci%YgGj?aqCNk;8wzn>xj-XPBWlbt5>L|UOwvz`MfAs z?_1vMo60|BlofYY2{vz|~O+FGrJ66s6)OV!^R+uEwb!uuI| zi{vjg&6(=_xFvt-2bMfJXDR%F*pn24m$UWtV0tUe3=KwQ6ih|9je0wb_h}iA)Y$FX z(2zWr+A5W;tYh<-PHl3&z^fs`U#)Z9>B~Ap8Jpy>;fj$E6((QnPnr^&$&7b&NiJ9i z{P-4nIDO|BQR5|l$2O#FMO%VbuUl<+8m!N;&Y7UziOHEM#4zo{e?ke**65vfHlsJB zq)_bXu8q|=W*qmJ4@)|n>Nf=6FuVs%J|=toHKI>B&xG2=5>k18e4+b{+G;L`C`oxs zr^Jl6r?8gkn}|a1TeM2cg~Z1?Bx@+e3zm4yo%fZ#!Tn6a2yp$H-4oT7axm_ zi<1Zr6yE2Yy)Xu7tb0S_mg_YJK)&Y8E+pQiPS{|Dkf)(AsNotRGhDd9Fxm*}an)bG zT&TLW>yXvqUrRhnjmeGoMM8qA1v+g+ap1>{5`_S`{X=Ji8y* zucF*9-yah`ZB7-evHG65^*o!*uqPS_*}tUiv4BxfmprE_njGTUeV9o5bEfAZ8SuKz zsdE)6#e{Ay=Wo}S0D`A#a{0h1W8)WOUtE#!SItAuv2(M2*szL~K9a@hfA$wy>hi6r znpa%$Arg;(nbqwl)pjMHxlKqY0jWu30)E#8W!gR?^hmxa?AaI3pI1P@#LSG?KL((8 z9j}_$?J@P4YQE&)BS4FG8sYVViS*=b-WTcVTJRB4Og${h5SA|clMzH%`d|0{XPG!w zfFES;HXPDm==y05J5XGKATnw%V1oTTa84y-`iB&K!!CCDAmygakcSV~d;hnnDLH@Q z3AuNXsvZx6gLmd8WACbUk5hUf$wH|*3Nbt@4e}WSBVo?CBo+X7p@S}6j`>?7{`Kq6 z)tjVbz23b$++U+6pAI}gA}~^*IB(Zn{ZEA9X;l?2JDS_hJcUHVRtU}IimzRM0!gab zK}UKZti&bXA;@$5Fr_6=47L7lwn)}PD)-t)Bz+kLI1j4p$cgT6q3%((WUd)~tXBK~ z4ZsTb0g(ejgoy<1Z4NC+GQg}{s_I6C0VFz8FFd5)X8-<$K}e$|VN9yr2kn|WX@hnV zfk@)sJ+R+SU;N+5X=0>=uL1!?FsD9+xXl&2 z`Uf>BWOdQ)1-z7ah&a`-eqBzi6UcVd)zt+6`IBPm{(JHR;Geh-bgAp#RYksB*vquZ zjG%x30$B-ZX<+~ZKc_Am!>0F%6a{^f<_@j_Kg;<8A1{CoV6Jh@!7DvhSNNLCDeiy8 zo<;4x6<){N>11xyaPW6_mHR2O@{YFNW*_--^2-X5g)u=tuLuiipt45J!cdh&q_w+I zOB%&my6v3l}cEAsALtV3IKKs^yfg%eM3-_e5^4w6=d>hwDF@JYvYKZ+Q*eX@{5F_N7qckr}^3{OEqkDAT zFo$P-=SnPWywdoxnwEsRpK;ufC&N1Fx1gAqv7clU_am?rbrC>bHJuIdcjqu2o*74a zQ!a_P*lEY4-T8Aj>nc;+ktEY`XJnAbIL*>E<}D#*1Js~3GS=4eBK}}0$OygFT)pl! zD7Sq3?DeM!dySiK6%#6)+;h`&h(ADc%)>T7HDaXPeI2U7BC ziBJbJ+6KBwHyf>y-+-k}#mC~>wAyQnd^_8_8o4ga>KM7qKIJicdLf5Rb0b5jybv+4 z&b#r5e!Bj8VqA)q&C0c7ic9U?Ybp_%7!`FCK@|iYP*Lu;E~~z9<;t!|?RgIN_DXPU zQ|ja^CD2R+EwGG`S@xzM>t0uch^yGx3|(XCh+(3LZaWqF7YEH#QITA`cyPt^^MP(i z@SxuV%r*_>{HbS&-Tk1ihOYemYWXyDCXn(6P8;DLQ%*@62(BG#ktMZ0xU;>J-`W{gcpElM;{H`&|( z{#)#vjdJax#x4^(N!9#$7<;lQZ*o-_$AZ0O!fTf|8(9W#Wc2w(_IiAqZFwQ&DP8fc zyC3QIgITPnMdTz>p2w5LYG94?rC+XD#^1w_s`UeV>BND zMyR;jZe`%|tH@oyqK`u_XZ*c7WaqgDDj_?|s%R`bcJ@RY`;7OA%O2$Xg$p_maU*R1 z)x!{uCiQKMFeMlQcM0X%f-#b2&+9!2Xcemm%?#7K1%oaoo;SUB#MMU8&-H7dgt#Gr zH2ivuC1%U@ks-ek@pt3&`eY*JBLNat8a@M~3_4lWz{H{Ba z^xXyU#TeDC0ZQbhxVG*sv_Hv6Q!#Hh)}uRnG2x=gjngrw9f@n3ebPGkIvgGO{omf+ zg!;{Zn(;}EPQ#NP_9dguncrm}3_n6u zKC9rjM%QZP&hi8L@ntk1wXTHw`TKyf&Rpoq3^te1|43tYks^uk?K^#=#JMp}-SrJd~c+ z1<9=K{c*JMV`E{CZ6lfl*`ian=&hf}7sxhZWlgLZFb{c)9iX;RCuKbmRAFL1>+2Lv z#IpDWlH3Iniu1kIqVlzgIMsiaNQ3x-23j$l89Z7ZQuJq_S;uh=a4-X%K?|)F|ez# zed7SI930BqB0u|`ZEHw{)>yZr;vgFrQApQ~LJi5^~40eIXB^Vsl&YvlU425ZnKqnyU;5i^&=P=JZ~% z^CM0MXkoud8&}R4c`E;LqOc}=k5&<&b!4d-FX|`QRz5N;pExEEP>87|YDRockzt_Z zvb91kf0W@X^NWjYQ3D^r0k^5wDUGjYZgZ8;%Tk8!mQ2xN!b@m2HZ~+H*B}jIY3TJZ zPi7-8@BK36zr11aCs1U>)UGv`^xKX=b_ zV`lG>NYW2%k3hq@7y$wX3@1HzmC6>jD!N6vjmm?Sp_4YIPwo-;wchPsE?*In{h7>pwd*oGaR%p)nAa7t(OHS5)+zLL%NM;E2^%Tr>)!`j zQq&)=t%-c`;t1>7AYW8>>^g=S=@6SI76U1gj)47F3GFHKc<;}julcx^F9HZ4=~&G1 z=gj_GeEVu`3i<8lz&&vtk+Ew<8JOh&ZYc@(>}&JrxI1JbT!1uY+QoN?LS4^JE1}>U z$7=^STJZa~muuGKd|}1+rISZlIafd3;&<=fS+Yy78){U+NJv!-(FoU0uVGXt5Zyd< zle3xq#gQ)XK6_ORK+mj6bkb^$j{-(@Ho0IXjyZ)`e1d**o5Cex#+pV+zo4>=KRq)Y zLZ(o^KERkpziRV_t6{WTp(9~>6M!ynAt{|tN0f6=fKnp)Vw&0;#(8UP%_5zF>*+>P@+JJ@-fy{hflEsR}kvk@f`% zKMS}$$NXs^*aK6O5`seV$BxNgCp(C?MpRWGUT{O#Vlxz|T5A#l2W^8hX=pR=>Hi>j zZhR<&Wp-9LC{^_?4W~r|{=jV2%9V}&FTTWtQBcm97(<`&S)uO$lBcz~Po5(WSy8cT zx+fx&-s3iiApLA01yF0UG`*c%ZvQlfVx&lMsFkZ$ZEzmiDJcG2efG4fBF|N@COxAfxqVf(BrJ_sn?zwGFn}tr^Xo{ubYucMUxx}0uQQsqE2rwMaALHPllkv)^__ki@l#de$%Sb(dw@8?flyZVQff~TDs@fkYQ{#cy%m9nwp_jm&ArNz)q*Bq!o z4yV3NJ`AT~5@f4J^9Ka4XE-di*U+f>+uuPWo>r^a+O>%idUFsFU~xxMiQeK(UR6Qx z%oc=YE_A5J45B4$xizGf#$q-Ss0Extj!rtKnn!s(I2A25 zTd=J1W_AxaEj}Iy)f_F^(6ZKyaWGI`V7!G@d3%?~-TdB#pMjj&!Xbt|2#jaf3}QZg zKyW)jt1Kbe*`7YNOCRA3au{@kTfE{E$j2!4HbHS4>ZEN`+5Vs zu4f*UnUqbU!ibq~{?+4kn;3tXsuk@@@Y_#nU&B%y5^ku+i>oHRj{E!Yvq%Td`|W-2 z-<$aT32$3PJmd%avg_~F6!+|tge>I%((7+yHaAh*C62S z+qa&BR!0miY001G=8W|-H6*|{p%;#GKOm0dVMA`mJ%(@c-6=I+^UaaY2%8;Grqy{Y zd4H7guvG7^c$_aL@zOj};0yaU4n zAAF$&n`x`Lv$ON@MUD4HkNBVDxnWR+&i$XtahgwsqrF#V_sUZYr*4jIm+osTN9i&y)(k$}y_2K%*o zOgcMzX2IYKrlWPmGLYM#3UN%4H;GkdBEiXavHtA_1gNh%#-tGfk=5_OT_}6oB4IK; z)#>kNNnelI?KV47LO!KuV6c`wr6N!{Dvs9z00f;(86DGlhbzO-d*sQ&o-MM3gYj%t zoE}0y+N(~I4LR(fV^?iqIoHP+vvTO=S#CjPRWD_VqHg5im&49BfH>ms-#{fMJ zp&jZD770uwne?x+mtSk9wTO6D@1A_!Sb@^GKn%13_GQQM_;BOIEW4I z?%lhM#J)o(hdW2IkP%}{BW=26BrJ4ySoiLLTQQRpRo%8*MVKes=OxIzN|VvIA~spg zgO+4-8Bt(`gu?^nD8Z156T(4pk5<)~&c&k5q=`Z-I#S2qr$OVSDuS_N`eM*r7a(yu zkide-Dc>7Np{&_KY6L9OTvNEmVcor6$*btdoZl@%A}@>uM><5`Lt0Qdob2ySk@(Dt z8n7`R_fK1i4Oqc}%Hp;e4y zt*G4;P#YGhdE>C70cVNtz_WN(ek*Z_hVDrzK~D;W8{{Omxl8+>fC-&f537^I{C=si;BeS$uu4(1so53?@Mc1X5@NL|P;7J2e3JMEAN235NUlVp3QI9?ZTx{A_=|)0(8gR_H5+j2qeI83TfVC=K|Pb=s}Pu z8?9d1z+OR5yIg;;SVX#yFBzb=4IxXWY|H0q_md!%7RE`Xg>on@)Gj9dP|sBd zbUgO!c*flF91L1t8N^q~$uGS5{HW?9wB`2>4rcISWb|J>nDcOejO!zAbfF5-2 zX?bW+_u4mK+7!9(mn}J;3K{7CFYBV3?A>tsveuo|NUd^q>YU|#{vHaVPs-?bO7Yw0 zu4)}i4^m?tRRq4>^!)ikr8S-t$wL$35pF(rNQ|0=wqUL8>}VG>9Z)a|kXU&0P<(WB zbXPW7EJ>hv%9M2jgy1V+*#$_vR>}+w&=i$$-y$Ot*-$snd0 zlAz+`w1}|B^wY1%BMBC$7c7bny(d`s!f@=2Y24ywnpS=WEk$=FiQKEMet?BelDWFc ziG!aBx(m}Cu78PP(PmCTn*}J(8#1bNw zCuRZGfptO>)&#XZ{3Elf0s%2k$$4c_eg$oabHWUnM0A8l&PB!r=`h1I;WdpbvGq{C z1>DFAa;C3x|Rh znj?hL6%~T>eC&aIrX^?lz(n%HD~SJ7EkanmzY)*ZTN3KacC5Z$tbLUWOZ)W>uqdqnV4`rk(aDWH zz$j%q7;i{m!k&T}kTD1%5_TQRH&ZKguv(y=OaN-7M|QZJQ&ITLVyiP|;2;WtFy+!Q zil6HHwLyGW`h4XNrwa8Dq*`dtf2=+a45pmF5qkZ97F# zJDDaRFgeuDRgntwWpw}~ZLVGpUsu<3S?yygetohRJ*KebZ`_x6h0HXZs{|uNe-Rh; z4e|5wOc%-5K~crVp$)8(U!`ls#kA&(`HQhulaq%6q2Io@yZIfOKq^zfWw& zroom>wfWaQQCzf+U3qq&n6}-T!RW4=+;ENG6cq6FQ_a?to^bpMGez;#FAtP$vdl12 zFIAi!aO1PklAZU`Lj9vjZYrEqPw$)&73Ndn9zYZWj&PCo5cYhSmhMq$Ghz`G%&Fk5 z_*^)CS8X3h&vlJmCCTH|#6R?aX2KqGRXzQ{0<;2D}>2 z&ZQr4+|A!79v_6T>mn^RO6=nwayNN}+cXMBi@TIV z#~;WE-pq*ZTgLCeQchoOqMrOdd*|S=K2wM68^f(tE$8(j%bxiNv$bev()YgF*b)#o zeKuX$Y}0fK%ORx6-(l`j>a&Ax92ml~i)j{vh2W(Uf(-mwwhOE0W|CMo5THb^6Ih^WV& z3^}6mPd#WVM3Us^0nDTvG1LLDS`MC{Os&OOVv;CORYgT{bG&0Kx$N% z|5C?)R5$uh$6MF#=C-z6q>*xxZ#+ObYCg6u(TWFeRD_UyGO?7@M&m?>P)rQ1!^S&lFkQY_5pxYgg2_sejx+O(Q@1!Zfadbm2bdHy6i` zz~=D>DKA1?$Vwg(r|Q z2!v5rF+da<6l9(ZU=#?6ue>Kyi>RP35f4#Nd{gWT}-g8dwxo4lfzx#cA`zZO<5W~9CP|t(2ImJW9q?_xze$ONqng;WX zLfaAT1lm4Ilzb@GZq3OLkrw;NnlwLtK*Ycm#WZGaADDbpRr=Hn!}RmClK#yXyIH4STM=TVgY7knunhss>WODUUU&0ZcTy`q|#uxt}T4==K7i5LGIUein zYGbL>uSLP0Fu<{Gp^GQv1m19x-LsxST$cf~gE1u4!~7W3W5~)ldO-8eD>D5Btfgu7 zcd7;42edJ=PD6SyOQA9b3DLXQ_DhEX|K~YJUHk07=j2ArXhXNW=P{fzkTu;-j|Ha{ zGob`q)71#^(lh_PFf1ZfqjA4}fbzi%Hv++9X(`|i#`mVaj;BKPGa7qWzn-2HyfkSb zLnzd&p~<|6`j*AJYww{Gx&wpK6F#+f?TJa4$9YdthLG=?JmRi4rLz1T-;7Dv7bKT# z4A&tad)D2ckRp7SS%>`QV8p_z;tXXv{s`5i_j6JHmSP9Tv?ZD1Mt+qp;LjraUu<(V zKT_82=aANtC_Sxf{QMD9Xg@AqmxOPF@BkC5*nR`LueJtpWFl(XbOumg6%P96gum8M z`9KkhQo>Pv#gLBv!hL^(#sBAJ+H+$El)o*>@c>f~bT&s(<^@wNMK*3;Dt2=Phsm&X zI4?&B6p`rhmQZ>cQ^WTLWl&B%Hk3iMf&}d(yW19!JlL=K)o*rvr+s{)b48|u0L2Rj z0bzA@1;WSZFXJGfGgB{ec@*YoYj0m?whQVTuqNYJTa^r!SD2bG z>@GNey`nd-9((b)QB3WlF@arp(nbm!B=8NJo11BURc3!+!&}1-u$krU#zvGiy zFowM6mnI>sZ-4+l2+Nr>Po3y1la|H6nbpE(Qo+|M&`Vfwkey<+!_1xGNbdjzf3FwB z@rsa8$~GB-yc`e66INu17E}R07+2yP=+Nien})q{c$_+X1`V)RXir9Wwwm~XCx@KC zO8Uz>8p!rpc-U%tYXZ+M`WR|3Z2f-*E?Y@vEOm)l#`iArWaBtIDI%sl(^K zVLeTKnqpteJwv?o%v?5dAOVfy%fA*z@43af!#vO6XZYHb7K4JTLOEWP?WOg8wKQ=9 z@3`>+d|8Mk{c&+X%41HfD@u0?$~37aN@%1ca@29pat)2*hm>)cpypHMKvgQ3V+u;m z&Xkn3mApUEnogC7V*BLo5M(&;lxk_Uw2VcTk0sYVag%^ffxKmL_brrGi*Wdx`=S(H zK1jAIqDz;r2?TkO3%8*?DASgoB(ota|~AxEu-0G}$lh z8gtMDPoLl5bxW#G4Fa#SptxrHXqN5rQ?<*-%x|t*U0du=F`wwsehGbS$9SuhLoBcb zQu?hI?^4g1%i(hf(0g=DQ11$C2`@fFjfBT(<==qxk?EhoQmwm;p{Fk`&7=sJH@PW4HtOyP>n zPHX;QAO{md{RM~E9u+D?P4`cDpR|417V;X}gn;9`07xR|1P#*U3cSxm-;^}ejD_^~ h_wVv%nEn6& From e4b695f26170ecb28b40c609b5c873c69b47d578 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Fri, 21 Aug 2020 23:42:54 +0100 Subject: [PATCH 19/94] stop being invisible --- code/_globalvars/lists/flavor_misc.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/_globalvars/lists/flavor_misc.dm b/code/_globalvars/lists/flavor_misc.dm index 7ac77e4bb7..71c2b2e13b 100644 --- a/code/_globalvars/lists/flavor_misc.dm +++ b/code/_globalvars/lists/flavor_misc.dm @@ -280,6 +280,6 @@ GLOBAL_LIST_INIT(unlocked_mutant_parts, list("horns", "insect_fluff")) GLOBAL_LIST_INIT(colored_mutant_parts, list("insect_wings" = "wings_color", "deco_wings" = "wings_color", "horns" = "horns_color")) //species ids that have greyscale sprites -GLOBAL_LIST_INIT(greyscale_limb_types, list("human","lizard","pod","plant","jelly","slime","golem","lum","stargazer","mush","ethereal","snail","c_golem","b_golem","mammal","xeno","ipc","insect","synthliz","avian","aquatic")) +GLOBAL_LIST_INIT(greyscale_limb_types, list("human","moth","lizard","pod","plant","jelly","slime","golem","lum","stargazer","mush","ethereal","snail","c_golem","b_golem","mammal","xeno","ipc","insect","synthliz","avian","aquatic")) //species ids that need snowflake coloring applied From ee9c126d29a0026b059bc0671bd6c3a5fe45d693 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sat, 22 Aug 2020 00:18:20 +0100 Subject: [PATCH 20/94] moth fluff now shows from behind --- icons/mob/wings.dmi | Bin 78857 -> 79005 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/icons/mob/wings.dmi b/icons/mob/wings.dmi index ace37b1f175f848369dd1e8ad7970b2a0b71b8dd..4523403344a6ea908c2d0a9b99be565f27f16a7a 100644 GIT binary patch delta 23175 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%0AVt*=|#&;HU1$HXGSTs+5bI+}Z5rA>W8 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 Date: Sat, 22 Aug 2020 01:47:27 +0100 Subject: [PATCH 21/94] weaker than fists --- code/game/objects/items/weaponry.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/weaponry.dm b/code/game/objects/items/weaponry.dm index b5f8612244..e05e0c3bd4 100644 --- a/code/game/objects/items/weaponry.dm +++ b/code/game/objects/items/weaponry.dm @@ -327,13 +327,13 @@ for further reading, please see: https://github.com/tgstation/tgstation/pull/301 /obj/item/melee/bokken/attack_self(mob/user) harm = !harm if(harm) - force -= 2 + force -= 4 damtype = BRUTE attack_verb = list("bashed", "smashed", "attacked") bare_wound_bonus = 15 // having your leg smacked by a wooden stick is probably not great for it if it's naked wound_bonus = 0 else - force += 2 + force += 4 damtype = STAMINA attack_verb = list("whacked", "smacked", "struck") bare_wound_bonus = 0 From 3cf81dcc6cfc3e1076103449536403258b66cb66 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sat, 22 Aug 2020 01:56:56 +0100 Subject: [PATCH 22/94] this is better --- code/game/objects/items/weaponry.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/weaponry.dm b/code/game/objects/items/weaponry.dm index e05e0c3bd4..5555040f55 100644 --- a/code/game/objects/items/weaponry.dm +++ b/code/game/objects/items/weaponry.dm @@ -272,7 +272,8 @@ for further reading, please see: https://github.com/tgstation/tgstation/pull/301 righthand_file = 'icons/mob/inhands/weapons/swords_righthand.dmi' slot_flags = ITEM_SLOT_BELT | ITEM_SLOT_BACK w_class = WEIGHT_CLASS_BULKY - force = 9 + force = 7 //how much harm mode damage we do + var/stamina_damage_increment = 4 //how much extra damage do we do when in non-harm mode throwforce = 10 damtype = STAMINA attack_verb = list("whacked", "smacked", "struck") @@ -323,6 +324,8 @@ for further reading, please see: https://github.com/tgstation/tgstation/pull/301 /obj/item/melee/bokken/Initialize() . = ..() AddElement(/datum/element/sword_point) + if(!harm) //if initialised in non-harm mode, setup force accordingly + force = force + stamina_damage_increment /obj/item/melee/bokken/attack_self(mob/user) harm = !harm From 236db857dc8dcbc1ab563c45db6ad62d24b69477 Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Sat, 22 Aug 2020 15:42:20 -0500 Subject: [PATCH 23/94] pda bomb buyonce --- code/modules/uplink/uplink_items/uplink_explosives.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/uplink/uplink_items/uplink_explosives.dm b/code/modules/uplink/uplink_items/uplink_explosives.dm index 6cc1c9fe05..f44966fb3b 100644 --- a/code/modules/uplink/uplink_items/uplink_explosives.dm +++ b/code/modules/uplink/uplink_items/uplink_explosives.dm @@ -80,6 +80,7 @@ item = /obj/item/cartridge/virus/syndicate cost = 5 restricted = TRUE + limited_stock = 1 /datum/uplink_item/explosives/emp name = "EMP Grenades and Implanter Kit" From 093928eab2b112e153379e473d7f5932bbf1ac1c Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Sat, 22 Aug 2020 15:46:14 -0500 Subject: [PATCH 24/94] holopara buyonce --- code/modules/uplink/uplink_items/uplink_dangerous.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/uplink/uplink_items/uplink_dangerous.dm b/code/modules/uplink/uplink_items/uplink_dangerous.dm index a43e3fc2ce..58cb43996d 100644 --- a/code/modules/uplink/uplink_items/uplink_dangerous.dm +++ b/code/modules/uplink/uplink_items/uplink_dangerous.dm @@ -177,6 +177,7 @@ organic host as a home base and source of fuel. Holoparasites come in various types and share damage with their host." item = /obj/item/storage/box/syndie_kit/guardian cost = 15 + limited_stock = 1 // you can only have one holopara apparently? refundable = TRUE cant_discount = TRUE surplus = 0 From 8645a2954ff5aa64549c783e604a40b2cefbd11b Mon Sep 17 00:00:00 2001 From: Hatterhat Date: Sat, 22 Aug 2020 16:13:41 -0500 Subject: [PATCH 25/94] tackle hando --- code/game/objects/items/storage/toolbox.dm | 3 ++- code/modules/clothing/gloves/tacklers.dm | 19 +++++++++++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/storage/toolbox.dm b/code/game/objects/items/storage/toolbox.dm index a6b34c59e3..73246276c2 100644 --- a/code/game/objects/items/storage/toolbox.dm +++ b/code/game/objects/items/storage/toolbox.dm @@ -281,6 +281,7 @@ GLOBAL_LIST_EMPTY(rubber_toolbox_icons) /obj/item/clothing/suit/armor/vest/infiltrator, /obj/item/clothing/under/syndicate/bloodred, /obj/item/clothing/gloves/color/latex/nitrile/infiltrator, + /obj/item/clothing/gloves/tackler/combat/insulated/infiltrator, /obj/item/clothing/mask/infiltrator, /obj/item/clothing/shoes/combat/sneakboots, /obj/item/gun/ballistic/automatic/pistol, @@ -292,7 +293,7 @@ GLOBAL_LIST_EMPTY(rubber_toolbox_icons) new /obj/item/clothing/head/helmet/infiltrator(src) new /obj/item/clothing/suit/armor/vest/infiltrator(src) new /obj/item/clothing/under/syndicate/bloodred(src) - new /obj/item/clothing/gloves/color/latex/nitrile/infiltrator(src) + new /obj/item/clothing/gloves/tackler/combat/insulated/infiltrator(src) new /obj/item/clothing/mask/infiltrator(src) new /obj/item/clothing/shoes/combat/sneakboots(src) diff --git a/code/modules/clothing/gloves/tacklers.dm b/code/modules/clothing/gloves/tacklers.dm index 11b2afa968..f4b4140a1a 100644 --- a/code/modules/clothing/gloves/tacklers.dm +++ b/code/modules/clothing/gloves/tacklers.dm @@ -72,6 +72,25 @@ siemens_coefficient = 0 permeability_coefficient = 0.05 +/obj/item/clothing/gloves/tackler/combat/insulated/infiltrator + name = "insidious guerrilla gloves" + desc = "Specialized combat gloves for carrying people around. Transfers tactical kidnapping and tackling knowledge to the user via the use of nanochips." + icon_state = "infiltrator" + item_state = "infiltrator" + siemens_coefficient = 0 + permeability_coefficient = 0.05 + resistance_flags = FIRE_PROOF | ACID_PROOF + var/carrytrait = TRAIT_QUICKER_CARRY + +/obj/item/clothing/gloves/tackler/combat/insulated/infiltrator/equipped(mob/user, slot) + . = ..() + if(slot == SLOT_GLOVES) + ADD_TRAIT(user, carrytrait, GLOVE_TRAIT) + +/obj/item/clothing/gloves/tackler/combat/insulated/infiltrator/dropped(mob/user) + . = ..() + REMOVE_TRAIT(user, carrytrait, GLOVE_TRAIT) + /obj/item/clothing/gloves/tackler/rocket name = "rocket gloves" desc = "The ultimate in high risk, high reward, perfect for when you need to stop a criminal from fifty feet away or die trying. Banned in most Spinward gridiron football and rugby leagues." From 21836b4ec82ae58109d4e948f63d851a2973a066 Mon Sep 17 00:00:00 2001 From: zerothebigboy Date: Sat, 22 Aug 2020 18:11:03 -0400 Subject: [PATCH 26/94] : ) --- code/modules/clothing/gloves/miscellaneous.dm | 12 ++++++++---- code/modules/vending/kinkmate.dm | 1 + icons/mob/clothing/hands.dmi | Bin 11550 -> 11576 bytes icons/obj/clothing/gloves.dmi | Bin 19172 -> 20020 bytes 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/code/modules/clothing/gloves/miscellaneous.dm b/code/modules/clothing/gloves/miscellaneous.dm index 1c3ac0f340..b5d92fb780 100644 --- a/code/modules/clothing/gloves/miscellaneous.dm +++ b/code/modules/clothing/gloves/miscellaneous.dm @@ -199,12 +199,16 @@ /obj/item/clothing/gloves/evening name = "evening gloves" - desc = "Thin, pretty gloves intended for use in regal feminine attire, but knowing Space China these are just for some maid fetish." + desc = "Thin, pretty gloves intended for use in regal feminine attire. A tag on the hem claims they were 'maid' in Space China, these were probably intended for use in some maid fetish." icon_state = "evening" item_state = "evening" - strip_delay = 40 - equip_delay_other = 20 + transfer_prints = TRUE cold_protection = HANDS min_cold_protection_temperature = GLOVES_MIN_TEMP_PROTECT strip_mod = 0.9 - custom_price = PRICE_ALMOST_CHEAP + +/obj/item/clothing/gloves/evening/black + name = "midnight gloves" + desc = "Thin, pretty gloves intended for use in sexy feminine attire. A tag on the hem claims they pair great with black stockings." + icon_state = "eveningblack" + item_state = "eveningblack" diff --git a/code/modules/vending/kinkmate.dm b/code/modules/vending/kinkmate.dm index dc4f4e9273..a78a4e6ef4 100644 --- a/code/modules/vending/kinkmate.dm +++ b/code/modules/vending/kinkmate.dm @@ -36,6 +36,7 @@ /obj/item/clothing/under/misc/keyholesweater = 2, /obj/item/clothing/under/misc/stripper/mankini = 2, /obj/item/clothing/under/costume/jabroni = 2, + /obj/item/clothing/gloves/evening/black = 2, /obj/item/dildo/flared/huge = 3 ) premium = list( diff --git a/icons/mob/clothing/hands.dmi b/icons/mob/clothing/hands.dmi index 755280b3329e56696fd00de838d44be8eb8c8a99..44499649f90eef24f631962be9665c9ccfd824b4 100644 GIT binary patch literal 11576 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 B^Ns)j literal 11550 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 e|Gj7SGlr~eNveb)N` diff --git a/icons/obj/clothing/gloves.dmi b/icons/obj/clothing/gloves.dmi index 874f0d36602492cfc2536438b41be8ec32754e7e..c0f78ee604a33ffa0c21ae2455515bbedc462aa5 100644 GIT binary patch literal 20020 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 d00030yLvgH002ovPDHLkV1gKuhpPYp literal 19172 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 Date: Sat, 22 Aug 2020 18:22:43 -0400 Subject: [PATCH 27/94] i have been convinced : ) --- modular_citadel/code/modules/client/loadout/gloves.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modular_citadel/code/modules/client/loadout/gloves.dm b/modular_citadel/code/modules/client/loadout/gloves.dm index 85be8bd487..ef83d47e54 100644 --- a/modular_citadel/code/modules/client/loadout/gloves.dm +++ b/modular_citadel/code/modules/client/loadout/gloves.dm @@ -9,6 +9,10 @@ /datum/gear/gloves/evening name = "Evening gloves" path = /obj/item/clothing/gloves/evening + +/datum/gear/gloves/midnight + name = "Midnight gloves" + pathe = /obj/item/clothing/gloves/evening/black /datum/gear/gloves/goldring name = "A gold ring" From c1a4ad5ea431db4cd6f07d03a47a58d78e3a7ef2 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sat, 22 Aug 2020 23:28:03 +0100 Subject: [PATCH 28/94] non greyscale moths deserve love too --- .../carbon/human/species_types/bugmen.dm | 2 +- icons/mob/human_parts.dmi | Bin 45085 -> 45105 bytes 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/species_types/bugmen.dm b/code/modules/mob/living/carbon/human/species_types/bugmen.dm index 997d4eada0..16b371c772 100644 --- a/code/modules/mob/living/carbon/human/species_types/bugmen.dm +++ b/code/modules/mob/living/carbon/human/species_types/bugmen.dm @@ -20,4 +20,4 @@ wagging_type = "mam_waggingtail" species_type = "insect" - allowed_limb_ids = list("insect","apid","moth") + allowed_limb_ids = list("insect","apid","moth","moth_not_greyscale") diff --git a/icons/mob/human_parts.dmi b/icons/mob/human_parts.dmi index a6440938a40cc0d310424c19cdb7f2054c2a6a40..60978d55a221c0c0d67366dffc25a9b764cb7220 100644 GIT binary patch delta 809 zcmV+^1J?YV-~zGW0+1tr0}FaoSad{Xb7OL8aCB*JZU6vyoUNG6PUA2Xh1cy_xs;({_yKa2d>slxEx!V>A6dk^=!v7210-w%HtpVj@-vp?w)|W00e{@ktt9I(@YP&JM?bJ?x-EB9AR@b&uJ9U!; z?$o^&&T7MyduO}Iq-~+wnn^1zZ40LZ3_ECx7wbH=RD$xAynI_!wxrdG^icJMv)UA& zk8hS9kaX{C7h%~!%j&YVI8;5{ilHW=mZTKg5Ca#NZNw0VQfB+mz1qsgCa_0(RFLz7RI)ZQxLG<8H-`CdQ@?o2AdgyxcoZ|hqnP2HE2F6|)O6-^ z9!U!s);X7e5<{wA%xNE+mO-7>4C^cxW?}zlCMTPag%Qc&>YV8**({Z;jqqG>+BEO* zcpkLya2~|)XdcAyV4fr5?Lv$49 zSeK1D6XQvbVFV3?D92D74g-0tbXV(I!(UHH&VVL8gPQaVY+fJD{@g(4p9d2*l7Y?x z$^gQ9uCyV-3%9f((%ZJQA=1mRv?0=)aIDMjr%a6Rz%h)Vfeh#rio;!aD98|eJ=V8TW+(0M=^KnT2QqLUC$dWbw3AoFB^(DM!q#<>I2 z$g@dX3Bl(Xg(NZh{i_W9q{rwd14cg?F#6Pi@>n_qJW@7kD>3?H6q3ZdG8xPQ{mr_* zZlWtf6N|F7eYe+@r5{T_a(@1ebHzzNrG99=s4Lrl-4!F-;nj|4!9H}-MO)2$X=~Yz zuVyE!yW06eqw%GWzHGIz#m(jYmu0>s&F%N3xxGA%e)BqfWhzsFFDCfHB&Gr^fw2dD zs$$_z{5|R1L!S4g2i?3&3%h)mo=Zjm-=&V;(90lcKR<}|(Hnf=XJS|xzEmE)k<5X< nQVwMsxfZ_Y4Q2l$y;cv;_v-%Xar+ONfSsHGo~G!tBm?=Z{cW7Y delta 789 zcmV+w1M2*--~yfC0+1tr0{41USad{Xb7OL8aCB*JZU6vyoSm4QzLjrz4-E}ZqXi^Cs%)X}PqdU{$ejPH82Q7_AX#j(>T+pCRQWx!qf z&&pYC7C}sVu4H9oa*OUn-k9b;?P>2VlRUCa@dz`)Bh2)s%xLN}n$A4+BPk)% zn)(u0VoLSiTn@4AnAAiwtqB+Q!hUCglT9d^5#exkZg^_8=t@>bcrG|?+HZI~4=g;K z2N)jB0}K!5DKk4SOIkP;dL);$umn7grwRzZhUlQtYlx123cZHtsLyMNj_MrqvQZZ> zp7hv^pny>2*c6w;M4lVnpY%z?|DH0=gl3*e%{&uZ=0~%?4WRQc8xt0ii7p$I3554t zZ9{|?Zf!%Pw{2}hq?ciBL!>w1n3vs81&r^&u^B-Dnb4^zE{BOcT$)(7jXg1$8D~N> z&!lFai7oSgquJjE(D|2*2@A`G3X|mhp@|N z9`ncu;Jd}y8+uS?_WnVp&)(oevVdV`_>y(@MluKbiZ!I=EPU}9(*6g1R<9phwSC_$ T{{oN)Q#qV9)mL@1I0N~t(!`TA From 8873b6b48f043a80e81351faa43c48a94e895d0d Mon Sep 17 00:00:00 2001 From: zeroisthebiggay <43571008+zeroisthebiggay@users.noreply.github.com> Date: Sat, 22 Aug 2020 18:29:33 -0400 Subject: [PATCH 29/94] =?UTF-8?q?path=C3=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pathé --- modular_citadel/code/modules/client/loadout/gloves.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modular_citadel/code/modules/client/loadout/gloves.dm b/modular_citadel/code/modules/client/loadout/gloves.dm index ef83d47e54..96b6a99e6b 100644 --- a/modular_citadel/code/modules/client/loadout/gloves.dm +++ b/modular_citadel/code/modules/client/loadout/gloves.dm @@ -12,7 +12,7 @@ /datum/gear/gloves/midnight name = "Midnight gloves" - pathe = /obj/item/clothing/gloves/evening/black + path = /obj/item/clothing/gloves/evening/black /datum/gear/gloves/goldring name = "A gold ring" From b68baf2f25f5d02d38f5397257e2442e2184ba12 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Sun, 23 Aug 2020 01:44:33 +0100 Subject: [PATCH 30/94] this is funny --- .../effects/effect_system/effects_sparks.dm | 20 +++++++++++++++++++ code/modules/mob/living/carbon/human/emote.dm | 5 +++++ code/modules/mob/living/emote.dm | 5 +++++ 3 files changed, 30 insertions(+) diff --git a/code/game/objects/effects/effect_system/effects_sparks.dm b/code/game/objects/effects/effect_system/effects_sparks.dm index 19b0dc76dd..a388d3bc67 100644 --- a/code/game/objects/effects/effect_system/effects_sparks.dm +++ b/code/game/objects/effects/effect_system/effects_sparks.dm @@ -63,3 +63,23 @@ /datum/effect_system/lightning_spread effect_type = /obj/effect/particle_effect/sparks/electricity + +//fake sparks, not subtyped because we don't want light/heat, nor checks inside an often used proc for a rare subcase for saving like 10 lines of code +/obj/effect/particle_effect/fake_sparks + name = "lightning" + icon_state = "electricity" + +/obj/effect/particle_effect/fake_sparks/Initialize() + . = ..() + flick(icon_state, src) // replay the animation + playsound(src, "sparks", 100, TRUE) + QDEL_IN(src, 20) + +/datum/effect_system/fake_spark_spread + effect_type = /obj/effect/particle_effect/fake_sparks + +/proc/do_fake_sparks(n, c, source) + var/datum/effect_system/fake_spark_spread/sparks = new + sparks.set_up(n, c, source) + sparks.autocleanup = TRUE + sparks.start() diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index cb0dbef332..1bfb72a415 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -7,6 +7,11 @@ message = "cries." emote_type = EMOTE_AUDIBLE +/datum/emote/living/carbon/human/cry/run_emote(mob/user, params) + . = ..() + if(. && isipcperson(user)) + do_fake_sparks(5,FALSE,user) + /datum/emote/living/carbon/human/dap key = "dap" key_third_person = "daps" diff --git a/code/modules/mob/living/emote.dm b/code/modules/mob/living/emote.dm index 97de8bfd6c..a735baceae 100644 --- a/code/modules/mob/living/emote.dm +++ b/code/modules/mob/living/emote.dm @@ -9,6 +9,11 @@ key_third_person = "blushes" message = "blushes." +/datum/emote/living/blush/run_emote(mob/user, params) + . = ..() + if(. && isipcperson(user)) + do_fake_sparks(5,FALSE,user) + /datum/emote/living/bow key = "bow" key_third_person = "bows" From 87080bfac48ac86f0169bf9bcf4a0cbf33922a85 Mon Sep 17 00:00:00 2001 From: Putnam Date: Sat, 22 Aug 2020 17:51:32 -0700 Subject: [PATCH 31/94] Made all death release vore contents, not just gibbing/dusting --- code/modules/mob/living/death.dm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/code/modules/mob/living/death.dm b/code/modules/mob/living/death.dm index ad1a3bc9b9..fe5a78de21 100644 --- a/code/modules/mob/living/death.dm +++ b/code/modules/mob/living/death.dm @@ -8,8 +8,6 @@ spill_organs(no_brain, no_organs, no_bodyparts) - release_vore_contents(silent = TRUE) // return of the bomb safe internals. - if(!no_bodyparts) spread_bodyparts(no_brain, no_organs) @@ -46,7 +44,6 @@ buckled.unbuckle_mob(src, force = TRUE) dust_animation() - release_vore_contents(silent = TRUE) //technically grief protection, I guess? if they're SM'd it doesn't matter seconds after anyway. spawn_dust(just_ash) QDEL_IN(src,5) // since this is sometimes called in the middle of movement, allow half a second for movement to finish, ghosting to happen and animation to play. Looks much nicer and doesn't cause multiple runtimes. @@ -103,5 +100,5 @@ for(var/s in sharedSoullinks) var/datum/soullink/S = s S.sharerDies(gibbed) - + release_vore_contents(silent = TRUE) return TRUE From 811a6708df7ecd35afd70923c26fa47179ff6846 Mon Sep 17 00:00:00 2001 From: Suicidalpickles <32374784+Suicidalpickles@users.noreply.github.com> Date: Sat, 22 Aug 2020 18:01:18 -0700 Subject: [PATCH 32/94] h --- code/modules/clothing/suits/miscellaneous.dm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 6364a9a1c1..d6853f52ca 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -625,7 +625,7 @@ desc = "An arctic white winter coat with a small blue caduceus instead of a plastic zipper tab. Snazzy." icon_state = "coatmedical" item_state = "coatmedical" - allowed = list(/obj/item/analyzer, /obj/item/stack/medical, /obj/item/dnainjector, /obj/item/reagent_containers/dropper, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/hypospray, /obj/item/healthanalyzer, /obj/item/flashlight/pen, /obj/item/reagent_containers/glass/bottle, /obj/item/reagent_containers/glass/beaker, /obj/item/reagent_containers/pill, /obj/item/storage/pill_bottle, /obj/item/paper, /obj/item/melee/classic_baton/telescopic, /obj/item/toy, /obj/item/storage/fancy/cigarettes, /obj/item/lighter, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) + allowed = list(/obj/item/analyzer, /obj/item/sensor_device, /obj/item/stack/medical, /obj/item/dnainjector, /obj/item/reagent_containers/dropper, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/hypospray, /obj/item/healthanalyzer, /obj/item/flashlight/pen, /obj/item/reagent_containers/glass/bottle, /obj/item/reagent_containers/glass/beaker, /obj/item/reagent_containers/pill, /obj/item/storage/pill_bottle, /obj/item/paper, /obj/item/melee/classic_baton/telescopic, /obj/item/toy, /obj/item/storage/fancy/cigarettes, /obj/item/lighter, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 50, "rad" = 0, "fire" = 0, "acid" = 45) hoodtype = /obj/item/clothing/head/hooded/winterhood/medical @@ -638,7 +638,7 @@ desc = "An arctic white winter coat with a small blue caduceus instead of a plastic zipper tab. The normal liner is replaced with an exceptionally thick, soft layer of fur." icon_state = "coatcmo" item_state = "coatcmo" - allowed = list(/obj/item/analyzer, /obj/item/stack/medical, /obj/item/dnainjector, /obj/item/reagent_containers/dropper, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/hypospray, /obj/item/healthanalyzer, /obj/item/flashlight/pen, /obj/item/reagent_containers/glass/bottle, /obj/item/reagent_containers/glass/beaker, /obj/item/reagent_containers/pill, /obj/item/storage/pill_bottle, /obj/item/paper, /obj/item/melee/classic_baton/telescopic, /obj/item/toy, /obj/item/storage/fancy/cigarettes, /obj/item/lighter, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) + allowed = list(/obj/item/analyzer, /obj/item/sensor_device, /obj/item/stack/medical, /obj/item/dnainjector, /obj/item/reagent_containers/dropper, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/hypospray, /obj/item/healthanalyzer, /obj/item/flashlight/pen, /obj/item/reagent_containers/glass/bottle, /obj/item/reagent_containers/glass/beaker, /obj/item/reagent_containers/pill, /obj/item/storage/pill_bottle, /obj/item/paper, /obj/item/melee/classic_baton/telescopic, /obj/item/toy, /obj/item/storage/fancy/cigarettes, /obj/item/lighter, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) armor = list("melee" = 5, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 50, "rad" = 0, "fire" = 0, "acid" = 0) hoodtype = /obj/item/clothing/head/hooded/winterhood/cmo @@ -651,7 +651,7 @@ desc = "A lab-grade winter coat made with acid resistant polymers. For the enterprising chemist who was exiled to a frozen wasteland on the go." icon_state = "coatchemistry" item_state = "coatchemistry" - allowed = list(/obj/item/analyzer, /obj/item/stack/medical, /obj/item/dnainjector, /obj/item/reagent_containers/dropper, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/hypospray, /obj/item/healthanalyzer, /obj/item/flashlight/pen, /obj/item/reagent_containers/glass/bottle, /obj/item/reagent_containers/glass/beaker, /obj/item/reagent_containers/pill, /obj/item/storage/pill_bottle, /obj/item/paper, /obj/item/melee/classic_baton/telescopic, /obj/item/toy, /obj/item/storage/fancy/cigarettes, /obj/item/lighter, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) + allowed = list(/obj/item/analyzer, /obj/item/sensor_device, /obj/item/stack/medical, /obj/item/dnainjector, /obj/item/reagent_containers/dropper, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/hypospray, /obj/item/healthanalyzer, /obj/item/flashlight/pen, /obj/item/reagent_containers/glass/bottle, /obj/item/reagent_containers/glass/beaker, /obj/item/reagent_containers/pill, /obj/item/storage/pill_bottle, /obj/item/paper, /obj/item/melee/classic_baton/telescopic, /obj/item/toy, /obj/item/storage/fancy/cigarettes, /obj/item/lighter, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 30, "rad" = 0, "fire" = 30, "acid" = 45) hoodtype = /obj/item/clothing/head/hooded/winterhood/chemistry @@ -664,7 +664,7 @@ desc = "A white winter coat with green markings. Warm, but wont fight off the common cold or any other disease. Might make people stand far away from you in the hallway. The zipper tab looks like an oversized bacteriophage." icon_state = "coatviro" item_state = "coatviro" - allowed = list(/obj/item/analyzer, /obj/item/stack/medical, /obj/item/dnainjector, /obj/item/reagent_containers/dropper, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/hypospray, /obj/item/healthanalyzer, /obj/item/flashlight/pen, /obj/item/reagent_containers/glass/bottle, /obj/item/reagent_containers/glass/beaker, /obj/item/reagent_containers/pill, /obj/item/storage/pill_bottle, /obj/item/paper, /obj/item/melee/classic_baton/telescopic, /obj/item/toy, /obj/item/storage/fancy/cigarettes, /obj/item/lighter, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) + allowed = list(/obj/item/analyzer, /obj/item/sensor_device, /obj/item/stack/medical, /obj/item/dnainjector, /obj/item/reagent_containers/dropper, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/hypospray, /obj/item/healthanalyzer, /obj/item/flashlight/pen, /obj/item/reagent_containers/glass/bottle, /obj/item/reagent_containers/glass/beaker, /obj/item/reagent_containers/pill, /obj/item/storage/pill_bottle, /obj/item/paper, /obj/item/melee/classic_baton/telescopic, /obj/item/toy, /obj/item/storage/fancy/cigarettes, /obj/item/lighter, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 30, "rad" = 0, "fire" = 0, "acid" = 0) hoodtype = /obj/item/clothing/head/hooded/winterhood/viro @@ -677,7 +677,7 @@ desc = "A winter coat with blue markings. Warm, but probably won't protect from biological agents. For the cozy doctor on the go." icon_state = "coatparamed" item_state = "coatparamed" - allowed = list(/obj/item/analyzer, /obj/item/stack/medical, /obj/item/dnainjector, /obj/item/reagent_containers/dropper, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/hypospray, /obj/item/healthanalyzer, /obj/item/flashlight/pen, /obj/item/reagent_containers/glass/bottle, /obj/item/reagent_containers/glass/beaker, /obj/item/reagent_containers/pill, /obj/item/storage/pill_bottle, /obj/item/paper, /obj/item/melee/classic_baton/telescopic, /obj/item/toy, /obj/item/storage/fancy/cigarettes, /obj/item/lighter, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) + allowed = list(/obj/item/analyzer, /obj/item/sensor_device, /obj/item/stack/medical, /obj/item/dnainjector, /obj/item/reagent_containers/dropper, /obj/item/reagent_containers/syringe, /obj/item/reagent_containers/hypospray, /obj/item/healthanalyzer, /obj/item/flashlight/pen, /obj/item/reagent_containers/glass/bottle, /obj/item/reagent_containers/glass/beaker, /obj/item/reagent_containers/pill, /obj/item/storage/pill_bottle, /obj/item/paper, /obj/item/melee/classic_baton/telescopic, /obj/item/toy, /obj/item/storage/fancy/cigarettes, /obj/item/lighter, /obj/item/tank/internals/emergency_oxygen, /obj/item/tank/internals/plasmaman) armor = list("melee" = 0, "bullet" = 0, "laser" = 0,"energy" = 0, "bomb" = 0, "bio" = 50, "rad" = 0, "fire" = 0, "acid" = 45) hoodtype = /obj/item/clothing/head/hooded/winterhood/paramedic From 9db6941dad4698a9a5daf44dddfee22a7ff3449a Mon Sep 17 00:00:00 2001 From: MrJWhit <48370570+MrJWhit@users.noreply.github.com> Date: Sun, 23 Aug 2020 00:48:58 -0400 Subject: [PATCH 33/94] Fuck --- _maps/map_files/MetaStation/MetaStation.dmm | 37 ++--- _maps/map_files/PubbyStation/PubbyStation.dmm | 132 +++++++++--------- 2 files changed, 75 insertions(+), 94 deletions(-) diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index 6338213195..fdc313c30a 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -7014,9 +7014,6 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, /turf/closed/wall, /area/crew_quarters/fitness/recreation) -"amG" = ( -/turf/closed/wall, -/area/space) "amH" = ( /obj/machinery/door/airlock/external{ req_one_access_txt = "13,8" @@ -46794,7 +46791,7 @@ dir = 8 }, /turf/open/floor/plating, -/area/space/nearstation) +/area/maintenance/starboard/fore) "bOZ" = ( /obj/machinery/chem_master/condimaster{ name = "CondiMaster Neo"; @@ -70554,7 +70551,7 @@ dir = 8 }, /turf/open/floor/plating, -/area/space/nearstation) +/area/maintenance/starboard/aft) "cJg" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, /obj/item/bedsheet/medical, @@ -81152,10 +81149,6 @@ /obj/machinery/vr_sleeper, /turf/open/floor/plasteel, /area/crew_quarters/fitness/recreation) -"evy" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/space) "eEe" = ( /obj/machinery/atmospherics/components/unary/vent_pump/on{ dir = 8 @@ -81385,10 +81378,6 @@ }, /turf/open/floor/plating, /area/maintenance/port/aft) -"hKW" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/maintenance/aft) "ioI" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -82834,10 +82823,6 @@ }, /turf/open/floor/plating, /area/security/prison) -"wkz" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space) "wlH" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 4 @@ -113085,7 +113070,7 @@ cCq cgN cMl bTs -hKW +lMJ aaf aaf aaf @@ -113342,7 +113327,7 @@ cCq cLA bTs bTs -hKW +lMJ aaf aaa aaa @@ -119762,9 +119747,9 @@ cEA aaf aaa aaa -blx +dvY cJf -blx +dvY aaa dbN gsT @@ -120019,9 +120004,9 @@ blx aaa aaa aaa -wkz +ack uim -wkz +ack aaa aaf dbR @@ -121287,7 +121272,7 @@ ciL cgs csc dvY -evy +dxk krD lsv txj @@ -129695,8 +129680,8 @@ aaa aaa aaf aaa -amG -blx +dnh +dnh bOY dqT aaf diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index 846fe48604..263cb44144 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -2822,7 +2822,7 @@ req_access_txt = "65" }, /turf/open/floor/plating, -/area/space/nearstation) +/area/ai_monitored/turret_protected/aisat_interior) "ahi" = ( /obj/structure/lattice/catwalk, /turf/open/space, @@ -2923,8 +2923,15 @@ /turf/open/floor/plasteel/showroomfloor, /area/security/main) "ahr" = ( -/turf/closed/wall/r_wall, -/area/space) +/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, @@ -4686,7 +4693,7 @@ pixel_y = 20 }, /turf/open/space, -/area/space) +/area/space/nearstation) "alc" = ( /obj/structure/table, /obj/item/storage/fancy/cigarettes/cigars, @@ -6629,13 +6636,6 @@ /turf/open/floor/plating, /area/maintenance/fore) "apn" = ( -/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) "apo" = ( @@ -8698,9 +8698,18 @@ /turf/closed/wall, /area/bridge) "atZ" = ( -/obj/structure/lattice/catwalk, -/turf/open/space, -/area/space) +/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, @@ -23763,18 +23772,12 @@ /turf/open/floor/plating, /area/bridge) "bcO" = ( -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 }, -/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) +/turf/open/space, +/area/space/nearstation) "bcQ" = ( /obj/structure/lattice/catwalk, /obj/structure/cable{ @@ -39888,12 +39891,6 @@ /area/science/mixing) "bMp" = ( /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) "bMq" = ( @@ -40373,11 +40370,10 @@ /turf/open/floor/engine/vacuum, /area/science/mixing) "bNq" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 }, -/turf/open/space, +/turf/open/floor/plating/airless, /area/science/mixing) "bNr" = ( /obj/structure/window/reinforced{ @@ -40813,10 +40809,11 @@ /turf/open/floor/engine/vacuum, /area/science/mixing) "bOu" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 }, -/turf/open/floor/plating/airless, +/turf/open/space, /area/science/mixing) "bOv" = ( /obj/structure/window/reinforced{ @@ -41104,12 +41101,15 @@ /turf/open/floor/engine/n2o, /area/engine/atmos) "bPl" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 }, -/turf/open/space, -/area/space/nearstation) +/obj/machinery/door/airlock/external{ + req_access_txt = "8" + }, +/turf/open/floor/plating, +/area/science/mixing) "bPn" = ( /obj/machinery/door/airlock/grunge{ name = "Chapel" @@ -53174,10 +53174,6 @@ }, /turf/open/floor/plasteel, /area/hallway/primary/aft) -"dhS" = ( -/obj/structure/window/reinforced, -/turf/open/space/basic, -/area/space) "dir" = ( /obj/machinery/atmospherics/pipe/simple/general/visible{ dir = 5 @@ -59590,7 +59586,7 @@ }, /obj/machinery/door/airlock/external, /turf/open/floor/plating, -/area/space/nearstation) +/area/chapel/asteroid/monastery) "rBh" = ( /obj/structure/mopbucket, /obj/item/mop, @@ -77801,7 +77797,7 @@ aiu aiu axC axB -rKr +azN axB aaa aaa @@ -82501,8 +82497,8 @@ aht aaa aaa abI -dhS -cqS +bGI +bNs rzF bNs bOw @@ -90640,9 +90636,9 @@ aaa aaa aaa aaa -aaa -ahi -ahi +aoz +ahr +aoz aqG arD asO @@ -90898,8 +90894,8 @@ aaa aaa aaa aaa -aaa -aaa +cdm +cdm aqG arE arA @@ -94741,7 +94737,7 @@ ags adX adX adX -ahr +adX aaa aaa aaa @@ -94997,7 +94993,7 @@ cnC adX adX adX -shH +adX alb aaa aaa @@ -95255,7 +95251,7 @@ agt agD agR ahh -atZ +ahi aaa aaa aaa @@ -95511,7 +95507,7 @@ agg adX adX adX -shH +adX alb aaa aaa @@ -95769,7 +95765,7 @@ ags adX adX adX -shH +adX aFj aht aht @@ -105617,9 +105613,9 @@ bIN dAF bCV bCV -bNq +bCV bOu -aht +bNq aaa aaa aaa @@ -105875,8 +105871,8 @@ bJT wOS bMp bPl -mZE -aht +bcO +aaa aaa aaa aaa @@ -106131,9 +106127,9 @@ fBz bCV bCV bCV +bCV ahi aht -aht abI abI abI @@ -109182,7 +109178,7 @@ aXC aYF baG sut -bcO +oCX rWE baG dsv @@ -109439,7 +109435,7 @@ aEl aEl baG rWE -oCX +atZ rWE baG aEj From b47b14cdaa747660a5756d3a2b067193110ec6f7 Mon Sep 17 00:00:00 2001 From: Artur Date: Sun, 23 Aug 2020 14:26:07 +0300 Subject: [PATCH 34/94] Shoot me please --- code/modules/antagonists/bloodsucker/powers/fortitude.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/antagonists/bloodsucker/powers/fortitude.dm b/code/modules/antagonists/bloodsucker/powers/fortitude.dm index 24cad2a188..740ec81782 100644 --- a/code/modules/antagonists/bloodsucker/powers/fortitude.dm +++ b/code/modules/antagonists/bloodsucker/powers/fortitude.dm @@ -54,7 +54,7 @@ REMOVE_TRAIT(user, TRAIT_PIERCEIMMUNE, "fortitude") REMOVE_TRAIT(user, TRAIT_NODISMEMBER, "fortitude") REMOVE_TRAIT(user, TRAIT_STUNIMMUNE, "fortitude") - REMOVE_TRAIT(user, TRAIT_STUNIMMUNE, "fortitude") + REMOVE_TRAIT(user, TRAIT_NORUNNING, "fortitude") if(!ishuman(owner)) return var/mob/living/carbon/human/H = owner From d1e2574fbc388411e75e7a7906dc86483a5b8415 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 23 Aug 2020 07:07:15 -0500 Subject: [PATCH 35/94] Automatic changelog generation for PR #13243 [ci skip] --- html/changelogs/AutoChangeLog-pr-13243.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13243.yml diff --git a/html/changelogs/AutoChangeLog-pr-13243.yml b/html/changelogs/AutoChangeLog-pr-13243.yml new file mode 100644 index 0000000000..a09ae5d607 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13243.yml @@ -0,0 +1,4 @@ +author: "MrJWhit" +delete-after: True +changes: + - bugfix: "Fixes areas on expanded airlocks" From 86862d5eb382d5cdc16f76f6340db72f3d77c81f Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 23 Aug 2020 07:08:18 -0500 Subject: [PATCH 36/94] Automatic changelog generation for PR #13239 [ci skip] --- html/changelogs/AutoChangeLog-pr-13239.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13239.yml diff --git a/html/changelogs/AutoChangeLog-pr-13239.yml b/html/changelogs/AutoChangeLog-pr-13239.yml new file mode 100644 index 0000000000..0f01f680c6 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13239.yml @@ -0,0 +1,4 @@ +author: "zeroisthebiggay" +delete-after: True +changes: + - rscadd: "contraband black evening gloves in kinkvend" From 0f9c34415bdfea356ffa7c5d943473f87e028521 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 23 Aug 2020 07:08:53 -0500 Subject: [PATCH 37/94] Automatic changelog generation for PR #13204 [ci skip] --- html/changelogs/AutoChangeLog-pr-13204.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13204.yml diff --git a/html/changelogs/AutoChangeLog-pr-13204.yml b/html/changelogs/AutoChangeLog-pr-13204.yml new file mode 100644 index 0000000000..e9033c299d --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13204.yml @@ -0,0 +1,4 @@ +author: "timothyteakettle" +delete-after: True +changes: + - rscadd: "three new items are in the loadout for all donators" From 1abe2458eee03f022b2d83629aa06b535638f00a Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 23 Aug 2020 11:58:34 -0700 Subject: [PATCH 38/94] Update taeclowndo.dm (#13227) --- code/modules/spells/spell_types/taeclowndo.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/spells/spell_types/taeclowndo.dm b/code/modules/spells/spell_types/taeclowndo.dm index 59826daf07..9d6d71a89f 100644 --- a/code/modules/spells/spell_types/taeclowndo.dm +++ b/code/modules/spells/spell_types/taeclowndo.dm @@ -42,6 +42,8 @@ return . = ..() + if(!.) + return new /obj/item/grown/bananapeel(target) /obj/effect/proc_holder/spell/aimed/banana_peel/update_icon() From a8ee36fe852774620bc72a718299b44a8cf66bb5 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 23 Aug 2020 12:00:07 -0700 Subject: [PATCH 39/94] fixes wormhole jaunters and makes them no longer collide with bohs/other bluespace teleportation disruptors (#13209) * Update wormhole_jaunter.dm * Update wormhole_jaunter.dm --- code/modules/mining/equipment/wormhole_jaunter.dm | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/code/modules/mining/equipment/wormhole_jaunter.dm b/code/modules/mining/equipment/wormhole_jaunter.dm index c31008fa62..c17b62ba6c 100644 --- a/code/modules/mining/equipment/wormhole_jaunter.dm +++ b/code/modules/mining/equipment/wormhole_jaunter.dm @@ -35,18 +35,20 @@ return destinations -/obj/item/wormhole_jaunter/proc/activate(mob/user, adjacent) +/obj/item/wormhole_jaunter/proc/activate(mob/user, adjacent, force_entry = FALSE) if(!turf_check(user)) return var/list/L = get_destinations(user) if(!L.len) - to_chat(user, "The [src.name] found no beacons in the world to anchor a wormhole to.") + to_chat(user, "The [name] found no beacons in the world to anchor a wormhole to.") return var/chosen_beacon = pick(L) - var/obj/effect/portal/jaunt_tunnel/J = new (get_turf(src), src, 100, null, FALSE, get_turf(chosen_beacon)) + var/obj/effect/portal/jaunt_tunnel/J = new (get_turf(src), 100, null, FALSE, get_turf(chosen_beacon)) if(adjacent) try_move_adjacent(J) + if(force_entry) + J.teleport(user, force = TRUE) playsound(src,'sound/effects/sparks4.ogg',50,1) qdel(src) @@ -73,7 +75,7 @@ if(user.get_item_by_slot(SLOT_BELT) == src) to_chat(user, "Your [name] activates, saving you from the chasm!") SSblackbox.record_feedback("tally", "jaunter", 1, "Chasm") // chasm automatic activation - activate(user, FALSE) + activate(user, FALSE, TRUE) else to_chat(user, "[src] is not attached to your belt, preventing it from saving you from the chasm. RIP.") @@ -84,9 +86,10 @@ icon_state = "bhole3" desc = "A stable hole in the universe made by a wormhole jaunter. Turbulent doesn't even begin to describe how rough passage through one of these is, but at least it will always get you somewhere near a beacon." mech_sized = TRUE //save your ripley + teleport_channel = TELEPORT_CHANNEL_WORMHOLE innate_accuracy_penalty = 6 -/obj/effect/portal/jaunt_tunnel/teleport(atom/movable/M) +/obj/effect/portal/jaunt_tunnel/teleport(atom/movable/M, force = FALSE) . = ..() if(.) // KERPLUNK From 7d103992fc1d6898f90ce454509cf28a49f36caa Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 23 Aug 2020 14:00:10 -0500 Subject: [PATCH 40/94] Automatic changelog generation for PR #13209 [ci skip] --- html/changelogs/AutoChangeLog-pr-13209.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13209.yml diff --git a/html/changelogs/AutoChangeLog-pr-13209.yml b/html/changelogs/AutoChangeLog-pr-13209.yml new file mode 100644 index 0000000000..f885a4dc93 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13209.yml @@ -0,0 +1,5 @@ +author: "silicons" +delete-after: True +changes: + - bugfix: "wormhole jaunters work" + - tweak: "wormhole jaunters no longer get interference from bags of holding" From 4d7d068407dee98350bdd7d1f0e64746218f396f Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Sun, 23 Aug 2020 12:01:26 -0700 Subject: [PATCH 41/94] Update airlock.dm (#13182) --- code/datums/wires/airlock.dm | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/code/datums/wires/airlock.dm b/code/datums/wires/airlock.dm index 6cef7ac50f..179adf46bd 100644 --- a/code/datums/wires/airlock.dm +++ b/code/datums/wires/airlock.dm @@ -53,8 +53,6 @@ /datum/wires/airlock/interactable(mob/user) var/obj/machinery/door/airlock/A = holder - if(!A.hasSiliconAccessInArea(user) && A.isElectrified() && A.shock(user, 100)) - return FALSE if(A.panel_open) return TRUE @@ -73,6 +71,8 @@ /datum/wires/airlock/on_pulse(wire) set waitfor = FALSE var/obj/machinery/door/airlock/A = holder + if(!A.hasSiliconAccessInArea(usr) && A.isElectrified() && A.shock(usr, 100)) + return FALSE switch(wire) if(WIRE_POWER1, WIRE_POWER2) // Pulse to loose power. A.loseMainPower() @@ -127,6 +127,8 @@ /datum/wires/airlock/on_cut(wire, mend) var/obj/machinery/door/airlock/A = holder + if(!A.hasSiliconAccessInArea(usr) && A.isElectrified() && A.shock(usr, 100)) + return FALSE switch(wire) if(WIRE_POWER1, WIRE_POWER2) // Cut to loose power, repair all to gain power. if(mend && !is_cut(WIRE_POWER1) && !is_cut(WIRE_POWER2)) @@ -174,4 +176,4 @@ A.update_icon() if(WIRE_ZAP1, WIRE_ZAP2) // Ouch. if(isliving(usr)) - A.shock(usr, 50) \ No newline at end of file + A.shock(usr, 50) From b2ee58e229b7dd4442773ca600cf33ea6a363c43 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 23 Aug 2020 14:01:29 -0500 Subject: [PATCH 42/94] Automatic changelog generation for PR #13182 [ci skip] --- html/changelogs/AutoChangeLog-pr-13182.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13182.yml diff --git a/html/changelogs/AutoChangeLog-pr-13182.yml b/html/changelogs/AutoChangeLog-pr-13182.yml new file mode 100644 index 0000000000..9beb8f28c5 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13182.yml @@ -0,0 +1,4 @@ +author: "silicons" +delete-after: True +changes: + - bugfix: "airlocks now only shock on pulse/wirecutters instead of on tgui panel open." From a9142ab64aacf95353cc697e049318d7d68d7ab3 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Mon, 24 Aug 2020 00:15:48 +0000 Subject: [PATCH 43/94] Automatic changelog compile [ci skip] --- html/changelog.html | 39 +++++++++++----------- html/changelogs/.all_changelog.yml | 12 +++++++ html/changelogs/AutoChangeLog-pr-13182.yml | 4 --- html/changelogs/AutoChangeLog-pr-13204.yml | 4 --- html/changelogs/AutoChangeLog-pr-13209.yml | 5 --- html/changelogs/AutoChangeLog-pr-13239.yml | 4 --- html/changelogs/AutoChangeLog-pr-13243.yml | 4 --- 7 files changed, 32 insertions(+), 40 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-13182.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13204.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13209.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13239.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13243.yml diff --git a/html/changelog.html b/html/changelog.html index fd590f4673..d2f9fd9a86 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,26 @@ -->

+

24 August 2020

+

MrJWhit updated:

+
    +
  • Fixes areas on expanded airlocks
  • +
+

silicons updated:

+
    +
  • wormhole jaunters work
  • +
  • wormhole jaunters no longer get interference from bags of holding
  • +
  • airlocks now only shock on pulse/wirecutters instead of on tgui panel open.
  • +
+

timothyteakettle updated:

+
    +
  • three new items are in the loadout for all donators
  • +
+

zeroisthebiggay updated:

+
    +
  • contraband black evening gloves in kinkvend
  • +
+

23 August 2020

DeltaFire15 updated:

    @@ -1449,25 +1469,6 @@
  • bonfires/grills no longer produce infinite quantities of food
  • slime's alter form ability now updates their hair colour when changing their body colour
- -

22 June 2020

-

Ghommie (porting PRs by zxaber, Ryll-Ryll, AnturK) updated:

-
    -
  • Certain small items purchased through cargo now get grouped into a single box. They also are immune to the 10% private account fee.
  • -
  • Added single-order options for several existing products in the Cargo Catalog.
  • -
  • Medkit listings are now single-pack items, and considered small items that get grouped into single boxes. Price for medkits is as close to unchanged as is reasonable.
  • -
  • You can now beat on vending machines to try and knock loose free stuff! You can also almost kill yourself doing it, so it's your call if your life is worth ten bucks.
  • -
  • Cigarette packets now have coupons on the back for small cargo items! Smoking DOES pay!
  • -
  • Some single/small items in cargo have been rebranded as goodies, come in lockboxes rather than crates, and can only be purchased with private accounts.
  • -
-

kevinz000 updated:

-
    -
  • Life() is split into BiologicalLife() and PhysicalLife. A component signal has been added that can prevent either from ticking.
  • -
-

shellspeed1 updated:

-
    -
  • Adds IV bags.
  • -
GoonStation 13 Development Team diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index d4243a01ec..88aef958e8 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -27060,3 +27060,15 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. - rscadd: suiciding with the temporal katana omae wa mou shinderius you into the shadow realm - soundadd: twilight isnt earrape +2020-08-24: + MrJWhit: + - bugfix: Fixes areas on expanded airlocks + silicons: + - bugfix: wormhole jaunters work + - tweak: wormhole jaunters no longer get interference from bags of holding + - bugfix: airlocks now only shock on pulse/wirecutters instead of on tgui panel + open. + timothyteakettle: + - rscadd: three new items are in the loadout for all donators + zeroisthebiggay: + - rscadd: contraband black evening gloves in kinkvend diff --git a/html/changelogs/AutoChangeLog-pr-13182.yml b/html/changelogs/AutoChangeLog-pr-13182.yml deleted file mode 100644 index 9beb8f28c5..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13182.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "silicons" -delete-after: True -changes: - - bugfix: "airlocks now only shock on pulse/wirecutters instead of on tgui panel open." diff --git a/html/changelogs/AutoChangeLog-pr-13204.yml b/html/changelogs/AutoChangeLog-pr-13204.yml deleted file mode 100644 index e9033c299d..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13204.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "timothyteakettle" -delete-after: True -changes: - - rscadd: "three new items are in the loadout for all donators" diff --git a/html/changelogs/AutoChangeLog-pr-13209.yml b/html/changelogs/AutoChangeLog-pr-13209.yml deleted file mode 100644 index f885a4dc93..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13209.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "silicons" -delete-after: True -changes: - - bugfix: "wormhole jaunters work" - - tweak: "wormhole jaunters no longer get interference from bags of holding" diff --git a/html/changelogs/AutoChangeLog-pr-13239.yml b/html/changelogs/AutoChangeLog-pr-13239.yml deleted file mode 100644 index 0f01f680c6..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13239.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "zeroisthebiggay" -delete-after: True -changes: - - rscadd: "contraband black evening gloves in kinkvend" diff --git a/html/changelogs/AutoChangeLog-pr-13243.yml b/html/changelogs/AutoChangeLog-pr-13243.yml deleted file mode 100644 index a09ae5d607..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13243.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "MrJWhit" -delete-after: True -changes: - - bugfix: "Fixes areas on expanded airlocks" From c14b01b49fcea61b7e51b407294b8eeef19e5f8a Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 23 Aug 2020 19:36:06 -0500 Subject: [PATCH 44/94] Automatic changelog generation for PR #13238 [ci skip] --- html/changelogs/AutoChangeLog-pr-13238.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13238.yml diff --git a/html/changelogs/AutoChangeLog-pr-13238.yml b/html/changelogs/AutoChangeLog-pr-13238.yml new file mode 100644 index 0000000000..8e3d2c148b --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13238.yml @@ -0,0 +1,4 @@ +author: "Hatterhat" +delete-after: True +changes: + - rscadd: "Insidious combat gloves have been replaced by insidious guerilla gloves. They're generally the same, except now you can tackle with them." From 1b29e0654fbaf58ac528a46d875b1b5b9ba5d356 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 23 Aug 2020 19:36:26 -0500 Subject: [PATCH 45/94] Automatic changelog generation for PR #13240 [ci skip] --- html/changelogs/AutoChangeLog-pr-13240.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13240.yml diff --git a/html/changelogs/AutoChangeLog-pr-13240.yml b/html/changelogs/AutoChangeLog-pr-13240.yml new file mode 100644 index 0000000000..396515c90e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13240.yml @@ -0,0 +1,4 @@ +author: "timothyteakettle" +delete-after: True +changes: + - tweak: "I.P.Cs now short their circuits when expressing emotion, causing sparks to appear around them." From 7cd4bdd15ddc83889a7faea80dc5d51ca7875bce Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 23 Aug 2020 19:39:46 -0500 Subject: [PATCH 46/94] Automatic changelog generation for PR #13241 [ci skip] --- html/changelogs/AutoChangeLog-pr-13241.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13241.yml diff --git a/html/changelogs/AutoChangeLog-pr-13241.yml b/html/changelogs/AutoChangeLog-pr-13241.yml new file mode 100644 index 0000000000..f11a9408b3 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13241.yml @@ -0,0 +1,4 @@ +author: "Putnam3145" +delete-after: True +changes: + - tweak: "vore now ejects occupants on death" From c2f4a46ecfdd4121a77cd2fcdc7262a0b032cd72 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 23 Aug 2020 19:41:12 -0500 Subject: [PATCH 47/94] Automatic changelog generation for PR #13242 [ci skip] --- html/changelogs/AutoChangeLog-pr-13242.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13242.yml diff --git a/html/changelogs/AutoChangeLog-pr-13242.yml b/html/changelogs/AutoChangeLog-pr-13242.yml new file mode 100644 index 0000000000..0cfcdf183b --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13242.yml @@ -0,0 +1,4 @@ +author: "Literallynotpickles" +delete-after: True +changes: + - tweak: "You can now equip handheld crew monitors on all medical-related winter coats." From 19d5a1bc4bd53e0f65e16d07d165996e19b46d7f Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sun, 23 Aug 2020 19:52:47 -0500 Subject: [PATCH 48/94] Automatic changelog generation for PR #13225 [ci skip] --- html/changelogs/AutoChangeLog-pr-13225.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13225.yml diff --git a/html/changelogs/AutoChangeLog-pr-13225.yml b/html/changelogs/AutoChangeLog-pr-13225.yml new file mode 100644 index 0000000000..d185917e7f --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13225.yml @@ -0,0 +1,4 @@ +author: "raspy-on-osu" +delete-after: True +changes: + - tweak: "Thermoelectric Generator power output" From e0b70da4871779845be2a480d744331aef796c6d Mon Sep 17 00:00:00 2001 From: EmeraldSundisk Date: Sun, 23 Aug 2020 20:53:52 -0700 Subject: [PATCH 49/94] Update paper_premade.dm --- code/modules/paperwork/paper_premade.dm | 26 ++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/code/modules/paperwork/paper_premade.dm b/code/modules/paperwork/paper_premade.dm index 414026924a..392eba5f56 100644 --- a/code/modules/paperwork/paper_premade.dm +++ b/code/modules/paperwork/paper_premade.dm @@ -96,7 +96,7 @@ Accidental Reentry: /obj/item/paper/guides/cogstation/job_changes name = "MEMO: Job Changes" - info = "To ensure minimal employee downtime, please take note of the following changes to select professions that CogStation specifically requires:
\n
\n- Scientists are to have access to chemistry in order to reach the MedSci router.
\n
\n- Chemists should at the very least be provided with an encryption key for the Science channel, if not basic access to the Research department at large.
\n- Roboticists are to have basic Medical and Morgue access.
\n- Engineers and Atmospheric Technicians are to have Warehouse and Mining access.
\n- The Cook should not have Morgue access
\n- The Clown and Mime are to have Maintenance access. This is necessary due to the location of their offices.
\n
\nGenerated by Organic Resources Bot #2053" + info = "To ensure minimal employee downtime, please take note of the following changes to select professions that CogStation specifically requires:
\n
\n- Engineers and Atmospheric Technicians are to have Warehouse and Mining access.
\n- The Cook should not have Morgue access.
\n- The Clown and Mime are to have Maintenance access. This is necessary due to the location of their offices.
\n
\nGenerated by Organic Resources Bot #2053" /obj/item/paper/guides/cogstation/letter_sec name = "To future Security personnel" @@ -104,7 +104,7 @@ Accidental Reentry: /obj/item/paper/guides/cogstation/disposals name = "Regarding the disposal system:" - info = "As you might have noticed, this station has far more disposal pipes than you may expect from your average Nanotrasen research facility. Part of the reason for this is specialization - mail, trash, even corpses have their own disposal systems. Unfortunately, the convenient color-coding was lost in translocation and we've had to compensate by marking the area around each bin.
\n
\n- WHITE/GRAY STRIPES is for DELIVERIES.
\n- RED STRIPES is for CORPSES.
\n- EVERYTHING ELSE is for TRASH,
barring a few exceptions that should be labeled as such.
\n
\nIdeally the station won't sustain any heavy structural damage during your time here but if it does, or someone decides to tamper with/sabotage this system, you'll be forgiven if you can't put it back together perfectly.
\n
\n-C. Donnelly
Architectural Analyst" + info = "As you might have noticed, this station has far more disposal pipes than you may expect from your average Nanotrasen research facility. Part of the reason for this is specialization - mail, trash, even corpses have their own disposal systems. Unfortunately, the convenient color-coding was lost in translocation and we've had to compensate by marking the area around each bin.
\n
\n- WHITE/GRAY STRIPES are for DELIVERIES.
\n- RED STRIPES are for CORPSES.
\n- EVERYTHING ELSE is for TRASH,
barring a few exceptions that should be labeled as such.
\n
\nIdeally the station won't sustain any heavy structural damage during your time here but if it does, or someone decides to tamper with/sabotage this system, you'll be forgiven if you can't put it back together perfectly.
\n
\n-C. Donnelly
Architectural Analyst" /obj/item/paper/guides/cogstation/janitor name = "a quick tip" @@ -128,7 +128,7 @@ Accidental Reentry: /obj/item/paper/guides/cogstation/letter_eng name = "To future Engineering staff:" - info = "I'm not gonna sugarcoat this. Compared to other departments, you might have your work cut out for you. CogStation is an entirely different beast than your standard Box, but everyone's still gonna expect you to keep the place running.
\n
\n If there's any good news, it's your time to shine if you know how to run a thermo-electric generator. That's what this station runs on, and that isn't likely to change anytime soon. If it's absolutely critical you might be able to run a singularity or tesla engine east of mining, but it won't have any sort of shielding out there.
\n
\nYou still have three solar arrays to work with, two of them being on each end of the starboard side. The port side array will need you to either get access from a head of staff or security, unless you want to spacewalk around the whole station. Don't be afraid to ask the latter - they're there for you, after all. As for other utilities the air system is a bit different than you'd expect, but fortunately you should have the atmos techs this station needed a long time ago. The disposal network is significantly more complicated, yet more capable. I've already elaborated on it, so I'll let you find and read my write-up for that. As for the routing system, it's just begging to get hit by a stray meteor so consider other utilities a higher priority.
\n
\nGood luck. You're gonna need it.
\n
\n-C. Donnelly
Architectural Analyst" + info = "I'm not gonna sugarcoat this. Compared to other departments, you might have your work cut out for you. CogStation is an entirely different beast than your standard Box, but everyone's still gonna expect you to keep the place running.
\n
\n If there's any good news, it's your time to shine if you know how to run a thermo-electric generator. That's what this station runs on, and that isn't likely to change anytime soon. If it's absolutely critical you might be able to run a singularity or tesla engine east of mining, but it won't have any sort of protection out there.
\n
\nYou still have three solar arrays to work with, two of them being on each end of the starboard side. The port side array will need you to either get access from a head of staff or security, unless you want to spacewalk around the whole station. Don't be afraid to ask the latter - they're there for you, after all. As for other utilities the air system is a bit different than you'd expect, but fortunately you should have the atmos techs this station needed a long time ago. The disposal network is significantly more complicated, yet more capable. I've already elaborated on it, so I'll let you find and read my write-up for that. As for the routing system, it's just begging to get hit by a stray meteor so consider other utilities a higher priority.
\n
\nGood luck. You're gonna need it.
\n
\n-C. Donnelly
Architectural Analyst" /obj/item/paper/guides/cogstation/letter_atmos name = "To future Atmospheric Technicians:" @@ -140,15 +140,15 @@ Accidental Reentry: /obj/item/paper/guides/cogstation/letter_hos name = "To the future HoS" - info = "I'm gonna be rather disappointed if CentCom doesn't brief you about this station, but if they don't I wrote up another letter for your department that should cover it pretty well. Make sure your officers read it if they aren't up to speed.
\n
\nSomething you in particular should know is that if someone's getting to be too much to handle, the boys and I have constructed a 'discount transfer centre' just behind the router. Use it only as a last resort - the walls may be reinforced but they're still thin, and you'll have big trouble on your hands if the AI or any cyborgs find out about it.
\n
-LC" + info = "I'm gonna be rather disappointed if Central Command doesn't brief you about this station, but if they don't I wrote up another letter for your department that should cover it pretty well. Make sure your officers read it if they aren't up to speed.
\n
\nSomething you in particular should know is that if someone's getting to be too much to handle, the boys and I have constructed a 'discount transfer centre' just behind the router. Use it only as a last resort - the walls may be reinforced but they're still thin, and you'll have big trouble on your hands if the AI or any cyborgs find out about it.
\n
-LC" /obj/item/paper/guides/cogstation/letter_supp name = "To future Supply Staff:" - info = "Cargo, move freight. Miners, don't die. Your jobs are pretty straightforward, which is likely why they originally fell under Engineering on this station as opposed to their own department. Although we've considerably readjusted this part of the station to accommodate you, there are potential differences you should be aware of.
\n
\nEngineeringwill have access to some of your department, namely the warehouse and mining dock. Mining operations on this station were originally asteroid-based, hence the catwalk into the great beyond. Although you won't need to worry about being space-worthy due to a newly installed shuttle dock, they might need to get out there.
\n
\nYou'll have all your usual means of shipping out goods, but the disposal network is more complex with a separate line for mail and trash. I've left another note that explains this in detail, but know trash is the janitor's responsibility, not yours.
\n
\nThe biggest difference has to be this station's router system, which allows departments to ship goods between themselves. Even if the belts aren't working properly they'll still have their own request consoles, so you'll want to check for orders regularly.
\n
\n-C. Donnelly
\nArchitectural Analyst" + info = "Cargo, move freight. Miners, don't die. Your jobs are pretty straightforward, which is likely why they originally fell under Engineering on this station as opposed to their own department. Although we've considerably readjusted this part of the station to accommodate you, there are potential differences you should be aware of.
\n
\nEngineeringwill have access to some of your department, namely the warehouse and mining dock. Mining operations on this station were originally asteroid-based, hence the catwalk into the great beyond. Although you won't need to worry about being space-worthy due to a newly installed shuttle dock, they might need to get out there.
\n
\nYou'll have all your usual means of shipping out goods, but the disposal network is more complex with a separate line for mail and trash. It also isn't fully space-proofed, meanin it may not be the best choice for livestock, monkey cubes, or clowns. I've left another note that explains this in detail, but know trash is the janitor's responsibility, not yours.
\n
\nThe biggest difference has to be this station's router system, which allows departments to ship goods between themselves. Even if the belts aren't working properly they'll still have their own request consoles, so you'll want to check for orders regularly.
\n
\n-C. Donnelly
\nArchitectural Analyst" -/obj/item/paper/fluff/cogstation/sleepers - name = "Re: Sleepers?" - info = "Yes, the sleepers are meant to be publicly accessible. Policies in this station's original location encouraged crew to visit the clinic or treat themselves when it came to minor injuries.
\n
\nThis is no excuse for you not to do your jobs. You may wish to keep an eye on the sleepers as to ensure they're being used responsibly. Remember, allowing an overdose to happen under your watch isn't much different from administering that overdose yourself.
\n
\n- Dr. Halley" +/obj/item/paper/guides/cogstation/letter_med + name = "Re: Future Medical Staff" + info = "With this station nearing approval for regular use, I've been told to consolidate anything noteworthy about its general medical department into a single document. As you may be able to guess, this is that document.
\n
\n- First, you should know a medical clinic is present in the civilian (starboard bow) wing. If you have personnel to spare, it's recommended you have someone staff it - that way people with minor injuries can report there instead of clogging up the research wing.
\n
\n- Despite recent renovations to bring this station in line with regional policy, you'll still find the robotics lab directly adjacent to your department. I advise you take full advantage of this, whether it's requesting prosthetics in advance or harvesting organs from those who have undergone more...permanent procedures.
\n
\n- Lastly, please make a habit of checking the morgue on a regular basis. Thanks to the Corpse Disposal Network (or CDN for short), you may find the station's deceased delivered directly to you. Some may be employees capable of being revived - more information can be found in the morgue itself.
\n
\n- Dr. Halley" /obj/item/paper/fluff/cogstation/cloner name = "Re: Issue with the cloner?" @@ -172,7 +172,7 @@ Accidental Reentry: /obj/item/paper/fluff/cogstation/letter_chap name = "A message from the DHDA" - info = "Regardless of what the name leads you to believe, CogStation is neither Ratvarian in origin nor designed by members of this so-called 'clock cult'. Despite a potential common enemy and instances of exhibiting peaceful behavior, their beliefs have been labeled 'Heretical' by the Department of Higher-Dimensional Affairs and following them is grounds for immediate termination.
\nAs the station's designated Chaplain, it is advised you correct anyone who claims this station and/or its designers are Ratvarian. While they are most likely misinformed or 'joking around', untruths gain credibility the more they are repeated.
\n
\nSoulstone Obelisk
\n
\nDepartment of Higher-Dimensional Affairs" + info = "Regardless of what the name leads you to believe, CogStation is neither Ratvarian in origin nor designed by members of this so-called 'clock cult'. Despite a potential common enemy and instances of exhibiting peaceful behavior, their beliefs have been labeled 'Heretical' by the Department of Higher-Dimensional Affairs and following them is grounds for immediate termination.
\nAs the station's designated Chaplain, it is advised you correct anyone who claims this station and/or its designers are Ratvarian. While they are most likely misinformed or 'joking around', untruths gain credibility the more they are repeated.
\n
\nSoulstone Obelisk
\n
\nDepartment of Higher-Dimensional Affairs" /obj/item/paper/fluff/cogstation/cluwne name = "Mysterious Note" @@ -184,7 +184,7 @@ Accidental Reentry: /obj/item/paper/fluff/cogstation/eva name = "MEMO: Spacesuits" - info = "As a Head of Personnel, you may be familiar with crew members requesting EVA access, particularly when there is an absence of credible threats on the station. While it is your decision to grant or deny access unless overriden by your superior(s), you should be aware of an abundance of spacesuits on this station. While intended for emergencies, these suits are cheaper to replace. You may find it beneficial to direct aspiring 'space explorers' towards finding one of these suits instead, although it is advised you order replacement suits in advance through the cargo department.
\n
\n-Generated by Organic Resources Bot #2053" + info = "As a Head of Personnel, you may be familiar with crew members requesting EVA access, particularly when there is an absence of credible threats on the station. While it is your decision to grant or deny access unless overriden by your superior(s), you should be aware of an abundance of spacesuits on this station. While intended for emergencies, these suits are cheaper to replace. You may find it beneficial to direct aspiring 'space explorers' towards finding one of these suits instead, although it is advised you order replacement suits in advance through the cargo department.
\n
\nGenerated by Organic Resources Bot #2053" /obj/item/paper/fluff/cogstation/chemists name = "Re: Scientists?!" @@ -214,9 +214,9 @@ Accidental Reentry: name = "ROUTER STATUS: LIMITED" info = "Currently, this router cannot receive deliveries from the Airbridge, MedSci, Security, or Service Routers. Cargo and the recycler are the only points currently accepting deliveries from here, although manual input from the routing depot is currently required.
\n
\n-C. Donnelly
\n
\nArchitectural Analyst" -/obj/item/paper/fluff/cogstation/router_cargo - name = "ROUTER STATUS: VERY LIMITED" - info = "Currently, this router cannot receive deliveries from the Airbridge, MedSci, Security, or Service Routers. It is not yet capable of making deliveries, beyond sending items to the recycler.
\n
\n-C. Donnelly
\n
\nArchitectural Analyst" +/obj/item/paper/fluff/cogstation/mulebot + name = "MEMO: MULEbots" + info = "As you may know, MULEbots have been coded to minimize travel distance for maximum efficiency. In the case of this station, that may include travelling through depressurized areas exposed to space. Please bear this in mind before using them to transport living tissue.
\n
\nGenerated by Organic Resources Bot #2053" /////////// CentCom From cdb3647c56d76de8c203bcf3ca59f18dbb24328d Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 24 Aug 2020 15:38:49 +0100 Subject: [PATCH 50/94] thank --- code/game/objects/items/weaponry.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/weaponry.dm b/code/game/objects/items/weaponry.dm index 5555040f55..153be3900e 100644 --- a/code/game/objects/items/weaponry.dm +++ b/code/game/objects/items/weaponry.dm @@ -330,13 +330,13 @@ for further reading, please see: https://github.com/tgstation/tgstation/pull/301 /obj/item/melee/bokken/attack_self(mob/user) harm = !harm if(harm) - force -= 4 + force -= stamina_damage_increment damtype = BRUTE attack_verb = list("bashed", "smashed", "attacked") bare_wound_bonus = 15 // having your leg smacked by a wooden stick is probably not great for it if it's naked wound_bonus = 0 else - force += 4 + force += stamina_damage_increment damtype = STAMINA attack_verb = list("whacked", "smacked", "struck") bare_wound_bonus = 0 From be22486913b5ca73532a5e84b3a128e7bace3e2b Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Mon, 24 Aug 2020 19:55:10 +0100 Subject: [PATCH 51/94] this hurt to do manually --- .../sprite_accessories/alienpeople.dm | 16 +- .../sprite_accessories/body_markings.dm | 188 +++++----- .../new_player/sprite_accessories/ears.dm | 72 ++-- .../new_player/sprite_accessories/frills.dm | 8 +- .../sprite_accessories/hair_face.dm | 9 +- .../sprite_accessories/hair_head.dm | 8 +- .../new_player/sprite_accessories/horns.dm | 24 +- .../sprite_accessories/ipc_synths.dm | 161 ++++---- .../sprite_accessories/legs_and_taurs.dm | 28 +- .../new_player/sprite_accessories/snouts.dm | 149 ++++---- .../new_player/sprite_accessories/socks.dm | 58 +-- .../new_player/sprite_accessories/spines.dm | 40 +- .../new_player/sprite_accessories/synthliz.dm | 36 +- .../new_player/sprite_accessories/tails.dm | 351 +++++++++--------- .../sprite_accessories/undershirt.dm | 251 ++++++------- .../sprite_accessories/underwear.dm | 68 ++-- .../new_player/sprite_accessories/wings.dm | 48 +-- 17 files changed, 756 insertions(+), 759 deletions(-) diff --git a/code/modules/mob/dead/new_player/sprite_accessories/alienpeople.dm b/code/modules/mob/dead/new_player/sprite_accessories/alienpeople.dm index 899bf91081..d1f7f15ac9 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/alienpeople.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/alienpeople.dm @@ -14,14 +14,14 @@ name = "Standard" icon_state = "standard" -/datum/sprite_accessory/xeno_dorsal/royal - name = "Royal" - icon_state = "royal" - /datum/sprite_accessory/xeno_dorsal/down name = "Dorsal Down" icon_state = "down" +/datum/sprite_accessory/xeno_dorsal/royal + name = "Royal" + icon_state = "royal" + /****************************************** ************* Xeno Tails ****************** *******************************************/ @@ -57,14 +57,14 @@ name = "Standard" icon_state = "standard" -/datum/sprite_accessory/xeno_head/royal - name = "royal" - icon_state = "royal" - /datum/sprite_accessory/xeno_head/hollywood name = "hollywood" icon_state = "hollywood" +/datum/sprite_accessory/xeno_head/royal + name = "royal" + icon_state = "royal" + /datum/sprite_accessory/xeno_head/warrior name = "warrior" icon_state = "warrior" diff --git a/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm b/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm index a04838a360..5286acb33a 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/body_markings.dm @@ -16,6 +16,12 @@ icon_state = "dtiger" gender_specific = 1 +/datum/sprite_accessory/body_markings/guilmon + name = "Guilmon" + icon_state = "guilmon" + color_src = MATRIXED + icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' + /datum/sprite_accessory/body_markings/ltiger name = "Light Tiger Body" icon_state = "ltiger" @@ -49,11 +55,6 @@ icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' relevant_layers = null -/datum/sprite_accessory/mam_body_markings/plain - name = "Plain" - icon_state = "plain" - icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' - /datum/sprite_accessory/mam_body_markings/redpanda name = "Redpanda" icon_state = "redpanda" @@ -77,14 +78,14 @@ icon_state = "bellyslim" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' -/datum/sprite_accessory/mam_body_markings/corgi - name = "Corgi" - icon_state = "corgi" - /datum/sprite_accessory/mam_body_markings/cow name = "Bovine" icon_state = "bovine" +/datum/sprite_accessory/mam_body_markings/corgi + name = "Corgi" + icon_state = "corgi" + /datum/sprite_accessory/mam_body_markings/corvid name = "Corvid" icon_state = "corvid" @@ -139,15 +140,19 @@ name = "Hyena" icon_state = "hyena" -/datum/sprite_accessory/mam_body_markings/lab - name = "Lab" - icon_state = "lab" - /datum/sprite_accessory/mam_body_markings/insect name = "Insect" icon_state = "insect" icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' +/datum/sprite_accessory/mam_body_markings/lab + name = "Lab" + icon_state = "lab" + +/datum/sprite_accessory/mam_body_markings/orca + name = "Orca" + icon_state = "orca" + /datum/sprite_accessory/mam_body_markings/otie name = "Otie" icon_state = "otie" @@ -156,14 +161,15 @@ name = "Otter" icon_state = "otter" -/datum/sprite_accessory/mam_body_markings/orca - name = "Orca" - icon_state = "orca" - /datum/sprite_accessory/mam_body_markings/panther name = "Panther" icon_state = "panther" +/datum/sprite_accessory/mam_body_markings/plain + name = "Plain" + icon_state = "plain" + icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' + /datum/sprite_accessory/mam_body_markings/possum name = "Possum" icon_state = "possum" @@ -172,6 +178,10 @@ name = "Raccoon" icon_state = "raccoon" +/datum/sprite_accessory/mam_body_markings/sergal + name = "Sergal" + icon_state = "sergal" + /datum/sprite_accessory/mam_body_markings/pede name = "Scolipede" icon_state = "scolipede" @@ -181,18 +191,14 @@ name = "Shark" icon_state = "shark" -/datum/sprite_accessory/mam_body_markings/skunk - name = "Skunk" - icon_state = "skunk" - -/datum/sprite_accessory/mam_body_markings/sergal - name = "Sergal" - icon_state = "sergal" - /datum/sprite_accessory/mam_body_markings/shepherd name = "Shepherd" icon_state = "shepherd" +/datum/sprite_accessory/mam_body_markings/skunk + name = "Skunk" + icon_state = "skunk" + /datum/sprite_accessory/mam_body_markings/tajaran name = "Tajaran" icon_state = "tajaran" @@ -232,75 +238,10 @@ icon_state = "none" relevant_layers = null -/datum/sprite_accessory/insect_fluff/plain - name = "Plain" - icon_state = "plain" - -/datum/sprite_accessory/insect_fluff/reddish - name = "Reddish" - icon_state = "redish" - -/datum/sprite_accessory/insect_fluff/royal - name = "Royal" - icon_state = "royal" - -/datum/sprite_accessory/insect_fluff/gothic - name = "Gothic" - icon_state = "gothic" - -/datum/sprite_accessory/insect_fluff/lovers - name = "Lovers" - icon_state = "lovers" - -/datum/sprite_accessory/insect_fluff/whitefly - name = "White Fly" - icon_state = "whitefly" - /datum/sprite_accessory/insect_fluff/punished name = "Burnt Off" icon_state = "punished" -/datum/sprite_accessory/insect_fluff/firewatch - name = "Firewatch" - icon_state = "firewatch" - -/datum/sprite_accessory/insect_fluff/deathhead - name = "Deathshead" - icon_state = "deathhead" - -/datum/sprite_accessory/insect_fluff/poison - name = "Poison" - icon_state = "poison" - -/datum/sprite_accessory/insect_fluff/ragged - name = "Ragged" - icon_state = "ragged" - -/datum/sprite_accessory/insect_fluff/moonfly - name = "Moon Fly" - icon_state = "moonfly" - -/datum/sprite_accessory/insect_fluff/snow - name = "Snow" - icon_state = "snow" - -/datum/sprite_accessory/insect_fluff/oakworm - name = "Oak Worm" - icon_state = "oakworm" - -/datum/sprite_accessory/insect_fluff/jungle - name = "Jungle" - icon_state = "jungle" - -/datum/sprite_accessory/insect_fluff/witchwing - name = "Witch Wing" - icon_state = "witchwing" - -/datum/sprite_accessory/insect_fluff/colored - name = "Colored (Hair)" - icon_state = "snow" - color_src = HAIR - /datum/sprite_accessory/insect_fluff/colored1 name = "Colored (Primary)" icon_state = "snow" @@ -314,4 +255,69 @@ /datum/sprite_accessory/insect_fluff/colored3 name = "Colored (Tertiary)" icon_state = "snow" - color_src = MUTCOLORS3 \ No newline at end of file + color_src = MUTCOLORS3 + +/datum/sprite_accessory/insect_fluff/colored + name = "Colored (Hair)" + icon_state = "snow" + color_src = HAIR + +/datum/sprite_accessory/insect_fluff/deathhead + name = "Deathshead" + icon_state = "deathhead" + +/datum/sprite_accessory/insect_fluff/firewatch + name = "Firewatch" + icon_state = "firewatch" + +/datum/sprite_accessory/insect_fluff/gothic + name = "Gothic" + icon_state = "gothic" + +/datum/sprite_accessory/insect_fluff/jungle + name = "Jungle" + icon_state = "jungle" + +/datum/sprite_accessory/insect_fluff/lovers + name = "Lovers" + icon_state = "lovers" + +/datum/sprite_accessory/insect_fluff/moonfly + name = "Moon Fly" + icon_state = "moonfly" + +/datum/sprite_accessory/insect_fluff/oakworm + name = "Oak Worm" + icon_state = "oakworm" + +/datum/sprite_accessory/insect_fluff/plain + name = "Plain" + icon_state = "plain" + +/datum/sprite_accessory/insect_fluff/poison + name = "Poison" + icon_state = "poison" + +/datum/sprite_accessory/insect_fluff/ragged + name = "Ragged" + icon_state = "ragged" + +/datum/sprite_accessory/insect_fluff/reddish + name = "Reddish" + icon_state = "redish" + +/datum/sprite_accessory/insect_fluff/royal + name = "Royal" + icon_state = "royal" + +/datum/sprite_accessory/insect_fluff/snow + name = "Snow" + icon_state = "snow" + +/datum/sprite_accessory/insect_fluff/whitefly + name = "White Fly" + icon_state = "whitefly" + +/datum/sprite_accessory/insect_fluff/witchwing + name = "Witch Wing" + icon_state = "witchwing" diff --git a/code/modules/mob/dead/new_player/sprite_accessories/ears.dm b/code/modules/mob/dead/new_player/sprite_accessories/ears.dm index 1e6c797364..7515ce560a 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/ears.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/ears.dm @@ -41,7 +41,7 @@ extra = TRUE extra_color_src = NONE -/datum/sprite_accessory/ears/human/bigwolfdark +/datum/sprite_accessory/ears/human/bigwolfdark //ignore alphabetical sort here for ease-of-use name = "Dark Big Wolf" icon_state = "bigwolfdark" icon = 'modular_citadel/icons/mob/mam_ears.dmi' @@ -55,6 +55,12 @@ extra = TRUE extra_color_src = NONE +/datum/sprite_accessory/ears/bunny + name = "Bunny" + icon_state = "bunny" + color_src = MATRIXED + icon = 'modular_citadel/icons/mob/mam_ears.dmi' + /datum/sprite_accessory/ears/cat name = "Cat" icon_state = "cat" @@ -74,6 +80,12 @@ icon = 'modular_citadel/icons/mob/mam_ears.dmi' color_src = MUTCOLORS3 +/datum/sprite_accessory/ears/lab + name = "Dog, Floppy" + icon_state = "lab" + color_src = MATRIXED + icon = 'modular_citadel/icons/mob/mam_ears.dmi' + /datum/sprite_accessory/ears/human/eevee name = "Eevee" icon_state = "eevee" @@ -115,12 +127,6 @@ icon_state = "jellyfish" color_src = HAIR -/datum/sprite_accessory/ears/lab - name = "Dog, Floppy" - icon_state = "lab" - color_src = MATRIXED - icon = 'modular_citadel/icons/mob/mam_ears.dmi' - /datum/sprite_accessory/ears/murid name = "Murid" icon_state = "murid" @@ -133,18 +139,18 @@ color_src = MATRIXED icon = 'modular_citadel/icons/mob/mam_ears.dmi' -/datum/sprite_accessory/ears/human/pede - name = "Scolipede" - icon_state = "pede" - icon = 'modular_citadel/icons/mob/mam_ears.dmi' - color_src = MATRIXED - /datum/sprite_accessory/ears/human/rabbit name = "Rabbit" icon_state = "rabbit" color_src = MATRIXED icon = 'modular_citadel/icons/mob/mam_ears.dmi' +/datum/sprite_accessory/ears/human/pede + name = "Scolipede" + icon_state = "pede" + icon = 'modular_citadel/icons/mob/mam_ears.dmi' + color_src = MATRIXED + /datum/sprite_accessory/ears/human/sergal name = "Sergal" icon_state = "sergal" @@ -169,12 +175,6 @@ color_src = MATRIXED icon = 'modular_citadel/icons/mob/mam_ears.dmi' -/datum/sprite_accessory/ears/bunny - name = "Bunny" - icon_state = "bunny" - color_src = MATRIXED - icon = 'modular_citadel/icons/mob/mam_ears.dmi' - /****************************************** *************** Furry Ears **************** *******************************************/ @@ -216,7 +216,7 @@ extra = TRUE extra_color_src = NONE -/datum/sprite_accessory/ears/mam_ears/bigwolfdark +/datum/sprite_accessory/ears/mam_ears/bigwolfdark //alphabetical sort ignored here for ease-of-use name = "Dark Big Wolf" icon_state = "bigwolfdark" @@ -226,6 +226,10 @@ extra = TRUE extra_color_src = NONE +/datum/sprite_accessory/ears/mam_ears/bunny + name = "Bunny" + icon_state = "bunny" + /datum/sprite_accessory/ears/mam_ears/cat name = "Cat" icon_state = "cat" @@ -256,13 +260,11 @@ name = "Eevee" icon_state = "eevee" - /datum/sprite_accessory/ears/mam_ears/elf name = "Elf" icon_state = "elf" color_src = MUTCOLORS3 - /datum/sprite_accessory/ears/mam_ears/elephant name = "Elephant" icon_state = "elephant" @@ -283,15 +285,15 @@ name = "Husky" icon_state = "wolf" -/datum/sprite_accessory/ears/mam_ears/kangaroo - name = "kangaroo" - icon_state = "kangaroo" - /datum/sprite_accessory/ears/mam_ears/jellyfish name = "Jellyfish" icon_state = "jellyfish" color_src = HAIR +/datum/sprite_accessory/ears/mam_ears/kangaroo + name = "kangaroo" + icon_state = "kangaroo" + /datum/sprite_accessory/ears/mam_ears/lab name = "Dog, Long" icon_state = "lab" @@ -304,18 +306,14 @@ name = "Otusian" icon_state = "otie" -/datum/sprite_accessory/ears/mam_ears/squirrel - name = "Squirrel" - icon_state = "squirrel" +/datum/sprite_accessory/ears/mam_ears/rabbit + name = "Rabbit" + icon_state = "rabbit" /datum/sprite_accessory/ears/mam_ears/pede name = "Scolipede" icon_state = "pede" -/datum/sprite_accessory/ears/mam_ears/rabbit - name = "Rabbit" - icon_state = "rabbit" - /datum/sprite_accessory/ears/mam_ears/sergal name = "Sergal" icon_state = "sergal" @@ -324,10 +322,10 @@ name = "skunk" icon_state = "skunk" +/datum/sprite_accessory/ears/mam_ears/squirrel + name = "Squirrel" + icon_state = "squirrel" + /datum/sprite_accessory/ears/mam_ears/wolf name = "Wolf" icon_state = "wolf" - -/datum/sprite_accessory/ears/mam_ears/bunny - name = "Bunny" - icon_state = "bunny" diff --git a/code/modules/mob/dead/new_player/sprite_accessories/frills.dm b/code/modules/mob/dead/new_player/sprite_accessories/frills.dm index 18a76df116..49013161a9 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/frills.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/frills.dm @@ -11,6 +11,10 @@ icon_state = "none" relevant_layers = null +/datum/sprite_accessory/frills/aquatic + name = "Aquatic" + icon_state = "aqua" + /datum/sprite_accessory/frills/simple name = "Simple" icon_state = "simple" @@ -18,7 +22,3 @@ /datum/sprite_accessory/frills/short name = "Short" icon_state = "short" - -/datum/sprite_accessory/frills/aquatic - name = "Aquatic" - icon_state = "aqua" diff --git a/code/modules/mob/dead/new_player/sprite_accessories/hair_face.dm b/code/modules/mob/dead/new_player/sprite_accessories/hair_face.dm index 34988f5656..a07fdaa5d3 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/hair_face.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/hair_face.dm @@ -6,6 +6,10 @@ gender = MALE // barf (unless you're a dorf, dorfs dig chix w/ beards :P) // please make sure they're sorted alphabetically and categorized +/datum/sprite_accessory/facial_hair/shaved //this is exempt from the alphabetical sort + name = "Shaved" + icon_state = null + gender = NEUTER /datum/sprite_accessory/facial_hair/threeoclock name = "Beard (3 o\'Clock)" @@ -135,11 +139,6 @@ name = "Mutton Chops with Moustache" icon_state = "facial_muttonmus" -/datum/sprite_accessory/facial_hair/shaved - name = "Shaved" - icon_state = null - gender = NEUTER - /datum/sprite_accessory/facial_hair/sideburn name = "Sideburns" icon_state = "facial_sideburns" diff --git a/code/modules/mob/dead/new_player/sprite_accessories/hair_head.dm b/code/modules/mob/dead/new_player/sprite_accessories/hair_head.dm index 138704067d..8e4e6ad617 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/hair_head.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/hair_head.dm @@ -9,6 +9,10 @@ // try to spell // you do not need to define _s or _l sub-states, game automatically does this for you +/datum/sprite_accessory/hair/bald //this is exempt from the alphabetical sort + name = "Bald" + icon_state = "bald" + /datum/sprite_accessory/hair/afro name = "Afro" icon_state = "hair_afro" @@ -25,10 +29,6 @@ name = "Ahoge" icon_state = "hair_antenna" -/datum/sprite_accessory/hair/bald - name = "Bald" - icon_state = "bald" - /datum/sprite_accessory/hair/balding name = "Balding Hair" icon_state = "hair_e" diff --git a/code/modules/mob/dead/new_player/sprite_accessories/horns.dm b/code/modules/mob/dead/new_player/sprite_accessories/horns.dm index 3a65eaebfa..aff342c7a6 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/horns.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/horns.dm @@ -12,22 +12,10 @@ icon_state = "none" relevant_layers = null -/datum/sprite_accessory/horns/simple - name = "Simple" - icon_state = "simple" - -/datum/sprite_accessory/horns/short - name = "Short" - icon_state = "short" - /datum/sprite_accessory/horns/curled name = "Curled" icon_state = "curled" -/datum/sprite_accessory/horns/ram - name = "Ram" - icon_state = "ram" - /datum/sprite_accessory/horns/angler name = "Angeler" icon_state = "angler" @@ -40,3 +28,15 @@ /datum/sprite_accessory/horns/guilmon name = "Guilmon" icon_state = "guilmon" + +/datum/sprite_accessory/horns/ram + name = "Ram" + icon_state = "ram" + +/datum/sprite_accessory/horns/simple + name = "Simple" + icon_state = "simple" + +/datum/sprite_accessory/horns/short + name = "Short" + icon_state = "short" diff --git a/code/modules/mob/dead/new_player/sprite_accessories/ipc_synths.dm b/code/modules/mob/dead/new_player/sprite_accessories/ipc_synths.dm index 110ac69201..6019245b80 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/ipc_synths.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/ipc_synths.dm @@ -11,96 +11,90 @@ name = "Blank" icon_state = "blank" -/datum/sprite_accessory/screen/pink - name = "Pink" - icon_state = "pink" - -/datum/sprite_accessory/screen/green - name = "Green" - icon_state = "green" - -/datum/sprite_accessory/screen/red - name = "Red" - icon_state = "red" - /datum/sprite_accessory/screen/blue name = "Blue" icon_state = "blue" -/datum/sprite_accessory/screen/yellow - name = "Yellow" - icon_state = "yellow" - -/datum/sprite_accessory/screen/shower - name = "Shower" - icon_state = "shower" - -/datum/sprite_accessory/screen/nature - name = "Nature" - icon_state = "nature" - -/datum/sprite_accessory/screen/eight - name = "Eight" - icon_state = "eight" - -/datum/sprite_accessory/screen/goggles - name = "Goggles" - icon_state = "goggles" - -/datum/sprite_accessory/screen/heart - name = "Heart" - icon_state = "heart" - -/datum/sprite_accessory/screen/monoeye - name = "Mono eye" - icon_state = "monoeye" - /datum/sprite_accessory/screen/breakout name = "Breakout" icon_state = "breakout" -/datum/sprite_accessory/screen/purple - name = "Purple" - icon_state = "purple" - -/datum/sprite_accessory/screen/scroll - name = "Scroll" - icon_state = "scroll" +/datum/sprite_accessory/screen/bsod + name = "BSOD" + icon_state = "bsod" /datum/sprite_accessory/screen/console name = "Console" icon_state = "console" -/datum/sprite_accessory/screen/rgb - name = "RGB" - icon_state = "rgb" +/datum/sprite_accessory/screen/eight + name = "Eight" + icon_state = "eight" + +/datum/sprite_accessory/screen/eyes + name = "Eyes" + icon_state = "eyes" + +/datum/sprite_accessory/screen/ecgwave + name = "ECG wave" + icon_state = "ecgwave" + +/datum/sprite_accessory/screen/green + name = "Green" + icon_state = "green" + +/datum/sprite_accessory/screen/goggles + name = "Goggles" + icon_state = "goggles" /datum/sprite_accessory/screen/golglider name = "Gol Glider" icon_state = "golglider" +/datum/sprite_accessory/screen/heart + name = "Heart" + icon_state = "heart" + +/datum/sprite_accessory/screen/pink + name = "Pink" + icon_state = "pink" + +/datum/sprite_accessory/screen/red + name = "Red" + icon_state = "red" + +/datum/sprite_accessory/screen/monoeye + name = "Mono eye" + icon_state = "monoeye" + +/datum/sprite_accessory/screen/nature + name = "Nature" + icon_state = "nature" + +/datum/sprite_accessory/screen/purple + name = "Purple" + icon_state = "purple" + /datum/sprite_accessory/screen/rainbow name = "Rainbow" icon_state = "rainbow" -/datum/sprite_accessory/screen/sunburst - name = "Sunburst" - icon_state = "sunburst" - -/datum/sprite_accessory/screen/static - name = "Static" - icon_state = "static" - -//Oracle Station sprites - -/datum/sprite_accessory/screen/bsod - name = "BSOD" - icon_state = "bsod" - /datum/sprite_accessory/screen/redtext name = "Red Text" icon_state = "retext" +/datum/sprite_accessory/screen/rgb + name = "RGB" + icon_state = "rgb" + +/datum/sprite_accessory/screen/scroll + name = "Scroll" + icon_state = "scroll" + +/datum/sprite_accessory/screen/shower + name = "Shower" + icon_state = "shower" + /datum/sprite_accessory/screen/sinewave name = "Sine wave" icon_state = "sinewave" @@ -109,22 +103,25 @@ name = "Square wave" icon_state = "squarwave" -/datum/sprite_accessory/screen/ecgwave - name = "ECG wave" - icon_state = "ecgwave" +/datum/sprite_accessory/screen/stars + name = "Stars" + icon_state = "stars" -/datum/sprite_accessory/screen/eyes - name = "Eyes" - icon_state = "eyes" +/datum/sprite_accessory/screen/static + name = "Static" + icon_state = "static" + +/datum/sprite_accessory/screen/sunburst + name = "Sunburst" + icon_state = "sunburst" /datum/sprite_accessory/screen/textdrop name = "Text drop" icon_state = "textdrop" -/datum/sprite_accessory/screen/stars - name = "Stars" - icon_state = "stars" - +/datum/sprite_accessory/screen/yellow + name = "Yellow" + icon_state = "yellow" /****************************************** ************** IPC Antennas *************** @@ -145,14 +142,6 @@ name = "Angled Antennae" icon_state = "antennae" -/datum/sprite_accessory/antenna/tvantennae - name = "TV Antennae" - icon_state = "tvantennae" - -/datum/sprite_accessory/antenna/cyberhead - name = "Cyberhead" - icon_state = "cyberhead" - /datum/sprite_accessory/antenna/antlers name = "Antlers" icon_state = "antlers" @@ -160,3 +149,11 @@ /datum/sprite_accessory/antenna/crowned name = "Crowned" icon_state = "crowned" + +/datum/sprite_accessory/antenna/cyberhead + name = "Cyberhead" + icon_state = "cyberhead" + +/datum/sprite_accessory/antenna/tvantennae + name = "TV Antennae" + icon_state = "tvantennae" diff --git a/code/modules/mob/dead/new_player/sprite_accessories/legs_and_taurs.dm b/code/modules/mob/dead/new_player/sprite_accessories/legs_and_taurs.dm index d41f5ace22..6f7b955d8f 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/legs_and_taurs.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/legs_and_taurs.dm @@ -49,6 +49,13 @@ relevant_layers = null hide_legs = FALSE +/datum/sprite_accessory/taur/canine + name = "Canine" + icon_state = "canine" + taur_mode = STYLE_PAW_TAURIC + color_src = MUTCOLORS + extra = TRUE + /datum/sprite_accessory/taur/cow name = "Cow" icon_state = "cow" @@ -95,6 +102,13 @@ color_src = MUTCOLORS extra = TRUE +/datum/sprite_accessory/taur/feline + name = "Feline" + icon_state = "feline" + taur_mode = STYLE_PAW_TAURIC + color_src = MUTCOLORS + extra = TRUE + /datum/sprite_accessory/taur/horse name = "Horse" icon_state = "horse" @@ -126,17 +140,3 @@ taur_mode = STYLE_SNEK_TAURIC color_src = MUTCOLORS hide_legs = USE_SNEK_CLIP_MASK - -/datum/sprite_accessory/taur/canine - name = "Canine" - icon_state = "canine" - taur_mode = STYLE_PAW_TAURIC - color_src = MUTCOLORS - extra = TRUE - -/datum/sprite_accessory/taur/feline - name = "Feline" - icon_state = "feline" - taur_mode = STYLE_PAW_TAURIC - color_src = MUTCOLORS - extra = TRUE diff --git a/code/modules/mob/dead/new_player/sprite_accessories/snouts.dm b/code/modules/mob/dead/new_player/sprite_accessories/snouts.dm index f514ef54db..99d2c67cc9 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/snouts.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/snouts.dm @@ -7,14 +7,19 @@ var/obj/item/bodypart/head/HD = H.get_bodypart(BODY_ZONE_HEAD) return ((H.wear_mask && (H.wear_mask.flags_inv & HIDESNOUT)) || (H.head && (H.head.flags_inv & HIDESNOUT)) || !HD || HD.status == BODYPART_ROBOTIC) -/datum/sprite_accessory/snouts/sharp - name = "Sharp" - icon_state = "sharp" +/datum/sprite_accessory/snout/guilmon + name = "Guilmon" + icon_state = "guilmon" + color_src = MATRIXED /datum/sprite_accessory/snouts/round name = "Round" icon_state = "round" +/datum/sprite_accessory/snouts/sharp + name = "Sharp" + icon_state = "sharp" + /datum/sprite_accessory/snouts/sharplight name = "Sharp + Light" icon_state = "sharplight" @@ -23,11 +28,6 @@ name = "Round + Light" icon_state = "roundlight" -/datum/sprite_accessory/snout/guilmon - name = "Guilmon" - icon_state = "guilmon" - color_src = MATRIXED - //christ this was a mistake, but it's here just in case someone wants to selectively fix -- Pooj /************* Lizard compatable snoots *********** /datum/sprite_accessory/snouts/bird @@ -192,11 +192,19 @@ extra = TRUE extra_color_src = MUTCOLORS3 -/datum/sprite_accessory/snouts/mam_snouts/skulldog - name = "Skulldog" - icon_state = "skulldog" +/datum/sprite_accessory/snouts/mam_snouts/husky + name = "Husky" + icon_state = "husky" + +/datum/sprite_accessory/snouts/mam_snouts/rhino + name = "Horn" + icon_state = "rhino" extra = TRUE - extra_color_src = MATRIXED + extra = MUTCOLORS3 + +/datum/sprite_accessory/snouts/mam_snouts/rodent + name = "Rodent" + icon_state = "rodent" /datum/sprite_accessory/snouts/mam_snouts/lcanid name = "Mammal, Long" @@ -226,32 +234,20 @@ name = "Mammal, Thick ALT" icon_state = "wolfalt" -/datum/sprite_accessory/snouts/mam_snouts/redpanda - name = "WahCoon" - icon_state = "wah" - -/datum/sprite_accessory/snouts/mam_snouts/redpandaalt - name = "WahCoon ALT" - icon_state = "wahalt" - -/datum/sprite_accessory/snouts/mam_snouts/rhino - name = "Horn" - icon_state = "rhino" - extra = TRUE - extra = MUTCOLORS3 - -/datum/sprite_accessory/snouts/mam_snouts/rodent - name = "Rodent" - icon_state = "rodent" - -/datum/sprite_accessory/snouts/mam_snouts/husky - name = "Husky" - icon_state = "husky" - /datum/sprite_accessory/snouts/mam_snouts/otie name = "Otie" icon_state = "otie" +/datum/sprite_accessory/snouts/mam_snouts/round + name = "Round" + icon_state = "round" + color_src = MUTCOLORS + +/datum/sprite_accessory/snouts/mam_snouts/roundlight + name = "Round + Light" + icon_state = "roundlight" + color_src = MUTCOLORS + /datum/sprite_accessory/snouts/mam_snouts/pede name = "Scolipede" icon_state = "pede" @@ -268,30 +264,33 @@ name = "hShark" icon_state = "hshark" -/datum/sprite_accessory/snouts/mam_snouts/toucan - name = "Toucan" - icon_state = "toucan" - /datum/sprite_accessory/snouts/mam_snouts/sharp name = "Sharp" icon_state = "sharp" color_src = MUTCOLORS -/datum/sprite_accessory/snouts/mam_snouts/round - name = "Round" - icon_state = "round" - color_src = MUTCOLORS - /datum/sprite_accessory/snouts/mam_snouts/sharplight name = "Sharp + Light" icon_state = "sharplight" color_src = MUTCOLORS -/datum/sprite_accessory/snouts/mam_snouts/roundlight - name = "Round + Light" - icon_state = "roundlight" - color_src = MUTCOLORS +/datum/sprite_accessory/snouts/mam_snouts/skulldog + name = "Skulldog" + icon_state = "skulldog" + extra = TRUE + extra_color_src = MATRIXED +/datum/sprite_accessory/snouts/mam_snouts/toucan + name = "Toucan" + icon_state = "toucan" + +/datum/sprite_accessory/snouts/mam_snouts/redpanda + name = "WahCoon" + icon_state = "wah" + +/datum/sprite_accessory/snouts/mam_snouts/redpandaalt + name = "WahCoon ALT" + icon_state = "wahalt" /****************************************** **************** Snouts ******************* @@ -318,6 +317,16 @@ extra = TRUE extra_color_src = MUTCOLORS3 +/datum/sprite_accessory/snouts/mam_snouts/frhino + name = "Horn (Top)" + icon_state = "frhino" + extra = TRUE + extra = MUTCOLORS3 + +/datum/sprite_accessory/snouts/mam_snouts/fhusky + name = "Husky (Top)" + icon_state = "fhusky" + /datum/sprite_accessory/snouts/mam_snouts/flcanid name = "Mammal, Long (Top)" icon_state = "flcanid" @@ -346,27 +355,23 @@ name = "Mammal, Thick ALT (Top)" icon_state = "fwolfalt" -/datum/sprite_accessory/snouts/mam_snouts/fredpanda - name = "WahCoon (Top)" - icon_state = "fwah" - -/datum/sprite_accessory/snouts/mam_snouts/frhino - name = "Horn (Top)" - icon_state = "frhino" - extra = TRUE - extra = MUTCOLORS3 +/datum/sprite_accessory/snouts/mam_snouts/fotie + name = "Otie (Top)" + icon_state = "fotie" /datum/sprite_accessory/snouts/mam_snouts/frodent name = "Rodent (Top)" icon_state = "frodent" -/datum/sprite_accessory/snouts/mam_snouts/fhusky - name = "Husky (Top)" - icon_state = "fhusky" +/datum/sprite_accessory/snouts/mam_snouts/fround + name = "Round (Top)" + icon_state = "fround" + color_src = MUTCOLORS -/datum/sprite_accessory/snouts/mam_snouts/fotie - name = "Otie (Top)" - icon_state = "fotie" +/datum/sprite_accessory/snouts/mam_snouts/froundlight + name = "Round + Light (Top)" + icon_state = "froundlight" + color_src = MUTCOLORS /datum/sprite_accessory/snouts/mam_snouts/fpede name = "Scolipede (Top)" @@ -380,26 +385,20 @@ name = "Shark (Top)" icon_state = "fshark" -/datum/sprite_accessory/snouts/mam_snouts/ftoucan - name = "Toucan (Top)" - icon_state = "ftoucan" - /datum/sprite_accessory/snouts/mam_snouts/fsharp name = "Sharp (Top)" icon_state = "fsharp" color_src = MUTCOLORS -/datum/sprite_accessory/snouts/mam_snouts/fround - name = "Round (Top)" - icon_state = "fround" - color_src = MUTCOLORS - /datum/sprite_accessory/snouts/mam_snouts/fsharplight name = "Sharp + Light (Top)" icon_state = "fsharplight" color_src = MUTCOLORS -/datum/sprite_accessory/snouts/mam_snouts/froundlight - name = "Round + Light (Top)" - icon_state = "froundlight" - color_src = MUTCOLORS +/datum/sprite_accessory/snouts/mam_snouts/ftoucan + name = "Toucan (Top)" + icon_state = "ftoucan" + +/datum/sprite_accessory/snouts/mam_snouts/fredpanda + name = "WahCoon (Top)" + icon_state = "fwah" diff --git a/code/modules/mob/dead/new_player/sprite_accessories/socks.dm b/code/modules/mob/dead/new_player/sprite_accessories/socks.dm index 19ec677a72..ffb808eede 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/socks.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/socks.dm @@ -20,6 +20,10 @@ name = "Knee-high - Bee" icon_state = "bee_knee" +/datum/sprite_accessory/underwear/socks/christmas_knee + name = "Knee-High - Christmas" + icon_state = "christmas_knee" + /datum/sprite_accessory/underwear/socks/commie_knee name = "Knee-High - Commie" icon_state = "commie_knee" @@ -32,6 +36,14 @@ name = "Knee-high - Rainbow" icon_state = "rainbow_knee" +/datum/sprite_accessory/underwear/socks/candycaner_knee + name = "Knee-High - Red Candy Cane" + icon_state = "candycaner_knee" + +/datum/sprite_accessory/underwear/socks/candycaneg_knee //ignore alphabetisation for ease of use in scenarios like this + name = "Knee-High - Green Candy Cane" + icon_state = "candycaneg_knee" + /datum/sprite_accessory/underwear/socks/striped_knee name = "Knee-high - Striped" icon_state = "striped_knee" @@ -46,18 +58,6 @@ name = "Knee-High - UK" icon_state = "uk_knee" -/datum/sprite_accessory/underwear/socks/christmas_knee - name = "Knee-High - Christmas" - icon_state = "christmas_knee" - -/datum/sprite_accessory/underwear/socks/candycaner_knee - name = "Knee-High - Red Candy Cane" - icon_state = "candycaner_knee" - -/datum/sprite_accessory/underwear/socks/candycaneg_knee - name = "Knee-High - Green Candy Cane" - icon_state = "candycaneg_knee" - /datum/sprite_accessory/underwear/socks/socks_norm name = "Normal" icon_state = "socks_norm" @@ -129,22 +129,34 @@ name = "Thigh-high - Bee" icon_state = "bee_thigh" +/datum/sprite_accessory/underwear/socks/christmas_thigh + name = "Thigh-high - Christmas" + icon_state = "christmas_thigh" + /datum/sprite_accessory/underwear/socks/commie_thigh name = "Thigh-high - Commie" icon_state = "commie_thigh" -/datum/sprite_accessory/underwear/socks/usa_thigh - name = "Thigh-high - Freedom" - icon_state = "assblastusa_thigh" - /datum/sprite_accessory/underwear/socks/fishnet name = "Thigh-high - Fishnet" icon_state = "fishnet" +/datum/sprite_accessory/underwear/socks/usa_thigh + name = "Thigh-high - Freedom" + icon_state = "assblastusa_thigh" + /datum/sprite_accessory/underwear/socks/rainbow_thigh name = "Thigh-high - Rainbow" icon_state = "rainbow_thigh" +/datum/sprite_accessory/underwear/socks/candycaner_thigh + name = "Thigh-high - Red Candy Cane" + icon_state = "candycaner_thigh" + +/datum/sprite_accessory/underwear/socks/candycaneg_thigh + name = "Thigh-high - Green Candy Cane" + icon_state = "candycaneg_thigh" + /datum/sprite_accessory/underwear/socks/striped_thigh name = "Thigh-high - Striped" icon_state = "striped_thigh" @@ -157,16 +169,4 @@ /datum/sprite_accessory/underwear/socks/uk_thigh name = "Thigh-high - UK" - icon_state = "uk_thigh" - -/datum/sprite_accessory/underwear/socks/christmas_thigh - name = "Thigh-high - Christmas" - icon_state = "christmas_thigh" - -/datum/sprite_accessory/underwear/socks/candycaner_thigh - name = "Thigh-high - Red Candy Cane" - icon_state = "candycaner_thigh" - -/datum/sprite_accessory/underwear/socks/candycaneg_thigh - name = "Thigh-high - Green Candy Cane" - icon_state = "candycaneg_thigh" \ No newline at end of file + icon_state = "uk_thigh" \ No newline at end of file diff --git a/code/modules/mob/dead/new_player/sprite_accessories/spines.dm b/code/modules/mob/dead/new_player/sprite_accessories/spines.dm index 83415ed375..5d7207c934 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/spines.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/spines.dm @@ -21,21 +21,13 @@ name = "None" icon_state = "none" -/datum/sprite_accessory/spines/short - name = "Short" - icon_state = "short" +/datum/sprite_accessory/spines/aqautic + name = "Aquatic" + icon_state = "aqua" -/datum/sprite_accessory/spines_animated/short - name = "Short" - icon_state = "short" - -/datum/sprite_accessory/spines/shortmeme - name = "Short + Membrane" - icon_state = "shortmeme" - -/datum/sprite_accessory/spines_animated/shortmeme - name = "Short + Membrane" - icon_state = "shortmeme" +/datum/sprite_accessory/spines_animated/aqautic + name = "Aquatic" + icon_state = "aqua" /datum/sprite_accessory/spines/long name = "Long" @@ -53,10 +45,18 @@ name = "Long + Membrane" icon_state = "longmeme" -/datum/sprite_accessory/spines/aqautic - name = "Aquatic" - icon_state = "aqua" +/datum/sprite_accessory/spines/short + name = "Short" + icon_state = "short" -/datum/sprite_accessory/spines_animated/aqautic - name = "Aquatic" - icon_state = "aqua" +/datum/sprite_accessory/spines_animated/short + name = "Short" + icon_state = "short" + +/datum/sprite_accessory/spines/shortmeme + name = "Short + Membrane" + icon_state = "shortmeme" + +/datum/sprite_accessory/spines_animated/shortmeme + name = "Short + Membrane" + icon_state = "shortmeme" diff --git a/code/modules/mob/dead/new_player/sprite_accessories/synthliz.dm b/code/modules/mob/dead/new_player/sprite_accessories/synthliz.dm index 16531d8f06..9addd15dca 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/synthliz.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/synthliz.dm @@ -25,12 +25,6 @@ icon_state = "synthliz_tertunder" //Synth body markings -/datum/sprite_accessory/mam_body_markings/synthliz - recommended_species = list("synthliz") - icon = 'modular_citadel/icons/mob/synthliz_body_markings.dmi' - name = "Synthetic Lizard - Plates" - icon_state = "synthlizscutes" - /datum/sprite_accessory/mam_body_markings/synthliz/synthliz_pecs icon = 'modular_citadel/icons/mob/synthliz_body_markings.dmi' name = "Synthetic Lizard - Pecs" @@ -41,6 +35,12 @@ name = "Synthetic Lizard - Pecs Light" icon_state = "synthlizpecslight" +/datum/sprite_accessory/mam_body_markings/synthliz + recommended_species = list("synthliz") + icon = 'modular_citadel/icons/mob/synthliz_body_markings.dmi' + name = "Synthetic Lizard - Plates" + icon_state = "synthlizscutes" + //Synth tails /datum/sprite_accessory/tails/mam_tails/synthliz recommended_species = list("synthliz") @@ -70,17 +70,17 @@ name = "Synthetic Lizard - Curled" icon_state = "synth_curled" -/datum/sprite_accessory/antenna/synthliz/synthliz_thick +/datum/sprite_accessory/antenna/synthliz/synth_horns icon = 'modular_citadel/icons/mob/synthliz_antennas.dmi' color_src = MUTCOLORS - name = "Synthetic Lizard - Thick" - icon_state = "synth_thick" + name = "Synthetic Lizard - Horns" + icon_state = "synth_horns" -/datum/sprite_accessory/antenna/synthliz/synth_thicklight +/datum/sprite_accessory/antenna/synthliz/synth_hornslight icon = 'modular_citadel/icons/mob/synthliz_antennas.dmi' color_src = MATRIXED - name = "Synthetic Lizard - Thick Light" - icon_state = "synth_thicklight" + name = "Synthetic Lizard - Horns Light" + icon_state = "synth_hornslight" /datum/sprite_accessory/antenna/synthliz/synth_short icon = 'modular_citadel/icons/mob/synthliz_antennas.dmi' @@ -100,17 +100,17 @@ name = "Synthetic Lizard - Sharp Light" icon_state = "synth_sharplight" -/datum/sprite_accessory/antenna/synthliz/synth_horns +/datum/sprite_accessory/antenna/synthliz/synthliz_thick icon = 'modular_citadel/icons/mob/synthliz_antennas.dmi' color_src = MUTCOLORS - name = "Synthetic Lizard - Horns" - icon_state = "synth_horns" + name = "Synthetic Lizard - Thick" + icon_state = "synth_thick" -/datum/sprite_accessory/antenna/synthliz/synth_hornslight +/datum/sprite_accessory/antenna/synthliz/synth_thicklight icon = 'modular_citadel/icons/mob/synthliz_antennas.dmi' color_src = MATRIXED - name = "Synthetic Lizard - Horns Light" - icon_state = "synth_hornslight" + name = "Synthetic Lizard - Thick Light" + icon_state = "synth_thicklight" //Synth Taurs (Ported from Virgo) /datum/sprite_accessory/taur/synthliz diff --git a/code/modules/mob/dead/new_player/sprite_accessories/tails.dm b/code/modules/mob/dead/new_player/sprite_accessories/tails.dm index 812e0c052c..d9e2de1525 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/tails.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/tails.dm @@ -18,38 +18,7 @@ /datum/sprite_accessory/tails_animated/lizard/is_not_visible(var/mob/living/carbon/human/H, var/tauric) return (((H.wear_suit && (H.wear_suit.flags_inv & HIDETAUR)) || tauric) || H.dna.species.mutant_bodyparts["tail_lizard"]) -/datum/sprite_accessory/tails/lizard/smooth - name = "Smooth" - icon_state = "smooth" - -/datum/sprite_accessory/tails_animated/lizard/smooth - name = "Smooth" - icon_state = "smooth" - -/datum/sprite_accessory/tails/lizard/dtiger - name = "Dark Tiger" - icon_state = "dtiger" - -/datum/sprite_accessory/tails_animated/lizard/dtiger - name = "Dark Tiger" - icon_state = "dtiger" - -/datum/sprite_accessory/tails/lizard/ltiger - name = "Light Tiger" - icon_state = "ltiger" - -/datum/sprite_accessory/tails_animated/lizard/ltiger - name = "Light Tiger" - icon_state = "ltiger" - -/datum/sprite_accessory/tails/lizard/spikes - name = "Spikes" - icon_state = "spikes" - -/datum/sprite_accessory/tails_animated/lizard/spikes - name = "Spikes" - icon_state = "spikes" - +//this goes first regardless of alphabetical order /datum/sprite_accessory/tails/lizard/none name = "None" icon_state = "None" @@ -72,11 +41,13 @@ color_src = MATRIXED icon = 'modular_citadel/icons/mob/mam_tails.dmi' -/datum/sprite_accessory/body_markings/guilmon - name = "Guilmon" - icon_state = "guilmon" - color_src = MATRIXED - icon = 'modular_citadel/icons/mob/markings_notmammals.dmi' +/datum/sprite_accessory/tails/lizard/dtiger + name = "Dark Tiger" + icon_state = "dtiger" + +/datum/sprite_accessory/tails_animated/lizard/dtiger + name = "Dark Tiger" + icon_state = "dtiger" /datum/sprite_accessory/tails/lizard/guilmon name = "Guilmon" @@ -90,6 +61,30 @@ color_src = MATRIXED icon = 'modular_citadel/icons/mob/mam_tails.dmi' +/datum/sprite_accessory/tails/lizard/ltiger + name = "Light Tiger" + icon_state = "ltiger" + +/datum/sprite_accessory/tails_animated/lizard/ltiger + name = "Light Tiger" + icon_state = "ltiger" + +/datum/sprite_accessory/tails/lizard/smooth + name = "Smooth" + icon_state = "smooth" + +/datum/sprite_accessory/tails_animated/lizard/smooth + name = "Smooth" + icon_state = "smooth" + +/datum/sprite_accessory/tails/lizard/spikes + name = "Spikes" + icon_state = "spikes" + +/datum/sprite_accessory/tails_animated/lizard/spikes + name = "Spikes" + icon_state = "spikes" + /****************************************** ************** Human Tails **************** *******************************************/ @@ -107,18 +102,6 @@ /datum/sprite_accessory/tails_animated/human/is_not_visible(var/mob/living/carbon/human/H, var/tauric) return (((H.wear_suit && (H.wear_suit.flags_inv & HIDETAUR)) || tauric)|| H.dna.species.mutant_bodyparts["tail_human"]) -/datum/sprite_accessory/tails/human/ailurus - name = "Red Panda" - icon_state = "wah" - icon = 'modular_citadel/icons/mob/mam_tails.dmi' - color_src = MATRIXED - -/datum/sprite_accessory/tails_animated/human/ailurus - name = "Red Panda" - icon_state = "wah" - icon = 'modular_citadel/icons/mob/mam_tails.dmi' - color_src = MATRIXED - /datum/sprite_accessory/tails/human/axolotl name = "Axolotl" icon_state = "axolotl" @@ -199,6 +182,14 @@ icon = 'modular_citadel/icons/mob/mam_tails.dmi' color_src = MATRIXED +/datum/sprite_accessory/tails/human/corvid + name = "Corvid" + icon_state = "crow" + +/datum/sprite_accessory/tails_animated/human/corvid + name = "Corvid" + icon_state = "crow" + /datum/sprite_accessory/tails/human/cow name = "Cow" icon_state = "cow" @@ -211,13 +202,25 @@ icon = 'modular_citadel/icons/mob/mam_tails.dmi' color_src = MATRIXED -/datum/sprite_accessory/tails/human/corvid - name = "Corvid" - icon_state = "crow" +/datum/sprite_accessory/tails/human/dtiger + name = "Dark Tiger" + icon_state = "dtiger" -/datum/sprite_accessory/tails_animated/human/corvid - name = "Corvid" - icon_state = "crow" +/datum/sprite_accessory/tails_animated/human/dtiger + name = "Dark Tiger" + icon_state = "dtiger" + +/datum/sprite_accessory/tails/human/datashark + name = "datashark" + icon_state = "datashark" + color_src = MATRIXED + icon = 'modular_citadel/icons/mob/mam_tails.dmi' + +/datum/sprite_accessory/tails_animated/human/datashark + name = "datashark" + icon_state = "datashark" + color_src = MATRIXED + icon = 'modular_citadel/icons/mob/mam_tails.dmi' /datum/sprite_accessory/tails/human/eevee name = "Eevee" @@ -298,7 +301,7 @@ color_src = MATRIXED /datum/sprite_accessory/tails_animated/human/insect - name = "insect" + name = "Insect" icon_state = "insect" icon = 'modular_citadel/icons/mob/mam_tails.dmi' color_src = MATRIXED @@ -315,6 +318,14 @@ color_src = MATRIXED icon = 'modular_citadel/icons/mob/mam_tails.dmi' +/datum/sprite_accessory/tails/human/ltiger + name = "Light Tiger" + icon_state = "ltiger" + +/datum/sprite_accessory/tails_animated/human/ltiger + name = "Light Tiger" + icon_state = "ltiger" + /datum/sprite_accessory/tails/human/murid name = "Murid" icon_state = "murid" @@ -327,18 +338,6 @@ color_src = MATRIXED icon = 'modular_citadel/icons/mob/mam_tails.dmi' -/datum/sprite_accessory/tails/human/otie - name = "Otusian" - icon_state = "otie" - color_src = MATRIXED - icon = 'modular_citadel/icons/mob/mam_tails.dmi' - -/datum/sprite_accessory/tails_animated/human/otie - name = "Otusian" - icon_state = "otie" - color_src = MATRIXED - icon = 'modular_citadel/icons/mob/mam_tails.dmi' - /datum/sprite_accessory/tails/orca name = "Orca" icon_state = "orca" @@ -351,15 +350,15 @@ color_src = MATRIXED icon = 'modular_citadel/icons/mob/mam_tails.dmi' -/datum/sprite_accessory/tails/human/pede - name = "Scolipede" - icon_state = "pede" +/datum/sprite_accessory/tails/human/otie + name = "Otusian" + icon_state = "otie" color_src = MATRIXED icon = 'modular_citadel/icons/mob/mam_tails.dmi' -/datum/sprite_accessory/tails_animated/human/pede - name = "Scolipede" - icon_state = "pede" +/datum/sprite_accessory/tails_animated/human/otie + name = "Otusian" + icon_state = "otie" color_src = MATRIXED icon = 'modular_citadel/icons/mob/mam_tails.dmi' @@ -375,6 +374,30 @@ color_src = MATRIXED icon = 'modular_citadel/icons/mob/mam_tails.dmi' +/datum/sprite_accessory/tails/human/ailurus + name = "Red Panda" + icon_state = "wah" + icon = 'modular_citadel/icons/mob/mam_tails.dmi' + color_src = MATRIXED + +/datum/sprite_accessory/tails_animated/human/ailurus + name = "Red Panda" + icon_state = "wah" + icon = 'modular_citadel/icons/mob/mam_tails.dmi' + color_src = MATRIXED + +/datum/sprite_accessory/tails/human/pede + name = "Scolipede" + icon_state = "pede" + color_src = MATRIXED + icon = 'modular_citadel/icons/mob/mam_tails.dmi' + +/datum/sprite_accessory/tails_animated/human/pede + name = "Scolipede" + icon_state = "pede" + color_src = MATRIXED + icon = 'modular_citadel/icons/mob/mam_tails.dmi' + /datum/sprite_accessory/tails/human/sergal name = "Sergal" icon_state = "sergal" @@ -387,6 +410,18 @@ color_src = MATRIXED icon = 'modular_citadel/icons/mob/mam_tails.dmi' +/datum/sprite_accessory/tails/human/shark + name = "Shark" + icon_state = "shark" + color_src = MATRIXED + icon = 'modular_citadel/icons/mob/mam_tails.dmi' + +/datum/sprite_accessory/tails_animated/human/shark + name = "Shark" + icon_state = "shark" + color_src = MATRIXED + icon = 'modular_citadel/icons/mob/mam_tails.dmi' + /datum/sprite_accessory/tails/human/skunk name = "skunk" icon_state = "skunk" @@ -415,30 +450,6 @@ name = "Spikes" icon_state = "spikes" -/datum/sprite_accessory/tails/human/shark - name = "Shark" - icon_state = "shark" - color_src = MATRIXED - icon = 'modular_citadel/icons/mob/mam_tails.dmi' - -/datum/sprite_accessory/tails_animated/human/shark - name = "Shark" - icon_state = "shark" - color_src = MATRIXED - icon = 'modular_citadel/icons/mob/mam_tails.dmi' - -/datum/sprite_accessory/tails/human/datashark - name = "datashark" - icon_state = "datashark" - color_src = MATRIXED - icon = 'modular_citadel/icons/mob/mam_tails.dmi' - -/datum/sprite_accessory/tails_animated/human/datashark - name = "datashark" - icon_state = "datashark" - color_src = MATRIXED - icon = 'modular_citadel/icons/mob/mam_tails.dmi' - /datum/sprite_accessory/tails/human/straighttail name = "Straight Tail" icon_state = "straighttail" @@ -495,22 +506,6 @@ color_src = MATRIXED icon = 'modular_citadel/icons/mob/mam_tails.dmi' -/datum/sprite_accessory/tails/human/dtiger - name = "Dark Tiger" - icon_state = "dtiger" - -/datum/sprite_accessory/tails_animated/human/dtiger - name = "Dark Tiger" - icon_state = "dtiger" - -/datum/sprite_accessory/tails/human/ltiger - name = "Light Tiger" - icon_state = "ltiger" - -/datum/sprite_accessory/tails_animated/human/ltiger - name = "Light Tiger" - icon_state = "ltiger" - /datum/sprite_accessory/tails/human/wolf name = "Wolf" icon_state = "wolf" @@ -554,16 +549,6 @@ icon_state = "none" relevant_layers = null -/datum/sprite_accessory/tails/mam_tails/ailurus - name = "Red Panda" - icon_state = "wah" - extra = TRUE - -/datum/sprite_accessory/tails_animated/mam_tails_animated/ailurus - name = "Red Panda" - icon_state = "wah" - extra = TRUE - /datum/sprite_accessory/tails/mam_tails/axolotl name = "Axolotl" icon_state = "axolotl" @@ -638,6 +623,18 @@ name = "Cow" icon_state = "cow" +/datum/sprite_accessory/tails/mam_tails/dtiger + name = "Dark Tiger" + icon_state = "dtiger" + color_src = MUTCOLORS + icon = 'icons/mob/mutant_bodyparts.dmi' + +/datum/sprite_accessory/tails_animated/mam_tails_animated/dtiger + name = "Dark Tiger" + icon_state = "dtiger" + color_src = MUTCOLORS + icon = 'icons/mob/mutant_bodyparts.dmi' + /datum/sprite_accessory/tails/mam_tails/eevee name = "Eevee" icon_state = "eevee" @@ -728,6 +725,18 @@ datum/sprite_accessory/tails/mam_tails/insect name = "Lab" icon_state = "lab" +/datum/sprite_accessory/tails/mam_tails/ltiger + name = "Light Tiger" + icon_state = "ltiger" + color_src = MUTCOLORS + icon = 'icons/mob/mutant_bodyparts.dmi' + +/datum/sprite_accessory/tails_animated/mam_tails_animated/ltiger + name = "Light Tiger" + icon_state = "ltiger" + color_src = MUTCOLORS + icon = 'icons/mob/mutant_bodyparts.dmi' + /datum/sprite_accessory/tails/mam_tails/murid name = "Murid" icon_state = "murid" @@ -736,14 +745,6 @@ datum/sprite_accessory/tails/mam_tails/insect name = "Murid" icon_state = "murid" -/datum/sprite_accessory/tails/mam_tails/otie - name = "Otusian" - icon_state = "otie" - -/datum/sprite_accessory/tails_animated/mam_tails_animated/otie - name = "Otusian" - icon_state = "otie" - /datum/sprite_accessory/tails/mam_tails/orca name = "Orca" icon_state = "orca" @@ -752,13 +753,13 @@ datum/sprite_accessory/tails/mam_tails/insect name = "Orca" icon_state = "orca" -/datum/sprite_accessory/tails/mam_tails/pede - name = "Scolipede" - icon_state = "pede" +/datum/sprite_accessory/tails/mam_tails/otie + name = "Otusian" + icon_state = "otie" -/datum/sprite_accessory/tails_animated/mam_tails_animated/pede - name = "Scolipede" - icon_state = "pede" +/datum/sprite_accessory/tails_animated/mam_tails_animated/otie + name = "Otusian" + icon_state = "otie" /datum/sprite_accessory/tails/mam_tails/rabbit name = "Rabbit" @@ -768,6 +769,24 @@ datum/sprite_accessory/tails/mam_tails/insect name = "Rabbit" icon_state = "rabbit" +/datum/sprite_accessory/tails/mam_tails/ailurus + name = "Red Panda" + icon_state = "wah" + extra = TRUE + +/datum/sprite_accessory/tails_animated/mam_tails_animated/ailurus + name = "Red Panda" + icon_state = "wah" + extra = TRUE + +/datum/sprite_accessory/tails/mam_tails/pede + name = "Scolipede" + icon_state = "pede" + +/datum/sprite_accessory/tails_animated/mam_tails_animated/pede + name = "Scolipede" + icon_state = "pede" + /datum/sprite_accessory/tails/mam_tails/sergal name = "Sergal" icon_state = "sergal" @@ -776,6 +795,22 @@ datum/sprite_accessory/tails/mam_tails/insect name = "Sergal" icon_state = "sergal" +/datum/sprite_accessory/tails/mam_tails/shark + name = "Shark" + icon_state = "shark" + +/datum/sprite_accessory/tails_animated/mam_tails_animated/shark + name = "Shark" + icon_state = "shark" + +/datum/sprite_accessory/tails/mam_tails/shepherd + name = "Shepherd" + icon_state = "shepherd" + +/datum/sprite_accessory/tails_animated/mam_tails_animated/shepherd + name = "Shepherd" + icon_state = "shepherd" + /datum/sprite_accessory/tails/mam_tails/skunk name = "Skunk" icon_state = "skunk" @@ -808,22 +843,6 @@ datum/sprite_accessory/tails/mam_tails/insect color_src = MUTCOLORS icon = 'icons/mob/mutant_bodyparts.dmi' -/datum/sprite_accessory/tails/mam_tails/shark - name = "Shark" - icon_state = "shark" - -/datum/sprite_accessory/tails_animated/mam_tails_animated/shark - name = "Shark" - icon_state = "shark" - -/datum/sprite_accessory/tails/mam_tails/shepherd - name = "Shepherd" - icon_state = "shepherd" - -/datum/sprite_accessory/tails_animated/mam_tails_animated/shepherd - name = "Shepherd" - icon_state = "shepherd" - /datum/sprite_accessory/tails/mam_tails/straighttail name = "Straight Tail" icon_state = "straighttail" @@ -864,30 +883,6 @@ datum/sprite_accessory/tails/mam_tails/insect name = "Tiger" icon_state = "tiger" -/datum/sprite_accessory/tails/mam_tails/dtiger - name = "Dark Tiger" - icon_state = "dtiger" - color_src = MUTCOLORS - icon = 'icons/mob/mutant_bodyparts.dmi' - -/datum/sprite_accessory/tails_animated/mam_tails_animated/dtiger - name = "Dark Tiger" - icon_state = "dtiger" - color_src = MUTCOLORS - icon = 'icons/mob/mutant_bodyparts.dmi' - -/datum/sprite_accessory/tails/mam_tails/ltiger - name = "Light Tiger" - icon_state = "ltiger" - color_src = MUTCOLORS - icon = 'icons/mob/mutant_bodyparts.dmi' - -/datum/sprite_accessory/tails_animated/mam_tails_animated/ltiger - name = "Light Tiger" - icon_state = "ltiger" - color_src = MUTCOLORS - icon = 'icons/mob/mutant_bodyparts.dmi' - /datum/sprite_accessory/tails/mam_tails/wolf name = "Wolf" icon_state = "wolf" diff --git a/code/modules/mob/dead/new_player/sprite_accessories/undershirt.dm b/code/modules/mob/dead/new_player/sprite_accessories/undershirt.dm index b8282931d2..1be02c207e 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/undershirt.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/undershirt.dm @@ -12,6 +12,38 @@ // please make sure they're sorted alphabetically and categorized +/datum/sprite_accessory/underwear/top/cowboyshirt + name = "Cowboy Shirt Black" + icon_state = "cowboyshirt" + +/datum/sprite_accessory/underwear/top/cowboyshirt/red + name = "Cowboy Shirt Red" + icon_state = "cowboyshirt_red" + +/datum/sprite_accessory/underwear/top/cowboyshirt/navy + name = "Cowboy Shirt Navy" + icon_state = "cowboyshirt_navy" + +/datum/sprite_accessory/underwear/top/cowboyshirt/white + name = "Cowboy Shirt White" + icon_state = "cowboyshirt_white" + +/datum/sprite_accessory/underwear/top/cowboyshirt/s + name = "Cowboy Shirt Shortsleeved Black" + icon_state = "cowboyshirt_s" + +/datum/sprite_accessory/underwear/top/cowboyshirt/red/s + name = "Cowboy Shirt Shortsleeved Red" + icon_state = "cowboyshirt_reds" + +/datum/sprite_accessory/underwear/top/cowboyshirt/navy/s + name = "Cowboy Shirt Shortsleeved Navy" + icon_state = "cowboyshirt_navys" + +/datum/sprite_accessory/underwear/top/cowboyshirt/white/s + name = "Cowboy Shirt Shortsleeved White" + icon_state = "cowboyshirt_whites" + /datum/sprite_accessory/underwear/top/longjon name = "Long John Shirt" icon_state = "ljont" @@ -30,36 +62,6 @@ icon_state = "undershirt" has_color = TRUE -/datum/sprite_accessory/underwear/top/bowlingw - name = "Shirt - Bowling" - icon_state = "bowlingw" - has_color = TRUE - -/datum/sprite_accessory/underwear/top/bowling - name = "Shirt, Bowling - Red" - icon_state = "bowling" - -/datum/sprite_accessory/underwear/top/bowlingp - name = "Shirt, Bowling - Pink" - icon_state = "bowlingp" - -/datum/sprite_accessory/underwear/top/bowlinga - name = "Shirt, Bowling - Aqua" - icon_state = "bowlinga" - -/datum/sprite_accessory/underwear/top/bluejersey - name = "Shirt, Jersey - Blue" - icon_state = "shirt_bluejersey" - -/datum/sprite_accessory/underwear/top/redjersey - name = "Shirt, Jersey - Red" - icon_state = "shirt_redjersey" - -/datum/sprite_accessory/underwear/top/polo - name = "Shirt - Polo" - icon_state = "polo" - has_color = TRUE - /datum/sprite_accessory/underwear/top/alienshirt name = "Shirt - Alien" icon_state = "shirt_alien" @@ -72,6 +74,23 @@ name = "Shirt - Bee" icon_state = "bee_shirt" +/datum/sprite_accessory/underwear/top/bowlingw + name = "Shirt - Bowling" + icon_state = "bowlingw" + has_color = TRUE + +/datum/sprite_accessory/underwear/top/bowlinga + name = "Shirt, Bowling - Aqua" + icon_state = "bowlinga" + +/datum/sprite_accessory/underwear/top/bowling + name = "Shirt, Bowling - Red" + icon_state = "bowling" + +/datum/sprite_accessory/underwear/top/bowlingp + name = "Shirt, Bowling - Pink" + icon_state = "bowlingp" + /datum/sprite_accessory/underwear/top/clownshirt name = "Shirt - Clown" icon_state = "shirt_clown" @@ -88,6 +107,14 @@ name = "Shirt - I Love NT" icon_state = "ilovent" +/datum/sprite_accessory/underwear/top/bluejersey + name = "Shirt, Jersey - Blue" + icon_state = "shirt_bluejersey" + +/datum/sprite_accessory/underwear/top/redjersey + name = "Shirt, Jersey - Red" + icon_state = "shirt_redjersey" + /datum/sprite_accessory/underwear/top/lover name = "Shirt - Lover" icon_state = "lover" @@ -112,6 +139,11 @@ name = "Shirt - Pogoman" icon_state = "pogoman" +/datum/sprite_accessory/underwear/top/polo + name = "Shirt - Polo" + icon_state = "polo" + has_color = TRUE + /datum/sprite_accessory/underwear/top/question name = "Shirt - Question" icon_state = "shirt_question" @@ -120,6 +152,23 @@ name = "Shirt - Skull" icon_state = "shirt_skull" +/datum/sprite_accessory/underwear/top/shortsleeve + name = "Shirt - Short Sleeved" + icon_state = "shortsleeve" + has_color = TRUE + +/datum/sprite_accessory/underwear/top/blueshirtsport + name = "Shirt, Sports - Blue" + icon_state = "blueshirtsport" + +/datum/sprite_accessory/underwear/top/greenshirtsport + name = "Shirt, Sports - Green" + icon_state = "greenshirtsport" + +/datum/sprite_accessory/underwear/top/redshirtsport + name = "Shirt, Sports - Red" + icon_state = "redshirtsport" + /datum/sprite_accessory/underwear/top/ss13 name = "Shirt - SS13" icon_state = "shirt_ss13" @@ -141,27 +190,6 @@ name = "Shirt - USA" icon_state = "shirt_assblastusa" -/datum/sprite_accessory/underwear/top/shortsleeve - name = "Shirt - Short Sleeved" - icon_state = "shortsleeve" - has_color = TRUE - -/datum/sprite_accessory/underwear/top/blueshirtsport - name = "Shirt, Sports - Blue" - icon_state = "blueshirtsport" - -/datum/sprite_accessory/underwear/top/greenshirtsport - name = "Shirt, Sports - Green" - icon_state = "greenshirtsport" - -/datum/sprite_accessory/underwear/top/redshirtsport - name = "Shirt, Sports - Red" - icon_state = "redshirtsport" - -/datum/sprite_accessory/underwear/top/tankfire - name = "Tank Top - Fire" - icon_state = "tank_fire" - /datum/sprite_accessory/underwear/top/tanktop name = "Tank Top" icon_state = "tanktop" @@ -172,6 +200,10 @@ icon_state = "tanktop_alt" has_color = TRUE +/datum/sprite_accessory/underwear/top/tankfire + name = "Tank Top - Fire" + icon_state = "tank_fire" + /datum/sprite_accessory/underwear/top/tanktop_midriff name = "Tank Top - Midriff" icon_state = "tank_midriff" @@ -192,6 +224,8 @@ name = "Tank top - Sun" icon_state = "tank_sun" +//feminine accessories from here on + /datum/sprite_accessory/underwear/top/babydoll name = "Baby-Doll" icon_state = "babydoll" @@ -210,15 +244,25 @@ has_color = TRUE gender = FEMALE -/datum/sprite_accessory/underwear/top/bra_thin - name = "Bra - Thin" - icon_state = "bra_thin" - has_color = TRUE +/datum/sprite_accessory/underwear/top/bra_beekini + name = "Bra - Bee-kini" + icon_state = "bra_bee-kini" gender = FEMALE -/datum/sprite_accessory/underwear/top/bra_kinky - name = "Bra - Kinky Black" - icon_state = "bra_kinky" +/datum/sprite_accessory/underwear/top/bra_binder + name = "Bra (binder)" + icon_state = "bra_binder" + has_color = TRUE + +/datum/sprite_accessory/underwear/top/bra_binder_strapless + name = "Bra (binder, strapless)" + icon_state = "bra_binder_strapless" + has_color = TRUE + + +/datum/sprite_accessory/underwear/top/bra_commie + name = "Bra - Commie" + icon_state = "bra_commie" gender = FEMALE /datum/sprite_accessory/underwear/top/bra_freedom @@ -226,33 +270,17 @@ icon_state = "bra_assblastusa" gender = FEMALE -/datum/sprite_accessory/underwear/top/bra_commie - name = "Bra - Commie" - icon_state = "bra_commie" - gender = FEMALE - -/datum/sprite_accessory/underwear/top/bra_beekini - name = "Bra - Bee-kini" - icon_state = "bra_bee-kini" - gender = FEMALE - -/datum/sprite_accessory/underwear/top/bra_uk - name = "Bra - UK" - icon_state = "bra_uk" - gender = FEMALE - -/datum/sprite_accessory/underwear/top/bra_neko - name = "Bra - Neko" - icon_state = "bra_neko" - has_color = TRUE - gender = FEMALE - /datum/sprite_accessory/underwear/top/halterneck_bra name = "Bra - Halterneck" icon_state = "halterneck_bra" has_color = TRUE gender = FEMALE +/datum/sprite_accessory/underwear/top/bra_kinky + name = "Bra - Kinky Black" + icon_state = "bra_kinky" + gender = FEMALE + /datum/sprite_accessory/underwear/top/sports_bra name = "Bra, Sports" icon_state = "sports_bra" @@ -283,9 +311,21 @@ has_color = TRUE gender = FEMALE -/datum/sprite_accessory/underwear/top/fishnet_sleeves - name = "Fishnet - sleeves" - icon_state = "fishnet_sleeves" +/datum/sprite_accessory/underwear/top/bra_thin + name = "Bra - Thin" + icon_state = "bra_thin" + has_color = TRUE + gender = FEMALE + +/datum/sprite_accessory/underwear/top/bra_neko + name = "Bra - Neko" + icon_state = "bra_neko" + has_color = TRUE + gender = FEMALE + +/datum/sprite_accessory/underwear/top/bra_uk + name = "Bra - UK" + icon_state = "bra_uk" gender = FEMALE /datum/sprite_accessory/underwear/top/fishnet_gloves @@ -293,6 +333,11 @@ icon_state = "fishnet_gloves" gender = FEMALE +/datum/sprite_accessory/underwear/top/fishnet_sleeves + name = "Fishnet - sleeves" + icon_state = "fishnet_sleeves" + gender = FEMALE + /datum/sprite_accessory/underwear/top/fishnet_base name = "Fishnet - top" icon_state = "fishnet_body" @@ -315,45 +360,3 @@ icon_state = "tubetop" has_color = TRUE gender = FEMALE - -/datum/sprite_accessory/underwear/top/cowboyshirt - name = "Cowboy Shirt Black" - icon_state = "cowboyshirt" - -/datum/sprite_accessory/underwear/top/cowboyshirt/s - name = "Cowboy Shirt Shortsleeved Black" - icon_state = "cowboyshirt_s" - -/datum/sprite_accessory/underwear/top/cowboyshirt/white - name = "Cowboy Shirt White" - icon_state = "cowboyshirt_white" - -/datum/sprite_accessory/underwear/top/cowboyshirt/white/s - name = "Cowboy Shirt Shortsleeved White" - icon_state = "cowboyshirt_whites" - -/datum/sprite_accessory/underwear/top/cowboyshirt/navy - name = "Cowboy Shirt Navy" - icon_state = "cowboyshirt_navy" - -/datum/sprite_accessory/underwear/top/cowboyshirt/navy/s - name = "Cowboy Shirt Shortsleeved Navy" - icon_state = "cowboyshirt_navys" - -/datum/sprite_accessory/underwear/top/cowboyshirt/red - name = "Cowboy Shirt Red" - icon_state = "cowboyshirt_red" - -/datum/sprite_accessory/underwear/top/cowboyshirt/red/s - name = "Cowboy Shirt Shortsleeved Red" - icon_state = "cowboyshirt_reds" - -/datum/sprite_accessory/underwear/top/bra_binder - name = "Bra (binder)" - icon_state = "bra_binder" - has_color = TRUE - -/datum/sprite_accessory/underwear/top/bra_binder_strapless - name = "Bra (binder, strapless)" - icon_state = "bra_binder_strapless" - has_color = TRUE diff --git a/code/modules/mob/dead/new_player/sprite_accessories/underwear.dm b/code/modules/mob/dead/new_player/sprite_accessories/underwear.dm index 58d5e1ba88..edfeba79f1 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/underwear.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/underwear.dm @@ -10,18 +10,6 @@ icon_state = null covers_groin = FALSE -/datum/sprite_accessory/underwear/bottom/mankini - name = "Mankini" - icon_state = "mankini" - has_color = TRUE - gender = MALE - -/datum/sprite_accessory/underwear/bottom/male_kinky - name = "Jockstrap" - icon_state = "jockstrap" - has_color = TRUE - gender = MALE - /datum/sprite_accessory/underwear/bottom/briefs name = "Briefs" icon_state = "briefs" @@ -77,6 +65,26 @@ has_digitigrade = TRUE has_color = TRUE +/datum/sprite_accessory/underwear/bottom/male_kinky + name = "Jockstrap" + icon_state = "jockstrap" + has_color = TRUE + gender = MALE + +/datum/sprite_accessory/underwear/bottom/longjon + name = "Long John Bottoms" + icon_state = "ljonb" + has_digitigrade = TRUE + has_color = TRUE + +/datum/sprite_accessory/underwear/bottom/mankini + name = "Mankini" + icon_state = "mankini" + has_color = TRUE + gender = MALE + +//feminine underwear from here on + /datum/sprite_accessory/underwear/bottom/panties name = "Panties" icon_state = "panties" @@ -89,11 +97,6 @@ has_color = TRUE gender = FEMALE -/datum/sprite_accessory/underwear/bottom/fishnet_lower - name = "Panties - Fishnet" - icon_state = "fishnet_lower" - gender = FEMALE - /datum/sprite_accessory/underwear/bottom/female_beekini name = "Panties - Bee-kini" icon_state = "panties_bee-kini" @@ -104,6 +107,11 @@ icon_state = "panties_commie" gender = FEMALE +/datum/sprite_accessory/underwear/bottom/fishnet_lower + name = "Panties - Fishnet" + icon_state = "fishnet_lower" + gender = FEMALE + /datum/sprite_accessory/underwear/bottom/female_usastripe name = "Panties - Freedom" icon_state = "panties_assblastusa" @@ -114,11 +122,6 @@ icon_state = "panties_kinky" gender = FEMALE -/datum/sprite_accessory/underwear/bottom/panties_uk - name = "Panties - UK" - icon_state = "panties_uk" - gender = FEMALE - /datum/sprite_accessory/underwear/bottom/panties_neko name = "Panties - Neko" icon_state = "panties_neko" @@ -149,17 +152,10 @@ has_color = TRUE gender = FEMALE -/datum/sprite_accessory/underwear/bottom/longjon - name = "Long John Bottoms" - icon_state = "ljonb" - has_digitigrade = TRUE - has_color = TRUE - -/datum/sprite_accessory/underwear/bottom/swimsuit_red - name = "Swimsuit, One Piece - Red" - icon_state = "swimming_red" +/datum/sprite_accessory/underwear/bottom/panties_uk + name = "Panties - UK" + icon_state = "panties_uk" gender = FEMALE - covers_chest = TRUE /datum/sprite_accessory/underwear/bottom/swimsuit name = "Swimsuit, One Piece - Black" @@ -173,6 +169,12 @@ gender = FEMALE covers_chest = TRUE +/datum/sprite_accessory/underwear/bottom/swimsuit_red + name = "Swimsuit, One Piece - Red" + icon_state = "swimming_red" + gender = FEMALE + covers_chest = TRUE + /datum/sprite_accessory/underwear/bottom/thong name = "Thong" icon_state = "thong" @@ -184,5 +186,3 @@ icon_state = "thong_babydoll" has_color = TRUE gender = FEMALE - - diff --git a/code/modules/mob/dead/new_player/sprite_accessories/wings.dm b/code/modules/mob/dead/new_player/sprite_accessories/wings.dm index fb03df88a1..fb71bb483d 100644 --- a/code/modules/mob/dead/new_player/sprite_accessories/wings.dm +++ b/code/modules/mob/dead/new_player/sprite_accessories/wings.dm @@ -58,6 +58,10 @@ dimension_y = 34 relevant_layers = list(BODY_BEHIND_LAYER, BODY_ADJ_LAYER, BODY_FRONT_LAYER) +/datum/sprite_accessory/deco_wings/atlas + name = "Atlas" + icon_state = "atlas" + /datum/sprite_accessory/deco_wings/bat name = "Bat" icon_state = "bat" @@ -66,6 +70,10 @@ name = "Bee" icon_state = "bee" +/datum/sprite_accessory/deco_wings/deathhead + name = "Deathshead" + icon_state = "deathhead" + /datum/sprite_accessory/deco_wings/fairy name = "Fairy" icon_state = "fairy" @@ -74,14 +82,6 @@ name = "Feathery" icon_state = "feathery" -/datum/sprite_accessory/deco_wings/atlas - name = "Atlas" - icon_state = "atlas" - -/datum/sprite_accessory/deco_wings/deathhead - name = "Deathshead" - icon_state = "deathhead" - /datum/sprite_accessory/deco_wings/firewatch name = "Firewatch" icon_state = "firewatch" @@ -150,6 +150,10 @@ icon_state = "none" relevant_layers = null +/datum/sprite_accessory/insect_wings/atlas + name = "Atlas" + icon_state = "atlas" + /datum/sprite_accessory/insect_wings/bat name = "Bat" icon_state = "bat" @@ -158,6 +162,10 @@ name = "Bee" icon_state = "bee" +/datum/sprite_accessory/insect_wings/deathhead + name = "Deathshead" + icon_state = "deathhead" + /datum/sprite_accessory/insect_wings/fairy name = "Fairy" icon_state = "fairy" @@ -166,14 +174,6 @@ name = "Feathery" icon_state = "feathery" -/datum/sprite_accessory/insect_wings/atlas - name = "Atlas" - icon_state = "atlas" - -/datum/sprite_accessory/insect_wings/deathhead - name = "Deathshead" - icon_state = "deathhead" - /datum/sprite_accessory/insect_wings/firewatch name = "Firewatch" icon_state = "firewatch" @@ -182,6 +182,10 @@ name = "Gothic" icon_state = "gothic" +/datum/sprite_accessory/insect_wings/jungle + name = "Jungle" + icon_state = "jungle" + /datum/sprite_accessory/insect_wings/lovers name = "Lovers" icon_state = "lovers" @@ -198,6 +202,10 @@ name = "Moon Fly" icon_state = "moonfly" +/datum/sprite_accessory/insect_wings/oakworm + name = "Oak Worm" + icon_state = "oakworm" + /datum/sprite_accessory/insect_wings/plain name = "Plain" icon_state = "plain" @@ -230,14 +238,6 @@ name = "White Fly" icon_state = "whitefly" -/datum/sprite_accessory/insect_wings/oakworm - name = "Oak Worm" - icon_state = "oakworm" - -/datum/sprite_accessory/insect_wings/jungle - name = "Jungle" - icon_state = "jungle" - /datum/sprite_accessory/insect_wings/witchwing name = "Witch Wing" icon_state = "witchwing" From 142dee3645ef8f52be25c5292e94e23a7eff4b13 Mon Sep 17 00:00:00 2001 From: shellspeed1 <46614774+shellspeed1@users.noreply.github.com> Date: Mon, 24 Aug 2020 12:47:56 -0700 Subject: [PATCH 52/94] Update iv_drip.dm --- code/game/machinery/iv_drip.dm | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/code/game/machinery/iv_drip.dm b/code/game/machinery/iv_drip.dm index bf71786a05..3720466bcb 100644 --- a/code/game/machinery/iv_drip.dm +++ b/code/game/machinery/iv_drip.dm @@ -3,13 +3,14 @@ /obj/machinery/iv_drip name = "\improper IV drip" - desc = "An IV drip with an advanced infusion pump that can both drain blood into and inject liquids from attached containers. Blood packs are processed at an accelerated rate." + desc = "An IV drip with an advanced infusion pump that can both drain blood into and inject liquids from attached containers. Blood packs are processed at an accelerated rate. Alt-Click to change the transfer rate." icon = 'icons/obj/iv_drip.dmi' icon_state = "iv_drip" anchored = FALSE mouse_drag_pointer = MOUSE_ACTIVE_POINTER var/mob/living/carbon/attached var/mode = IV_INJECTING + var/dripfeed = FALSE var/obj/item/reagent_containers/beaker var/static/list/drip_containers = typecacheof(list(/obj/item/reagent_containers/blood, /obj/item/reagent_containers/food, @@ -132,9 +133,11 @@ if(mode) if(beaker.reagents.total_volume) var/transfer_amount = 5 + if (dripfeed) + transfer_amount = 1 if(istype(beaker, /obj/item/reagent_containers/blood)) // speed up transfer on blood packs - transfer_amount = 10 + transfer_amount *= 2 var/fraction = min(transfer_amount/beaker.reagents.total_volume, 1) //the fraction that is transfered of the total volume beaker.reagents.reaction(attached, INJECT, fraction, FALSE) //make reagents reacts, but don't spam messages beaker.reagents.trans_to(attached, transfer_amount) @@ -169,6 +172,16 @@ else toggle_mode() +/obj/machinery/iv_drip/AltClick(mob/living/user) + if(!user.canUseTopic(src, be_close=TRUE)) + return + if(dripfeed) + dripfeed = FALSE + to_chat(usr, "You loosen the valve to speed up the [src].") + else + dripfeed = TRUE + to_chat(usr, "You tighten the valve to slowly drip-feed the contents of [src].") + /obj/machinery/iv_drip/attack_robot(mob/user) if(Adjacent(user)) attack_hand(user) From de7ecefad27fafaa4833209fa530c3f35a866207 Mon Sep 17 00:00:00 2001 From: shellspeed1 <46614774+shellspeed1@users.noreply.github.com> Date: Mon, 24 Aug 2020 15:07:40 -0700 Subject: [PATCH 53/94] minor description change --- code/game/machinery/iv_drip.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/machinery/iv_drip.dm b/code/game/machinery/iv_drip.dm index 3720466bcb..ff6f96a29f 100644 --- a/code/game/machinery/iv_drip.dm +++ b/code/game/machinery/iv_drip.dm @@ -240,7 +240,7 @@ /obj/machinery/iv_drip/telescopic name = "telescopic IV drip" - desc = "An IV drip with an advanced infusion pump that can both drain blood into and inject liquids from attached containers. Blood packs are processed at an accelerated rate. This one is telescopic, and can be picked up and put down." + desc = "An IV drip with an advanced infusion pump that can both drain blood into and inject liquids from attached containers. Blood packs are processed at an accelerated rate. This one is telescopic, and can be picked up and put down.Alt-Click with a beaker attached to change the transfer rate." icon_state = "iv_drip" /obj/machinery/iv_drip/telescopic/update_icon_state() From 8a499e6ba71749593472e9b82dd7a9d2731bded3 Mon Sep 17 00:00:00 2001 From: lolman360 Date: Tue, 25 Aug 2020 10:10:53 +1000 Subject: [PATCH 54/94] kek --- strings/traumas.json | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/strings/traumas.json b/strings/traumas.json index 58170bd55a..607ea3af71 100644 --- a/strings/traumas.json +++ b/strings/traumas.json @@ -131,7 +131,8 @@ "@pick(semicolon)*weh", "@pick(semicolon)My balls finally feel full, again.", "@pick(semicolon)Assaltign a sec osficer aren't crime if ur @pick(roles)", - ";SEC I SPILED MU JICE HELELPH HELPJ JLEP HELP" + ";SEC I SPILED MU JICE HELELPH HELPJ JLEP HELP", + "@pick(semicolon) atmos is chmesitry is radation fast air is FASTER cheemsitry and FASTER RADIATION AND FASTER DEATH!!!" ], "mutations": [ @@ -199,7 +200,7 @@ "abdoocters", "revinent" ], - + "bug": [ "", "IS TIS A BUG??", @@ -207,7 +208,7 @@ "BUG!!!", "HUE, FEATURE!!" ], - + "semicolon": [ "", ";", @@ -271,7 +272,7 @@ "arrdee", "sek" ], - + "cargo": [ "GUNS", "HATS", @@ -279,7 +280,7 @@ "MEMES", "GLOWY CYSTAL" ], - + "s_roles": [ "ert", "shadowlig", From 931e48a9949aee3a0a03d6969cff1a7271ecb50d Mon Sep 17 00:00:00 2001 From: lolman360 Date: Tue, 25 Aug 2020 10:12:53 +1000 Subject: [PATCH 55/94] this is funnier --- strings/traumas.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strings/traumas.json b/strings/traumas.json index 607ea3af71..f8fed95c98 100644 --- a/strings/traumas.json +++ b/strings/traumas.json @@ -132,7 +132,7 @@ "@pick(semicolon)My balls finally feel full, again.", "@pick(semicolon)Assaltign a sec osficer aren't crime if ur @pick(roles)", ";SEC I SPILED MU JICE HELELPH HELPJ JLEP HELP", - "@pick(semicolon) atmos is chmesitry is radation fast air is FASTER cheemsitry and FASTER RADIATION AND FASTER DEATH!!!" + "@pick(semicolon) atmos is chemistyr is radation fast air is FASTER cheemsitry and FASTER RADIATION AND FASTER DEATH!!!" ], "mutations": [ From 6061900c24b4fb20b2e855276b1732b55cdbb17d Mon Sep 17 00:00:00 2001 From: Changelogs Date: Tue, 25 Aug 2020 00:14:20 +0000 Subject: [PATCH 56/94] Automatic changelog compile [ci skip] --- html/changelog.html | 22 ++++++++++++++++++++++ html/changelogs/.all_changelog.yml | 14 ++++++++++++++ html/changelogs/AutoChangeLog-pr-13225.yml | 4 ---- html/changelogs/AutoChangeLog-pr-13238.yml | 4 ---- html/changelogs/AutoChangeLog-pr-13240.yml | 4 ---- html/changelogs/AutoChangeLog-pr-13241.yml | 4 ---- html/changelogs/AutoChangeLog-pr-13242.yml | 4 ---- 7 files changed, 36 insertions(+), 20 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-13225.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13238.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13240.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13241.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13242.yml diff --git a/html/changelog.html b/html/changelog.html index d2f9fd9a86..9adfbe5691 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,28 @@ -->
+

25 August 2020

+

Hatterhat updated:

+
    +
  • Insidious combat gloves have been replaced by insidious guerilla gloves. They're generally the same, except now you can tackle with them.
  • +
+

Literallynotpickles updated:

+
    +
  • You can now equip handheld crew monitors on all medical-related winter coats.
  • +
+

Putnam3145 updated:

+
    +
  • vore now ejects occupants on death
  • +
+

raspy-on-osu updated:

+
    +
  • Thermoelectric Generator power output
  • +
+

timothyteakettle updated:

+
    +
  • I.P.Cs now short their circuits when expressing emotion, causing sparks to appear around them.
  • +
+

24 August 2020

MrJWhit updated:

    diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index 88aef958e8..08203d0c46 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -27072,3 +27072,17 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. - rscadd: three new items are in the loadout for all donators zeroisthebiggay: - rscadd: contraband black evening gloves in kinkvend +2020-08-25: + Hatterhat: + - rscadd: Insidious combat gloves have been replaced by insidious guerilla gloves. + They're generally the same, except now you can tackle with them. + Literallynotpickles: + - tweak: You can now equip handheld crew monitors on all medical-related winter + coats. + Putnam3145: + - tweak: vore now ejects occupants on death + raspy-on-osu: + - tweak: Thermoelectric Generator power output + timothyteakettle: + - tweak: I.P.Cs now short their circuits when expressing emotion, causing sparks + to appear around them. diff --git a/html/changelogs/AutoChangeLog-pr-13225.yml b/html/changelogs/AutoChangeLog-pr-13225.yml deleted file mode 100644 index d185917e7f..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13225.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "raspy-on-osu" -delete-after: True -changes: - - tweak: "Thermoelectric Generator power output" diff --git a/html/changelogs/AutoChangeLog-pr-13238.yml b/html/changelogs/AutoChangeLog-pr-13238.yml deleted file mode 100644 index 8e3d2c148b..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13238.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Hatterhat" -delete-after: True -changes: - - rscadd: "Insidious combat gloves have been replaced by insidious guerilla gloves. They're generally the same, except now you can tackle with them." diff --git a/html/changelogs/AutoChangeLog-pr-13240.yml b/html/changelogs/AutoChangeLog-pr-13240.yml deleted file mode 100644 index 396515c90e..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13240.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "timothyteakettle" -delete-after: True -changes: - - tweak: "I.P.Cs now short their circuits when expressing emotion, causing sparks to appear around them." diff --git a/html/changelogs/AutoChangeLog-pr-13241.yml b/html/changelogs/AutoChangeLog-pr-13241.yml deleted file mode 100644 index f11a9408b3..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13241.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Putnam3145" -delete-after: True -changes: - - tweak: "vore now ejects occupants on death" diff --git a/html/changelogs/AutoChangeLog-pr-13242.yml b/html/changelogs/AutoChangeLog-pr-13242.yml deleted file mode 100644 index 0cfcdf183b..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13242.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Literallynotpickles" -delete-after: True -changes: - - tweak: "You can now equip handheld crew monitors on all medical-related winter coats." From 70c1dc02384322f2791e3910ca9718bc587993fa Mon Sep 17 00:00:00 2001 From: EmeraldSundisk Date: Mon, 24 Aug 2020 18:21:18 -0700 Subject: [PATCH 57/94] Update CogStation.dmm --- _maps/map_files/CogStation/CogStation.dmm | 146328 +------------------ 1 file changed, 8023 insertions(+), 138305 deletions(-) diff --git a/_maps/map_files/CogStation/CogStation.dmm b/_maps/map_files/CogStation/CogStation.dmm index 40a57135fd..5bbbf1eeec 100644 --- a/_maps/map_files/CogStation/CogStation.dmm +++ b/_maps/map_files/CogStation/CogStation.dmm @@ -1,138308 +1,8026 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aaa" = ( -/turf/open/space/basic, -/area/space) -"aab" = ( -/obj/structure/sign/poster/official/anniversary_vintage_reprint, -/turf/closed/wall/r_wall, -/area/science/research{ - name = "Research Sector" - }) -"aac" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/maintenance/fore) -"aad" = ( -/turf/open/floor/engine{ - name = "Holodeck Projector Floor" - }, -/area/holodeck/rec_center) -"aae" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 4; - height = 12; - id = "arrivals_stationary"; - name = "cog arrivals"; - roundstart_template = /datum/map_template/shuttle/arrival/cog; - width = 9 - }, -/turf/open/space/basic, -/area/space) -"aaf" = ( -/turf/closed/wall, -/area/science/test_area) -"aag" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel/stairs/medium, -/area/hallway/secondary/entry) -"aah" = ( -/obj/structure/sign/warning/electricshock, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"aai" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/turf/closed/wall/r_wall/rust, -/area/maintenance/fore) -"aaj" = ( -/turf/closed/wall/r_wall, -/area/maintenance/port/fore) -"aak" = ( -/obj/machinery/conveyor/auto{ - id = "pb" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"aal" = ( -/turf/closed/wall, -/area/maintenance/port/fore) -"aam" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aan" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/ai_monitored/security/armory) -"aao" = ( -/obj/machinery/power/solar{ - id = "forestarboard"; - name = "Fore-Starboard Solar Array" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/fore) -"aap" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aaq" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aar" = ( -/obj/machinery/conveyor/auto{ - dir = 8; - id = "pb" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"aas" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/window/reinforced/spawner/north, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aat" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/observatory"; - dir = 1; - name = "Observatory APC"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aau" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/port/fore"; - dir = 8; - name = "Port Bow Maintenance APC"; - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aav" = ( -/obj/machinery/conveyor/auto{ - dir = 8; - id = "solar" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"aaw" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/test_area) -"aax" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"aay" = ( -/obj/structure/sign/warning/electricshock, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"aaz" = ( -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/ai_monitored/security/armory) -"aaA" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"aaB" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/kitchen/backroom"; - dir = 1; - name = "Kitchen Coldroom APC"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"aaC" = ( -/obj/structure/closet/secure_closet/lethalshots, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/storage/box/firingpins, -/obj/item/storage/box/firingpins, -/obj/effect/spawner/lootdrop/armory_contraband/metastation, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"aaD" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"aaE" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/camera{ - c_tag = "Port Bow Maintenance - Fore"; - network = list("ss13","rd") - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aaF" = ( -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"aaG" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/stairs/left, -/area/security/brig) -"aaH" = ( -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/obj/machinery/camera/motion{ - c_tag = "Armory Motion Sensor"; - pixel_x = 22 - }, -/obj/structure/rack, -/obj/item/gun/energy/e_gun{ - pixel_y = -6 - }, -/obj/item/gun/energy/e_gun{ - pixel_y = -3 - }, -/obj/item/gun/energy/e_gun, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"aaI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aaJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"aaK" = ( -/obj/machinery/power/solar{ - id = "foreport"; - name = "Fore-Port Solar Array" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port) -"aaL" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/space/basic, -/area/solar/port) -"aaM" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space/basic, -/area/solar/port) -"aaN" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/security/brig) -"aaO" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/space/basic, -/area/solar/starboard/fore) -"aaP" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space/basic, -/area/solar/starboard/fore) -"aaQ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"aaR" = ( -/obj/machinery/vending/snack/random, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aaS" = ( -/turf/open/floor/plasteel, -/area/security/brig) -"aaT" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/space/basic, -/area/solar/starboard/fore) -"aaU" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"aaV" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/starboard/fore) -"aaW" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/space/basic, -/area/space/nearstation) -"aaX" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aaY" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 21 - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"aaZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aba" = ( -/obj/machinery/door/airlock/external{ - name = "Arrival Shuttle Airlock" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abc" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/space/basic, -/area/solar/starboard/fore) -"abd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"abe" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/space/basic, -/area/solar/starboard/fore) -"abf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"abg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abh" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/port) -"abi" = ( -/obj/machinery/power/solar{ - id = "foreport"; - name = "Fore-Port Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/port) -"abj" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space/basic, -/area/solar/starboard/fore) -"abk" = ( -/obj/structure/closet/crate/secure/gear{ - name = "Grenade Crate" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/storage/box/flashbangs{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/storage/box/teargas{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier, -/obj/item/grenade/barrier, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"abl" = ( -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/structure/rack, -/obj/item/gun/energy/laser{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/gun/energy/laser, -/obj/item/gun/energy/laser{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"abm" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"abn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_y = 6 - }, -/obj/item/gun/ballistic/shotgun/riot, -/obj/item/gun/ballistic/shotgun/riot{ - pixel_y = -6 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"abo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"abp" = ( -/turf/closed/wall/r_wall, -/area/space/nearstation) -"abq" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/item/storage/box/rubbershot{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/storage/box/rubbershot, -/obj/item/storage/box/rubbershot{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"abr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"abs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abv" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/fore) -"abw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/suit/armor/bulletproof, -/obj/item/clothing/suit/armor/bulletproof{ - pixel_x = 3; - pixel_y = -3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001 - }, -/obj/item/clothing/head/helmet/alt{ - layer = 3.00001; - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"abx" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/port) -"aby" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space/basic, -/area/space/nearstation) -"abz" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/fore) -"abA" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"abB" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/closed/wall, -/area/crew_quarters/theatre/clown) -"abC" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/closed/wall, -/area/crew_quarters/theatre/clown) -"abD" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"abE" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"abF" = ( -/obj/machinery/mass_driver{ - dir = 8; - id = "sb_out"; - name = "Router Driver" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"abG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/box/trackimp{ - pixel_x = 4 - }, -/obj/item/storage/box/chemimp{ - pixel_x = -4 - }, -/obj/item/storage/lockbox/loyalty, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"abH" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/space/basic, -/area/space/nearstation) -"abI" = ( -/obj/structure/table, -/obj/structure/mirror{ - icon_state = "mirror_broke"; - pixel_x = -24 - }, -/obj/item/storage/briefcase, -/obj/item/circuitboard/machine/vending/donksofttoyvendor, -/obj/item/storage/pill_bottle/happy, -/obj/effect/decal/cleanable/dirt, -/obj/item/paper/fluff/cogstation/cluwne, -/turf/open/floor/plating, -/area/crew_quarters/theatre/clown) -"abJ" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "sb_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"abK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"abM" = ( -/turf/closed/wall/r_wall, -/area/router/aux) -"abN" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/checker, -/area/hallway/secondary/entry) -"abO" = ( -/obj/structure/chair/comfy/brown, -/obj/item/beacon, -/turf/open/floor/carpet/royalblue, -/area/bridge) -"abP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/gun/energy/ionrifle{ - pixel_y = 4 - }, -/obj/item/gun/energy/temperature/security{ - pixel_y = -4 - }, -/obj/item/clothing/suit/armor/laserproof, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"abQ" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plating, -/area/maintenance/fore) -"abR" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/router/aux) -"abS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/brig) -"abT" = ( -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/dorms/purple"; - name = "Crew Quarters A APC"; - pixel_y = -26 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"abU" = ( -/obj/machinery/space_heater, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/dorms/blue"; - name = "Crew Quarters B APC"; - pixel_y = -26 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/fore) -"abV" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"abW" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/router/aux) -"abX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/checkpoint) -"abY" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"abZ" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "sb_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"aca" = ( -/obj/machinery/conveyor{ - dir = 5; - id = "pb_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"acb" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/maintenance/fore) -"acc" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "solitarylock"; - name = "Brig Lockdown" - }, -/turf/open/floor/plating, -/area/security/brig) -"acd" = ( -/obj/machinery/button/door{ - id = "armory"; - name = "Armory Blast Door Control"; - pixel_x = -28; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"ace" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "pb_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"acf" = ( -/obj/machinery/mass_driver{ - dir = 4; - id = "pb_out"; - name = "Router Driver" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"acg" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"ach" = ( -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"aci" = ( -/turf/closed/wall, -/area/medical{ - name = "Medical Booth" - }) -"acj" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "solar_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"ack" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/rack, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/suit/armor/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/clothing/head/helmet/riot, -/obj/item/shield/riot{ - pixel_x = -6 - }, -/obj/item/shield/riot{ - pixel_x = -6 - }, -/obj/item/shield/riot{ - pixel_x = -6 - }, -/obj/item/clothing/mask/gas/sechailer/swat{ - pixel_x = -4 - }, -/obj/item/clothing/mask/gas/sechailer/swat{ - pixel_x = -4 - }, -/obj/item/clothing/mask/gas/sechailer/swat{ - pixel_x = -4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"acl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Armory"; - req_one_access_txt = "3" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"acm" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"acn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aco" = ( -/turf/open/floor/plating, -/area/maintenance/port/fore) -"acp" = ( -/turf/open/floor/plating/airless, -/area/science/test_area) -"acq" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/machinery/conveyor{ - id = "solar_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"acr" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 7 - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"acs" = ( -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"act" = ( -/turf/closed/wall/r_wall, -/area/maintenance/fore) -"acu" = ( -/obj/structure/table, -/obj/machinery/light, -/obj/machinery/recharger, -/obj/item/assembly/signaler{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/item/assembly/signaler{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/item/assembly/signaler{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/electropack{ - pixel_x = -10 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"acv" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/space/basic, -/area/solar/starboard/fore) -"acw" = ( -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"acx" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"acy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/gun/energy/e_gun/advtaser{ - pixel_y = 6 - }, -/obj/item/gun/energy/e_gun/advtaser, -/obj/item/gun/energy/e_gun/advtaser{ - pixel_y = -6 - }, -/obj/structure/rack, -/turf/open/floor/plasteel, -/area/ai_monitored/security/armory) -"acz" = ( -/obj/machinery/mass_driver{ - dir = 4; - id = "sb_in"; - name = "Router Driver" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"acA" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "sb_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"acB" = ( -/obj/machinery/conveyor{ - dir = 6; - id = "sb_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"acC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/poddoor{ - id = "armory"; - name = "Armory" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"acD" = ( -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"acE" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/closed/wall/r_wall, -/area/maintenance/fore) -"acF" = ( -/turf/closed/wall, -/area/crew_quarters/lounge) -"acG" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "pb_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"acH" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"acI" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"acJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/conveyor{ - id = "solar_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"acK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical{ - name = "Medical Booth" - }) -"acL" = ( -/obj/machinery/door/poddoor{ - id = "executionspaceblast" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"acM" = ( -/obj/structure/sign/warning{ - name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; - pixel_x = -32 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"acN" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"acO" = ( -/obj/structure/sign/warning/electricshock, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"acP" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/maintenance/fore) -"acQ" = ( -/turf/closed/wall, -/area/crew_quarters/theatre/clown) -"acR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/turf/open/floor/plasteel/checker, -/area/hallway/secondary/entry) -"acS" = ( -/obj/machinery/atmospherics/components/binary/valve/digital/on, -/turf/open/floor/plating, -/area/maintenance/fore) -"acT" = ( -/obj/structure/table/reinforced, -/obj/item/modular_computer/laptop/preset/civilian, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_x = 26 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"acU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/camera{ - c_tag = "Armory Access"; - network = list("ss13","rd") - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"acV" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/machinery/washing_machine, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"acW" = ( -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal/deliveryChute, -/turf/open/floor/plating/airless, -/area/router/aux) -"acX" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/fore) -"acY" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/space/basic, -/area/space/nearstation) -"acZ" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"ada" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/ai_monitored/security/armory) -"adb" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/closed/wall/r_wall, -/area/security/brig) -"adc" = ( -/obj/machinery/conveyor{ - id = "sb_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"add" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/crew_quarters/observatory) -"ade" = ( -/obj/machinery/atmospherics/components/binary/valve/digital/on, -/turf/closed/wall/r_wall, -/area/maintenance/fore) -"adf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/crew_quarters/observatory) -"adg" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"adh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/crew_quarters/observatory) -"adi" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"adj" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/observatory) -"adk" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/conveyor{ - id = "solar_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"adl" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"adm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Fore Maintenance"; - req_one_access_txt = "12;46" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"adn" = ( -/obj/structure/sign/nanotrasen, -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"ado" = ( -/obj/machinery/power/solar{ - id = "forestarboard"; - name = "Fore-Starboard Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/fore) -"adp" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plating, -/area/tcommsat/computer) -"adq" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/entry) -"adr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"ads" = ( -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"adt" = ( -/turf/open/floor/plating, -/area/maintenance/fore) -"adu" = ( -/obj/structure/sign/warning{ - name = "\improper CONSTRUCTION AREA"; - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"adv" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plating, -/area/maintenance/fore) -"adw" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/conveyor/auto{ - dir = 1; - id = "solar" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"adx" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space/basic, -/area/solar/starboard/fore) -"ady" = ( -/obj/machinery/power/tracker, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating/airless, -/area/solar/starboard/fore) -"adz" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"adA" = ( -/obj/effect/turf_decal/tile/red, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"adB" = ( -/obj/structure/sign/poster/official/enlist{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"adC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/crew_quarters/observatory) -"adD" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/vending/security, -/turf/open/floor/plasteel, -/area/security/brig) -"adE" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/item/gun/energy/laser/practice, -/obj/item/gun/energy/laser/practice, -/obj/machinery/syndicatebomb/training, -/turf/open/floor/plasteel, -/area/security/brig) -"adF" = ( -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"adG" = ( -/obj/machinery/mass_driver{ - id = "serv_in"; - name = "Router Driver" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"adH" = ( -/obj/machinery/conveyor/auto{ - dir = 1; - id = "solar" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"adI" = ( -/obj/machinery/disposal/bin{ - name = "Service Delivery" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, -/area/hydroponics) -"adJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/closet, -/obj/item/clothing/under/misc/staffassistant, -/obj/item/clothing/under/misc/staffassistant, -/obj/item/clothing/under/misc/staffassistant, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"adK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/stairs/medium, -/area/security/brig) -"adL" = ( -/obj/machinery/mass_driver{ - id = "starboard_in"; - name = "Router Driver" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"adM" = ( -/turf/closed/wall, -/area/crew_quarters/observatory) -"adN" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"adO" = ( -/obj/structure/noticeboard{ - dir = 4; - pixel_x = -27 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"adP" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"adQ" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"adR" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/storage/box/beakers, -/obj/item/hand_labeler, -/obj/item/folder/white{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/stamp/denied{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/stamp, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"adS" = ( -/turf/closed/wall, -/area/construction) -"adT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/construction) -"adU" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"adV" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/starboard/fore"; - dir = 1; - name = "Starboard Bow Maintenance APC"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"adW" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/stairs/right, -/area/security/brig) -"adX" = ( -/obj/structure/chair/comfy/black{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"adY" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"adZ" = ( -/turf/open/floor/plating, -/area/tcommsat/computer) -"aea" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"aeb" = ( -/obj/structure/table, -/obj/item/modular_computer/laptop/preset/civilian, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/security/brig) -"aec" = ( -/turf/closed/wall/r_wall, -/area/construction) -"aed" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aee" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/space/basic, -/area/solar/port) -"aef" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aeg" = ( -/obj/structure/sign/warning/electricshock, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/security/armory) -"aeh" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aei" = ( -/obj/machinery/light, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/hallway/secondary/entry"; - dir = 8; - name = "Arrival Shuttle Hallway APC"; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aej" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/turf/open/floor/plating/airless, -/area/engine/engineering{ - name = "Engine Room" - }) -"aek" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/machinery/photocopier, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"ael" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"aem" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"aen" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aeo" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/circuitboard/machine/sleeper, -/obj/structure/frame/machine, -/turf/open/floor/plasteel, -/area/construction) -"aep" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -24 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"aeq" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"aer" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aes" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/sign/poster/official/random{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"aet" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aeu" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"aev" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/maintenance/fore) -"aew" = ( -/turf/closed/wall/r_wall, -/area/security/prison) -"aex" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/table, -/obj/item/storage/hypospraykit/regular, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"aey" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"aez" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"aeA" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"aeB" = ( -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/toilet/fitness"; - name = "Fitness Toilets APC"; - pixel_y = -26 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aeC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"aeD" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aeE" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plasteel, -/area/construction) -"aeF" = ( -/obj/structure/table, -/obj/item/assembly/infra, -/obj/item/assembly/voice{ - pixel_x = 4; - pixel_y = 12 - }, -/obj/item/assembly/health{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 4; - pixel_y = -2 - }, -/turf/open/floor/plating, -/area/construction) -"aeG" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 6 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/construction"; - dir = 1; - name = "Construction Area APC"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/construction) -"aeH" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aeI" = ( -/turf/closed/wall/r_wall, -/area/engine/engineering{ - name = "Engine Room" - }) -"aeJ" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/security/prison) -"aeK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/secondary/entry) -"aeL" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aeM" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aeN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Router"; - req_one_access_txt = "1" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aeO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aeP" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space/basic, -/area/solar/starboard/fore) -"aeQ" = ( -/obj/structure/closet/secure_closet/brig, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aeR" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"aeS" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"aeT" = ( -/obj/structure/table, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"aeU" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"aeV" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aeW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Construction Area"; - req_access_txt = "12" - }, -/turf/open/floor/plasteel, -/area/construction) -"aeX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aeY" = ( -/turf/closed/wall, -/area/crew_quarters/toilet/fitness) -"aeZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"afa" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"afb" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"afc" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"afd" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"afe" = ( -/obj/machinery/door/airlock, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"aff" = ( -/turf/closed/wall, -/area/crew_quarters/fitness) -"afg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/binary/valve/digital/on, -/turf/open/floor/plating, -/area/maintenance/fore) -"afh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable, -/obj/machinery/power/apc/highcap/fifteen_k{ - areastring = /area/maintenance/solars/starboard/fore; - dir = 4; - name = "Starboard Bow Solars APC"; - pixel_x = 28 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"afi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"afj" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"afk" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"afl" = ( -/obj/effect/landmark/secequipment, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"afm" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/construction) -"afn" = ( -/obj/machinery/biogenerator, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/prison) -"afo" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/landmark/start/mime, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/theatre/mime"; - dir = 4; - name = "Mime's Office APC"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/theatre/mime) -"afp" = ( -/turf/open/floor/plating, -/area/construction) -"afq" = ( -/obj/structure/table, -/obj/item/modular_computer/laptop/preset/civilian, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"afr" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/camera{ - pixel_y = -8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"afs" = ( -/obj/machinery/flasher{ - id = "executionflash"; - pixel_x = -25 - }, -/obj/structure/chair/e_chair, -/obj/effect/decal/cleanable/ash{ - pixel_y = -8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aft" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/maintenance/fore) -"afu" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"afv" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"afw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"afx" = ( -/obj/machinery/computer/holodeck{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"afy" = ( -/obj/structure/table, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"afz" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"afA" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"afB" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"afC" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"afD" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/closed/wall/r_wall, -/area/maintenance/port/fore) -"afE" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/closed/wall, -/area/crew_quarters/theatre/clown) -"afF" = ( -/obj/machinery/sparker{ - id = "executionburn"; - pixel_x = 25 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"afG" = ( -/obj/structure/sink{ - pixel_y = 28 - }, -/obj/item/paper/guides/jobs/hydroponics, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/prison) -"afH" = ( -/obj/structure/table, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/clothing/mask/gas/sechailer, -/obj/item/clothing/mask/gas/sechailer, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - name = "Security RC"; - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"afI" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"afJ" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/plant_analyzer, -/obj/item/cultivator, -/obj/item/reagent_containers/glass/bucket, -/obj/item/reagent_containers/glass/bucket, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/prison) -"afK" = ( -/turf/closed/wall, -/area/crew_quarters/kitchen) -"afL" = ( -/obj/machinery/door/airlock, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"afM" = ( -/obj/structure/closet/crate/internals, -/obj/machinery/camera{ - c_tag = "Construction Area"; - pixel_x = 22 - }, -/obj/item/flashlight, -/obj/item/clothing/suit/hazardvest, -/obj/item/tank/internals/emergency_oxygen/engi, -/turf/open/floor/plating, -/area/construction) -"afN" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"afO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/washing_machine, -/turf/open/floor/plasteel/checker, -/area/hallway/secondary/entry) -"afP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"afQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"afR" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/structure/table/reinforced, -/obj/item/paicard, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"afS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"afT" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"afU" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/stairs/left, -/area/hallway/secondary/entry) -"afV" = ( -/obj/structure/closet/crate, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/clothing/gloves/color/white, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/structure/sign/poster/contraband/red_rum{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"afW" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/fore) -"afX" = ( -/obj/item/cigbutt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/camera{ - c_tag = "Port Bow Maintenance - Aft"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"afY" = ( -/obj/item/seeds/carrot, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/prison) -"afZ" = ( -/obj/machinery/disposal/bin{ - name = "Brig Catering" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5; - layer = 2.03 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"aga" = ( -/obj/structure/table, -/obj/item/paper/fluff/holodeck/disclaimer, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"agb" = ( -/obj/structure/table, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"agc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/closed/wall/r_wall, -/area/engine/engineering{ - name = "Engine Room" - }) -"agd" = ( -/obj/structure/fans/tiny/invisible, -/obj/docking_port/stationary{ - dwidth = 1; - height = 4; - name = "escape pod loader"; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/space/basic, -/area/space) -"age" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"agf" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"agg" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"agh" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"agi" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"agj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Observatory Access" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"agk" = ( -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"agl" = ( -/obj/machinery/disposal/bin{ - name = "Bar Catering" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6; - layer = 2.03 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/turf/open/floor/plasteel, -/area/crew_quarters/kitchen) -"agm" = ( -/obj/structure/table, -/obj/item/sharpener, -/obj/item/kitchen/knife, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"agn" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/closed/wall, -/area/crew_quarters/lounge) -"ago" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"agp" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"agq" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"agr" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"ags" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"agt" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"agu" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"agv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/brig) -"agw" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/noticeboard{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/displaycase/labcage{ - desc = "A glass lab container for storing smelly creatures."; - name = "stinky panda containment"; - start_showpiece_type = /mob/living/simple_animal/pet/redpanda/stinky - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"agx" = ( -/mob/living/simple_animal/bot/floorbot, -/turf/open/floor/plating, -/area/construction) -"agy" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"agz" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 9 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/fore) -"agA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/warning{ - name = "\improper CONSTRUCTION AREA"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"agB" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/maintenance/fore) -"agC" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/turf/closed/wall/r_wall, -/area/engine/engineering{ - name = "Engine Room" - }) -"agD" = ( -/obj/machinery/seed_extractor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/prison) -"agE" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"agF" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"agG" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/theatre/mime) -"agH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"agI" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/tower, -/obj/item/seeds/amanita, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/prison) -"agJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Fore Maintenance"; - req_one_access_txt = "12;46" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"agK" = ( -/obj/structure/chair/comfy/black, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"agL" = ( -/obj/machinery/power/tracker, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating/airless, -/area/solar/port) -"agM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"agN" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"agO" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Holodeck Door" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"agP" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/prison) -"agQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"agR" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"agS" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"agT" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/suit_storage_unit/engine, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"agU" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_y = 3 - }, -/obj/item/assembly/timer{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/t_scanner{ - pixel_x = -2; - pixel_y = 5 - }, -/obj/item/t_scanner, -/obj/item/assembly/igniter{ - pixel_x = 6; - pixel_y = -4 - }, -/obj/structure/sign/poster/contraband/missing_gloves{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"agV" = ( -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"agW" = ( -/turf/closed/wall/r_wall, -/area/security/processing) -"agX" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - name = "Starboard Bow Solar Exterior Airlock"; - req_access_txt = "10;13" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"agY" = ( -/obj/structure/table, -/obj/item/storage/crayons, -/obj/item/toy/beach_ball/holoball, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"agZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aha" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"ahb" = ( -/obj/machinery/processor, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"ahc" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_y = 8 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"ahd" = ( -/obj/structure/sink/kitchen{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"ahe" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ahf" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external/glass{ - name = "Labor Camp Shuttle Airlock" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"ahg" = ( -/turf/closed/wall/r_wall, -/area/security/warden) -"ahh" = ( -/obj/machinery/power/port_gen/pacman, -/turf/open/floor/plating, -/area/tcommsat/computer) -"ahi" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/blue, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"ahj" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Fore Maintenance - Fore"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"ahk" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/processing) -"ahl" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"ahm" = ( -/obj/structure/falsewall/reinforced, -/turf/closed/wall, -/area/maintenance/port/fore) -"ahn" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aho" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"ahp" = ( -/obj/machinery/gulag_item_reclaimer{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"ahq" = ( -/turf/open/floor/plasteel, -/area/security/processing) -"ahr" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/ambrosia, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/prison) -"ahs" = ( -/obj/machinery/light, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/machinery/camera{ - c_tag = "Kitchen"; - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"aht" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/item/storage/box/disks, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"ahu" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hydroponics) -"ahv" = ( -/obj/structure/sign/warning{ - name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; - pixel_x = 32 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"ahw" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"ahx" = ( -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"ahy" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/obj/machinery/door/poddoor/preopen{ - id = "solitarylock"; - name = "Brig Lockdown" - }, -/turf/open/floor/plating, -/area/security/warden) -"ahz" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/fitness) -"ahA" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/crew_quarters/fitness) -"ahB" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/door/window/eastleft{ - name = "Bathroom Stall" - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/fitness) -"ahC" = ( -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/fitness) -"ahD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/fore"; - dir = 1; - name = "Fore Maintenance APC"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"ahE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"ahF" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/structure/mirror{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/fitness) -"ahG" = ( -/obj/structure/sink{ - pixel_y = 28 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/fitness) -"ahH" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"ahI" = ( -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/fitness"; - name = "Fitness Room APC"; - pixel_y = -26 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"ahJ" = ( -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"ahK" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ahL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/crew_quarters/observatory) -"ahM" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"ahN" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ahO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"ahP" = ( -/turf/closed/wall, -/area/maintenance/solars/starboard/fore) -"ahQ" = ( -/obj/structure/closet/lasertag/blue, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"ahR" = ( -/obj/item/beacon, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"ahS" = ( -/obj/structure/closet/cabinet, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"ahT" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/storage/bag/plants, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"ahU" = ( -/obj/machinery/vending/wardrobe/chef_wardrobe, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"ahV" = ( -/obj/structure/closet/lasertag/red, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"ahW" = ( -/obj/structure/closet/secure_closet/personal, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"ahX" = ( -/obj/machinery/deepfryer, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"ahY" = ( -/obj/machinery/vending/autodrobe, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/theatre/clown) -"ahZ" = ( -/obj/structure/table/glass, -/obj/item/storage/toolbox/emergency{ - pixel_y = 4 - }, -/obj/item/radio/off, -/obj/machinery/camera{ - c_tag = "Arrival Shuttle Hallway" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/hallway/secondary/entry) -"aia" = ( -/obj/effect/landmark/start/cook, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"aib" = ( -/obj/structure/table/glass, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/hallway/secondary/entry) -"aic" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/security/armory) -"aid" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/cotton, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/prison) -"aie" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"aif" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aig" = ( -/obj/machinery/camera{ - c_tag = "Observatory Holodeck"; - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"aih" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"aii" = ( -/obj/structure/closet, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/gps, -/turf/open/floor/plasteel, -/area/storage/tools) -"aij" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"aik" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ail" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"aim" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/maintenance/fore) -"ain" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/processing) -"aio" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"aip" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aiq" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/space/basic, -/area/solar/port) -"air" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stack/cable_coil/red{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/stack/cable_coil/red, -/obj/item/screwdriver, -/obj/item/multitool{ - pixel_x = -6; - pixel_y = -2 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"ais" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"ait" = ( -/obj/machinery/vending/dinnerware, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"aiu" = ( -/obj/effect/landmark/start/mime, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/checker, -/area/crew_quarters/theatre/mime) -"aiv" = ( -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks/beer, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aiw" = ( -/obj/machinery/vending/cola/random, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"aix" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/crew_quarters/kitchen) -"aiy" = ( -/obj/structure/bed, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/effect/landmark/start/clown, -/obj/item/bedsheet/clown, -/obj/structure/sign/plaques/kiddie/perfect_man{ - pixel_y = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/theatre/clown) -"aiz" = ( -/turf/closed/wall, -/area/maintenance/starboard/fore) -"aiA" = ( -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/construction) -"aiB" = ( -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/kitchen"; - name = "Kitchen APC"; - pixel_y = -26 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aiC" = ( -/turf/closed/wall, -/area/hallway/secondary/service) -"aiD" = ( -/obj/structure/closet/crate/wooden/toy, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Clown's Office"; - pixel_x = 22 - }, -/obj/item/clothing/under/rank/civilian/clown/yellow, -/obj/item/clothing/under/rank/civilian/clown/blue, -/obj/item/clothing/under/rank/civilian/clown/green, -/obj/item/toy/crayon/spraycan/lubecan, -/obj/item/megaphone/clown, -/turf/open/floor/plating, -/area/crew_quarters/theatre/clown) -"aiE" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel, -/area/security/processing) -"aiF" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Starboard Bow Maintenance"; - req_one_access_txt = "12;25;26;28;35;46" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aiG" = ( -/obj/structure/closet, -/obj/structure/window/reinforced, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"aiH" = ( -/obj/machinery/hydroponics/constructable, -/obj/item/seeds/grass, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/security/prison) -"aiI" = ( -/obj/structure/closet/boxinggloves, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"aiJ" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/secondary/entry) -"aiK" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/obj/structure/closet/secure_closet/genpop, -/turf/open/floor/plasteel, -/area/security/brig) -"aiL" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/prison) -"aiM" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/observatory) -"aiN" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aiO" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aiP" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aiQ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"aiR" = ( -/obj/structure/rack, -/obj/item/reagent_containers/glass/beaker/waterbottle, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"aiS" = ( -/obj/item/kirbyplants{ - icon_state = "plant-06" - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"aiT" = ( -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Port Bow Maintainance"; - req_one_access_txt = "1" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aiU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/deepfryer, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"aiV" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 10; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/construction) -"aiW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Observatory" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/observatory) -"aiX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/closed/wall, -/area/crew_quarters/observatory) -"aiY" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/machinery/door/window/eastright{ - name = "Bathroom Stall" - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/fitness) -"aiZ" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/observatory) -"aja" = ( -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/obj/item/caution, -/turf/open/floor/plating, -/area/construction) -"ajb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ajc" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/solar/port) -"ajd" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aje" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ajf" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"ajg" = ( -/obj/structure/table, -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/item/reagent_containers/food/snacks/pie/cream, -/obj/item/instrument/bikehorn, -/obj/item/flashlight/lamp/bananalamp{ - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/theatre/clown) -"ajh" = ( -/obj/structure/table/glass, -/obj/item/paper_bin/construction, -/obj/item/storage/crayons, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/hallway/secondary/entry) -"aji" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"ajj" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ajk" = ( -/obj/effect/landmark/start/clown, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/theatre/clown) -"ajl" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/mob/living/simple_animal/cockroach, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ajm" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/washing_machine, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"ajn" = ( -/obj/machinery/power/smes, -/turf/open/floor/plating, -/area/tcommsat/computer) -"ajo" = ( -/obj/structure/table, -/obj/item/toy/dummy, -/obj/structure/mirror{ - pixel_x = -24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/checker, -/area/crew_quarters/theatre/mime) -"ajp" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/observatory) -"ajq" = ( -/obj/effect/landmark/start/clown, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/theatre/clown"; - dir = 4; - name = "Clown's Office APC"; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/crew_quarters/theatre/clown) -"ajr" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/observatory) -"ajs" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/mint, -/obj/item/reagent_containers/food/condiment/mayonnaise, -/obj/item/bikehorn{ - pixel_x = -8; - pixel_y = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"ajt" = ( -/obj/machinery/atmospherics/components/binary/valve, -/turf/open/floor/plating, -/area/tcommsat/computer) -"aju" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"ajv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/theatre/mime) -"ajw" = ( -/turf/closed/wall, -/area/construction/secondary) -"ajx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"ajy" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/computer/prisoner/management, -/turf/open/floor/plasteel, -/area/security/brig) -"ajz" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ajA" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/secure_closet/genpop, -/turf/open/floor/plasteel, -/area/security/brig) -"ajB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/preopen{ - id = "briglockdown"; - name = "Brig Lockdown" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ajC" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ajD" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/cook, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"ajE" = ( -/obj/structure/closet/secure_closet/freezer/kitchen, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"ajF" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/construction/secondary) -"ajG" = ( -/obj/machinery/computer/arcade, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"ajH" = ( -/obj/structure/rack, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/head/hardhat/red{ - pixel_y = 6 - }, -/obj/item/clothing/mask/gas, -/obj/item/storage/toolbox/mechanical, -/obj/item/crowbar, -/obj/item/extinguisher, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ajI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ajJ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"ajK" = ( -/obj/structure/sign/warning{ - name = "\improper CONSTRUCTION AREA"; - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"ajL" = ( -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/lounge"; - name = "Lounge APC"; - pixel_y = -26 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/observatory) -"ajM" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder{ - pixel_y = 6 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = -8; - pixel_y = 12 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -8; - pixel_y = 6 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"ajN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ajO" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"ajP" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ajQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"ajR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/observatory) -"ajS" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"ajT" = ( -/obj/structure/weightmachine/weightlifter, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"ajU" = ( -/obj/structure/rack, -/obj/item/wrench, -/obj/item/light/tube, -/obj/item/radio/off, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/camera{ - c_tag = "Security - Interrogation Maintenance"; - dir = 1 - }, -/obj/machinery/power/apc/highcap/ten_k{ - areastring = "/area/security/brig"; - dir = 4; - name = "Brig APC"; - pixel_x = 26 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"ajV" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall, -/area/crew_quarters/theatre/mime) -"ajW" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/observatory) -"ajX" = ( -/obj/item/pipe{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/melee/baseball_bat, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/machinery/camera{ - c_tag = "Secondary Construction Area" - }, -/turf/open/floor/plating, -/area/construction/secondary) -"ajY" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ajZ" = ( -/obj/item/multitool, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/machinery/power/apc/highcap/ten_k{ - areastring = "/area/tcommsat/computer"; - dir = 1; - name = "Telecomms Access APC"; - pixel_y = 28 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"aka" = ( -/turf/closed/wall, -/area/crew_quarters/bar) -"akb" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Mime's Office"; - req_access_txt = "46" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/crew_quarters/theatre/mime) -"akc" = ( -/obj/machinery/computer/slot_machine, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/construction/secondary) -"akd" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/checkpoint) -"ake" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/machinery/rnd/production/techfab/department/service, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"akf" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency{ - pixel_y = 4 - }, -/obj/item/electronics/firelock, -/obj/item/electronics/firealarm, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/construction/secondary) -"akg" = ( -/obj/machinery/power/solar_control{ - dir = 4; - id = "foreport"; - name = "Port Bow Solar Control" - }, -/obj/structure/sign/warning/electricshock{ - pixel_x = -32 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"akh" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/construction/secondary) -"aki" = ( -/obj/structure/closet/toolcloset, -/turf/open/floor/plating, -/area/construction/secondary) -"akj" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"akk" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 10; - pixel_y = 4 - }, -/turf/open/floor/plating, -/area/construction/secondary) -"akl" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/computer/shuttle/labor{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"akm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/glass, -/turf/open/floor/plasteel, -/area/construction/secondary) -"akn" = ( -/obj/machinery/power/solar_control{ - id = "forestarboard"; - name = "Starboard Bow Solar Control" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"ako" = ( -/obj/machinery/button/flasher{ - id = "executionflash"; - pixel_x = 7; - pixel_y = 24 - }, -/obj/effect/decal/cleanable/generic, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"akp" = ( -/obj/structure/closet/secure_closet/warden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"akq" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/structure/table/reinforced, -/obj/item/storage/box/prisoner, -/obj/item/razor, -/obj/item/paper/guides/jobs/security/labor_camp, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/security/processing) -"akr" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/computer/prisoner/gulag_teleporter_computer{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Security - Prison Shuttle Dock"; - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"aks" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"akt" = ( -/obj/machinery/computer/prisoner/management, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/central"; - dir = 1; - name = "Brig Control APC"; - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"aku" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"akv" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"akw" = ( -/obj/structure/bed, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"akx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Secondary Construction Area"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/construction/secondary) -"aky" = ( -/obj/machinery/computer/crew, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"akz" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"akA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/security/warden) -"akB" = ( -/obj/machinery/power/smes, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"akC" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/sign/warning/electricshock{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"akD" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/hand_labeler{ - pixel_y = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akE" = ( -/turf/closed/wall/r_wall, -/area/router/sec) -"akF" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akG" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"akH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"akI" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"akJ" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Telecommunications Maintenance"; - req_access_txt = "61" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/tcommsat/computer) -"akK" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"akL" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Security - Brig"; - pixel_x = 22 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akM" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"akN" = ( -/turf/open/space/basic, -/area/router/aux) -"akO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/computer/security/labor{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"akP" = ( -/obj/structure/plasticflaps, -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor{ - name = "Security Router" - }, -/turf/open/floor/plating, -/area/router/sec) -"akQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"akR" = ( -/obj/structure/punching_bag, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"akS" = ( -/obj/structure/rack, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/item/soap/nanotrasen, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/fitness) -"akT" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"akU" = ( -/obj/machinery/door/window/northleft{ - name = "Showers" - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/fitness) -"akV" = ( -/obj/structure/rack, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/item/storage/firstaid/regular, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/fitness) -"akW" = ( -/obj/structure/table/wood, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/item/reagent_containers/hypospray/medipen, -/obj/item/reagent_containers/hypospray/medipen, -/obj/item/reagent_containers/hypospray/medipen, -/obj/item/reagent_containers/hypospray/medipen, -/obj/structure/sign/departments/restroom{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"akX" = ( -/turf/closed/wall, -/area/crew_quarters/dorms/purple) -"akY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"akZ" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"ala" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/secondary/entry) -"alb" = ( -/obj/machinery/power/smes, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"alc" = ( -/obj/structure/fermenting_barrel, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"ald" = ( -/obj/machinery/chem_master/condimaster, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"ale" = ( -/turf/closed/wall, -/area/crew_quarters/dorms/blue) -"alf" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"alg" = ( -/obj/structure/frame/machine, -/obj/item/circuitboard/computer/arcade/minesweeper, -/turf/open/floor/plating, -/area/construction/secondary) -"alh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ali" = ( -/turf/open/floor/plating, -/area/construction/secondary) -"alj" = ( -/obj/machinery/gulag_teleporter, -/turf/open/floor/plasteel, -/area/security/processing) -"alk" = ( -/obj/item/caution, -/turf/open/floor/plating, -/area/construction/secondary) -"all" = ( -/obj/structure/table/glass, -/obj/item/wrench{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/reagent_containers/glass/bottle/mutagen{ - pixel_x = -4 - }, -/turf/open/floor/grass, -/area/hydroponics) -"alm" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/turf/open/floor/grass, -/area/hydroponics) -"aln" = ( -/obj/machinery/hydroponics/constructable, -/turf/open/floor/grass, -/area/hydroponics) -"alo" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"alp" = ( -/obj/machinery/washing_machine, -/turf/open/floor/plasteel, -/area/construction/secondary) -"alq" = ( -/obj/machinery/conveyor/auto{ - id = "sec" - }, -/turf/open/floor/plating, -/area/router/sec) -"alr" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"als" = ( -/obj/machinery/mass_driver{ - dir = 1; - id = "sec_out"; - name = "Router Driver" - }, -/turf/open/floor/plating, -/area/router/sec) -"alt" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external/glass{ - name = "Labor Camp Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"alu" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"alv" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Labor Camp Shuttle Airlock"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"alw" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/start/warden, -/obj/machinery/camera{ - c_tag = "Security - Brig Control"; - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"alx" = ( -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aly" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"alz" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"alA" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms/purple) -"alB" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alC" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alD" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"alE" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms/purple) -"alF" = ( -/obj/machinery/photocopier, -/obj/machinery/newscaster/security_unit{ - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/item/paper/guides/cogstation/letter_sec, -/turf/open/floor/plasteel, -/area/security/warden) -"alG" = ( -/obj/effect/decal/cleanable/blood/old, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"alH" = ( -/obj/structure/table, -/obj/item/storage/box/beakers{ - pixel_x = -8 - }, -/obj/item/storage/box/ingredients{ - pixel_x = 6 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"alI" = ( -/obj/structure/weightmachine/stacklifter, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"alJ" = ( -/obj/machinery/vending/hydroseeds, -/turf/open/floor/grass, -/area/hydroponics) -"alK" = ( -/obj/effect/landmark/xmastree, -/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"alL" = ( -/obj/structure/weightmachine/weightlifter, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"alM" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"alN" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"alO" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms/purple) -"alP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/fore) -"alQ" = ( -/obj/structure/dresser, -/turf/open/floor/carpet/blue, -/area/crew_quarters/dorms/blue) -"alR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/secondary/entry) -"alS" = ( -/obj/structure/table/wood, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/rag, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"alT" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/dorms/blue) -"alU" = ( -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"alV" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/dorms/blue) -"alW" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/processing) -"alX" = ( -/obj/structure/table, -/obj/item/storage/box/ingredients, -/obj/item/clothing/head/chefhat, -/obj/item/reagent_containers/glass/beaker, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"alY" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/t_scanner, -/turf/open/floor/plating, -/area/construction/secondary) -"alZ" = ( -/turf/closed/wall/r_wall, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"ama" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/warden) -"amb" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amc" = ( -/turf/closed/wall, -/area/storage/tools) -"amd" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ame" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/warden) -"amf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"amg" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"amh" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/machinery/recharger, -/obj/item/pen/red{ - pixel_y = 4 - }, -/obj/item/pen/blue{ - pixel_x = -4; - pixel_y = -4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ami" = ( -/obj/structure/sign/poster/contraband/grey_tide{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amj" = ( -/turf/closed/wall/rust, -/area/maintenance/port/fore) -"amk" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/maintenance/port/fore) -"aml" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"amm" = ( -/obj/structure/closet/crate/secure/weapon{ - desc = "A secure clothing crate."; - name = "formal uniform crate"; - req_access_txt = "3" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"amn" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/plating, -/area/construction/secondary) -"amo" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"amp" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - name = "Fore Maintenance"; - req_one_access_txt = "12;46" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"amq" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"amr" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - name = "Starboard Bow Maintenance"; - req_one_access_txt = "12;25;26;28;35;46" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ams" = ( -/obj/machinery/camera{ - c_tag = "Fitness Toilets"; - pixel_x = 22 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/fitness) -"amt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"amu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"amv" = ( -/obj/structure/punching_bag, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"amw" = ( -/obj/structure/sign/poster/contraband/eat{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"amx" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"amy" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"amz" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"amA" = ( -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"amB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/warden) -"amC" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"amD" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"amE" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/cable, -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/crew_quarters/bar"; - dir = 8; - name = "Bar APC"; - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"amF" = ( -/obj/effect/landmark/start/cook, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = -30 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"amG" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/chapel/main) -"amH" = ( -/obj/item/crowbar/large{ - pixel_y = 3 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/construction/secondary) -"amI" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start/warden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"amJ" = ( -/obj/structure/lattice, -/obj/structure/sign/departments/botany{ - pixel_x = -32 - }, -/turf/open/space/basic, -/area/space/nearstation) -"amK" = ( -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"amL" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"amM" = ( -/obj/machinery/light, -/obj/machinery/disposal/bin{ - name = "Kitchen Mailbox" - }, -/obj/effect/turf_decal/delivery/white, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"amN" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/storage/tools) -"amO" = ( -/obj/item/bedsheet/mime, -/obj/structure/bed, -/obj/effect/landmark/start/mime, -/obj/machinery/camera{ - c_tag = "Mime's Office"; - pixel_x = 22 - }, -/turf/open/floor/plasteel/checker, -/area/crew_quarters/theatre/mime) -"amP" = ( -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/hallway/secondary/entry) -"amQ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastleft{ - name = "Reception Window" - }, -/obj/machinery/door/window/westleft{ - name = "Warden's Desk"; - req_one_access_txt = "2" - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"amR" = ( -/obj/machinery/light/small, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/construction/secondary) -"amS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"amT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plating, -/area/construction/secondary) -"amU" = ( -/obj/structure/beebox, -/obj/item/queen_bee/bought, -/turf/open/floor/grass, -/area/hydroponics) -"amV" = ( -/turf/open/floor/grass, -/area/hydroponics) -"amW" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/pill/patch/silver_sulf{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/reagent_containers/pill/patch/silver_sulf{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_containers/pill/patch/styptic{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/reagent_containers/pill/patch/styptic{ - pixel_x = -4 - }, -/obj/item/book/manual/hydroponics_pod_people{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/paper/guides/jobs/hydroponics{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/open/floor/grass, -/area/hydroponics) -"amX" = ( -/obj/machinery/suit_storage_unit/security, -/turf/open/floor/plasteel/dark, -/area/security/processing) -"amY" = ( -/turf/closed/wall, -/area/chapel/main) -"amZ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ana" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"anb" = ( -/obj/structure/table, -/obj/item/lipstick/black, -/obj/item/lipstick/random{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/theatre/mime) -"anc" = ( -/obj/item/cigbutt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/construction/secondary) -"and" = ( -/turf/closed/wall/r_wall, -/area/chapel/main) -"ane" = ( -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"anf" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/construction/secondary"; - dir = 1; - name = "Secondary Construction Area APC"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/construction/secondary) -"ang" = ( -/turf/closed/wall/r_wall, -/area/engine/storage_shared{ - name = "Electrical Substation" - }) -"anh" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/clothing/glasses/regular, -/obj/machinery/door/window/northright{ - name = "Medical Booth Desk"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"ani" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/sign/poster/official/duelshotgun{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"anj" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"ank" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/easel, -/obj/item/canvas/nineteenXnineteen, -/obj/machinery/camera{ - c_tag = "Crew Lounge"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"anl" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"anm" = ( -/obj/machinery/conveyor/auto{ - dir = 8; - id = "disposal" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ann" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/goonplaque{ - desc = "It reads 'In honor of spacemen past, whose work allowed this station to find its new home. The fact that you stand on a station originally built light years away is a definitive representation of the ingenuity of the human spirit.' Beneath this is the image of a spaceman rocketing upwards by means of what appears to be a match and flatulence." - }, -/area/hallway/secondary/entry) -"ano" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/fore) -"anp" = ( -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"anq" = ( -/turf/closed/wall, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"anr" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"ans" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/destTagger, -/obj/machinery/button/door{ - id = "secblock"; - name = "Router Access Control"; - pixel_x = 8; - pixel_y = 24; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/router/sec) -"ant" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/kitchen/backroom) -"anu" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"anv" = ( -/obj/item/stack/sheet/plasteel{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/storage/box/beakers, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plating, -/area/construction) -"anw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"anx" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plating, -/area/tcommsat/computer) -"any" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/pill/patch/styptic, -/obj/item/reagent_containers/pill/patch/styptic, -/obj/item/reagent_containers/pill/patch/styptic, -/obj/item/reagent_containers/pill/patch/styptic, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"anz" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"anA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Fitness Room Maintenance"; - req_one_access_txt = "12;46" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/crew_quarters/fitness) -"anB" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/sign/barsign{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"anC" = ( -/obj/machinery/computer/cargo/request, -/obj/effect/turf_decal/delivery, -/obj/machinery/requests_console{ - department = "Security Router"; - name = "Security Router RC"; - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/router/sec) -"anD" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/secondary/entry) -"anE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"anF" = ( -/obj/machinery/smartfridge, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"anG" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"anH" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/security{ - name = "Security Checkpoint"; - req_access_txt = "1" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/security/checkpoint) -"anI" = ( -/obj/machinery/computer/arcade/orion_trail, -/turf/open/floor/carpet/blue, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"anJ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/item/paper_bin, -/obj/item/stamp/denied{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/item/stamp{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/item/pen, -/obj/machinery/power/apc{ - areastring = "/area/security/checkpoint"; - dir = 4; - name = "Security Checkpoint APC"; - pixel_x = 24 - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - name = "Security RC"; - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"anK" = ( -/turf/closed/wall/r_wall, -/area/security/detectives_office) -"anL" = ( -/obj/machinery/computer/arcade/minesweeper, -/turf/open/floor/carpet/blue, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"anM" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"anN" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/item/analyzer, -/obj/item/wrench{ - pixel_y = 4 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"anO" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/storage/belt/utility, -/obj/item/extinguisher, -/turf/open/floor/plasteel, -/area/storage/tools) -"anP" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/carpet/blue, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"anQ" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"anR" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"anS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/power/apc{ - areastring = "/area/storage/tools"; - name = "Auxiliary Tool Storage APC"; - pixel_y = -26 - }, -/obj/machinery/camera{ - c_tag = "Auxiliary Tool Storage"; - dir = 4; - pixel_y = -22 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"anT" = ( -/turf/open/floor/carpet/blue, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"anU" = ( -/turf/closed/wall/r_wall, -/area/security/brig) -"anV" = ( -/turf/open/floor/plating, -/area/maintenance/solars/port) -"anW" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "sec_off" - }, -/turf/open/floor/plating, -/area/router/sec) -"anX" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"anY" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"anZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aoa" = ( -/obj/item/clockwork/component/geis_capacitor/fallen_armor, -/obj/structure/table/bronze, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"aob" = ( -/obj/structure/closet/emcloset, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aoc" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/requests_console{ - department = "Recreation"; - name = "Recreation RC"; - pixel_y = -32 - }, -/obj/item/storage/box/drinkingglasses, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -4; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"aod" = ( -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/warden) -"aoe" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms/purple) -"aof" = ( -/obj/structure/sign/poster/official/foam_force_ad{ - pixel_y = 32 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"aog" = ( -/turf/open/floor/grass, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"aoh" = ( -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"aoi" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms/purple) -"aoj" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"aok" = ( -/obj/structure/chair/wood/normal{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "Dorm1"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - pixel_x = -7; - pixel_y = -24; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms/purple) -"aol" = ( -/obj/machinery/button/door{ - id = "Dorm3"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - pixel_x = 7; - pixel_y = -24; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/carpet/blue, -/area/crew_quarters/dorms/blue) -"aom" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/dorms/blue) -"aon" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet/blue, -/area/crew_quarters/dorms/blue) -"aoo" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/ears/earmuffs, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/construction/secondary) -"aop" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/construction/secondary) -"aoq" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/warden) -"aor" = ( -/obj/machinery/shower{ - dir = 1 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/fitness) -"aos" = ( -/obj/structure/window/reinforced, -/obj/structure/closet/athletic_mixed, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"aot" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"aou" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"aov" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/turf/open/floor/grass, -/area/hydroponics) -"aow" = ( -/mob/living/simple_animal/banana_spider{ - name = "Henry" - }, -/turf/open/floor/grass, -/area/hydroponics) -"aox" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/secondary/entry) -"aoy" = ( -/obj/machinery/computer/secure_data, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Security Checkpoint"; - pixel_x = 22 - }, -/obj/machinery/newscaster/security_unit{ - pixel_y = 32 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"aoz" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 4; - name = "4maintenance loot spawner" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/construction/secondary) -"aoA" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/item/flashlight/lamp, -/obj/machinery/door/window/westright{ - name = "Security Checkpoint"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"aoB" = ( -/obj/structure/bed, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/camera{ - c_tag = "Security - Prison Beds"; - dir = 8; - pixel_y = -22 - }, -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/security/prison"; - dir = 4; - name = "Prison APC"; - pixel_x = 26 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aoC" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"aoD" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"aoE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/main) -"aoF" = ( -/turf/closed/wall/r_wall, -/area/security/main) -"aoG" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"aoH" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Port Bow Solars External Access"; - req_access_txt = "10;13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aoI" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/grass, -/area/hydroponics) -"aoJ" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"aoK" = ( -/turf/closed/wall/r_wall, -/area/router/service) -"aoL" = ( -/obj/structure/chair/stool, -/turf/open/floor/carpet/blue, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"aoM" = ( -/obj/structure/closet/crate, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/capacitor, -/turf/open/floor/plating, -/area/construction) -"aoN" = ( -/obj/structure/closet/crate/internals, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_x = -26 - }, -/obj/item/clothing/head/hardhat/orange, -/obj/item/clothing/head/hardhat/orange, -/turf/open/floor/plasteel, -/area/storage/tools) -"aoO" = ( -/turf/open/floor/plasteel, -/area/storage/tools) -"aoP" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aoQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"aoR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Brig Control"; - req_access_txt = "3" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/warden) -"aoS" = ( -/obj/structure/plasticflaps, -/obj/structure/fans/tiny, -/obj/machinery/conveyor{ - id = "serv_off" - }, -/obj/machinery/door/poddoor{ - id = "servblock"; - name = "Service Router" - }, -/turf/open/floor/plating, -/area/router/service) -"aoT" = ( -/obj/structure/plasticflaps, -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor{ - id = "servblock"; - name = "Service Router" - }, -/turf/open/floor/plating, -/area/router/service) -"aoU" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet/blue, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"aoV" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aoW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external/glass{ - name = "Port Bow Solars External Access"; - req_access_txt = "10;13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aoX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aoY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aoZ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"apa" = ( -/obj/structure/chair/sofa/right, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"apb" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"apc" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/brig) -"apd" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/engine/storage_shared{ - name = "Electrical Substation" - }) -"ape" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"apg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/router/sec) -"aph" = ( -/turf/open/floor/plasteel/dark, -/area/security/brig) -"api" = ( -/obj/machinery/door/window/southright{ - name = "Weightroom" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"apj" = ( -/obj/structure/window/reinforced, -/obj/structure/punching_bag, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"apk" = ( -/obj/structure/closet/lasertag/blue, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"apl" = ( -/obj/structure/chair/sofa/right, -/obj/item/clothing/head/beret/black, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"apm" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering{ - name = "Engine Room" - }) -"apn" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/router/sec) -"apo" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/construction) -"app" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/router/sec) -"apq" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"apr" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/button/massdriver{ - id = "sec_out"; - pixel_x = 24; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/router/sec) -"aps" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/airlock/security{ - name = "Security EVA Prep Room"; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"apt" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/construction) -"apu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"apv" = ( -/turf/closed/wall, -/area/hallway/secondary/entry) -"apw" = ( -/obj/structure/chair/sofa/left, -/obj/effect/landmark/start/assistant, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"apx" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/fitness) -"apy" = ( -/obj/machinery/vr_sleeper{ - dir = 4 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"apz" = ( -/obj/machinery/vr_sleeper{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"apA" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall, -/area/crew_quarters/dorms/purple) -"apB" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/grass, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"apC" = ( -/turf/closed/wall/r_wall, -/area/hydroponics) -"apD" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm1"; - name = "Room 1" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms/purple) -"apE" = ( -/obj/machinery/biogenerator, -/turf/open/floor/grass, -/area/hydroponics) -"apF" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"apG" = ( -/mob/living/simple_animal/chicken{ - name = "Featherbottom"; - real_name = "Featherbottom" - }, -/turf/open/floor/plating/asteroid, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"apH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/main) -"apI" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"apJ" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/camera{ - c_tag = "Hydroponics - Fore"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"apK" = ( -/obj/structure/reagent_dispensers/watertank/high, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = -30 - }, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/grass, -/area/hydroponics) -"apL" = ( -/obj/structure/chair/sofa/left, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"apM" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/fitness) -"apN" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm3"; - name = "Room 3" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet/blue, -/area/crew_quarters/dorms/blue) -"apO" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall, -/area/crew_quarters/dorms/blue) -"apP" = ( -/obj/structure/table, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)" - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"apQ" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Solitary Confinement"; - req_one_access_txt = "2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"apR" = ( -/obj/structure/table/wood, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"apS" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"apT" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/construction) -"apU" = ( -/obj/structure/table/wood, -/obj/item/trash/plate, -/obj/item/gun/ballistic/revolver/russian, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"apV" = ( -/turf/closed/wall/rust, -/area/chapel/main) -"apW" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/crew_quarters/kitchen) -"apX" = ( -/obj/structure/fermenting_barrel, -/turf/open/floor/grass, -/area/hydroponics) -"apY" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"apZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Fitness Toilets" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/fitness) -"aqa" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqb" = ( -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - name = "Secondary Construction Area"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/construction/secondary) -"aqc" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall/r_wall, -/area/medical{ - name = "Medical Booth" - }) -"aqd" = ( -/obj/structure/chair/sofa/right, -/obj/machinery/camera{ - c_tag = "Chapel - Fore" - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"aqe" = ( -/obj/machinery/conveyor{ - id = "serv_off" - }, -/turf/open/floor/plating, -/area/router/service) -"aqf" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqg" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Fitness Room"; - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"aqh" = ( -/obj/structure/chair/sofa/left, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"aqi" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/pen, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"aqj" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_x = 26 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aqk" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 10 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aql" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/bar) -"aqm" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aqn" = ( -/turf/closed/wall/r_wall, -/area/medical{ - name = "Medical Booth" - }) -"aqo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"aqp" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/kitchen/backroom) -"aqq" = ( -/obj/structure/chair/stool, -/turf/open/floor/plasteel, -/area/storage/tools) -"aqr" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/storage/tools) -"aqs" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/maintenance/fore) -"aqt" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/modular_computer/laptop/preset/civilian, -/obj/structure/sign/poster/contraband/hacking_guide{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"aqu" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/maintenance/fore) -"aqv" = ( -/obj/structure/sign/poster/official/no_erp{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/fitness) -"aqw" = ( -/turf/closed/wall/r_wall/rust, -/area/maintenance/solars/port) -"aqx" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/kitchen/backroom) -"aqy" = ( -/obj/machinery/mass_driver{ - dir = 1; - id = "serv_out"; - name = "Router Driver" - }, -/turf/open/floor/plating, -/area/router/service) -"aqz" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqA" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable, -/turf/open/space/basic, -/area/solar/starboard/aft) -"aqB" = ( -/turf/closed/wall, -/area/hydroponics) -"aqC" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/hydroponics) -"aqD" = ( -/obj/machinery/vending/sustenance, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aqE" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/router/sec) -"aqF" = ( -/turf/open/floor/plasteel, -/area/router/sec) -"aqG" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"aqH" = ( -/obj/machinery/power/apc{ - name = "Security Router APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/router/sec) -"aqI" = ( -/obj/structure/flora/ausbushes/genericbush, -/turf/open/floor/grass, -/area/hydroponics) -"aqJ" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/router/sec) -"aqK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"aqL" = ( -/turf/closed/wall, -/area/security/checkpoint) -"aqM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aqN" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock{ - name = "Service Hallway"; - req_one_access_txt = "25;26;28;35" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"aqO" = ( -/obj/machinery/door/airlock/engineering{ - name = "Engineering EVA"; - req_access_txt = "11" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"aqP" = ( -/obj/structure/chair/stool, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"aqQ" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/kitchen/backroom) -"aqR" = ( -/obj/item/grown/bananapeel, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/theatre/clown) -"aqS" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"aqT" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"aqU" = ( -/turf/closed/wall/r_wall, -/area/engine/storage{ - name = "Canister Storage" - }) -"aqV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Purple Dorms Maintenance"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/dorms/purple) -"aqW" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/item/book/manual/chef_recipes, -/obj/item/storage/box/donkpockets, -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"aqX" = ( -/obj/structure/sign/warning/fire{ - desc = "A sign that states the labeled room's number."; - icon_state = "roomnum"; - name = "Room Number 1"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms/purple) -"aqY" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aqZ" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"ara" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"arb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/barbershop"; - dir = 4; - name = "Barbershop APC"; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"arc" = ( -/obj/structure/closet/secure_closet/freezer/cream_pie, -/obj/item/toy/figure/clown, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/crew_quarters/theatre/clown) -"ard" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"are" = ( -/obj/machinery/chem_heater, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"arf" = ( -/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms/purple) -"arg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"arh" = ( -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms/purple) -"ari" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"arj" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/dorms/purple) -"ark" = ( -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"arl" = ( -/obj/machinery/vending/kink, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Locker Room"; - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"arm" = ( -/obj/structure/chair/sofa/right, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"arn" = ( -/obj/machinery/vending/tool, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"aro" = ( -/obj/structure/closet/firecloset, -/obj/machinery/camera{ - c_tag = "Starboard Bow Maintenance - Starboard"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arp" = ( -/obj/machinery/conveyor/auto{ - dir = 8; - id = "disposal" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"arq" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"arr" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/obj/item/stock_parts/cell/high/plus, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"ars" = ( -/obj/structure/chair/stool, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/effect/landmark/start/bartender, -/obj/item/clothing/under/costume/maid, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"art" = ( -/obj/structure/punching_bag, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"aru" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/dorms/blue) -"arv" = ( -/obj/structure/table, -/obj/item/modular_computer/laptop/preset/civilian{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"arw" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/public/glass{ - name = "Crew Quarters" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"arx" = ( -/obj/machinery/button/door{ - id = "kitchenlock"; - name = "Kitchen Lockup"; - pixel_x = -24 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"ary" = ( -/obj/machinery/food_cart, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"arz" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/dorms/blue) -"arA" = ( -/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden, -/turf/open/floor/carpet/blue, -/area/crew_quarters/dorms/blue) -"arB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"arC" = ( -/obj/structure/sign/warning/fire{ - desc = "A sign that states the labeled room's number."; - dir = 4; - icon_state = "roomnum"; - name = "Room Number 3"; - pixel_y = 28 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet/blue, -/area/crew_quarters/dorms/blue) -"arD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 8; - icon_state = "intact" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Blue Dorms Maintenance"; - req_one_access_txt = "12;46" - }, -/turf/open/floor/plating, -/area/crew_quarters/dorms/blue) -"arE" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/central) -"arF" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - name = "hot loop to space" - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"arG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"arH" = ( -/obj/machinery/disposal/bin{ - name = "Detective's Mailbox" - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/delivery/white, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"arI" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/crew_quarters/fitness) -"arJ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"arK" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/item/destTagger, -/obj/machinery/button/massdriver{ - id = "serv_out"; - pixel_x = 8; - pixel_y = -4 - }, -/obj/machinery/requests_console{ - department = "Service Router"; - name = "Service Router RC"; - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/router/service) -"arL" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "serv_off" - }, -/turf/open/floor/plating, -/area/router/service) -"arM" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/router/service) -"arN" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - name = "gas to sauna" - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"arO" = ( -/obj/machinery/door/firedoor, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"arP" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"arQ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"arR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/falsewall/reinforced{ - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/router/sec) -"arS" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/crew_quarters/dorms/purple) -"arT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"arU" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/structure/sign/warning/fire{ - desc = "A sign that states the labeled room's number."; - dir = 1; - icon_state = "roomnum"; - name = "Room Number 2"; - pixel_y = -28 - }, -/obj/machinery/camera{ - c_tag = "Dormitories - Purple"; - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms/purple) -"arV" = ( -/obj/machinery/vr_sleeper{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/structure/sign/poster/official/soft_cap_pop_art{ - pixel_x = -32 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"arW" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"arX" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"arY" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"arZ" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms/purple) -"asa" = ( -/obj/machinery/computer/arcade, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"asb" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms/purple) -"asc" = ( -/obj/machinery/disposal/bin, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"asd" = ( -/turf/closed/wall/rust, -/area/maintenance/starboard/fore) -"ase" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Purple Dorms" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms/purple) -"asf" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Blue Dorms" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/dorms/blue) -"asg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"ash" = ( -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/dorms/blue) -"asi" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"asj" = ( -/obj/effect/turf_decal/tile/red, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ask" = ( -/obj/effect/turf_decal/bot, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Security - Prison Fore"; - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/mob/living/simple_animal/mouse/brown/Tom, -/turf/open/floor/plasteel, -/area/security/prison) -"asl" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/camera{ - c_tag = "Port Bow Solar Maintenance"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"asm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/hallway/secondary/service"; - dir = 8; - name = "Service Hall APC"; - pixel_x = -24 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"asn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet/blue, -/area/crew_quarters/dorms/blue) -"aso" = ( -/obj/structure/sign/warning/fire{ - desc = "A sign that states the labeled room's number."; - dir = 8; - icon_state = "roomnum"; - name = "Room Number 4"; - pixel_y = -28 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Dormitories - Blue"; - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, -/turf/open/floor/carpet/blue, -/area/crew_quarters/dorms/blue) -"asp" = ( -/obj/structure/chair/comfy/brown, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"asq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/crew_quarters/dorms/blue) -"asr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/fore) -"ass" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/light/small, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"ast" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/turf/open/floor/plasteel, -/area/engine/storage{ - name = "Canister Storage" - }) -"asu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/rust, -/area/maintenance/disposal) -"asv" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"asw" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"asx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"asy" = ( -/obj/effect/landmark/start/assistant, -/obj/machinery/holopad, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/hallway/secondary/entry) -"asz" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Security - Prison Bathroom"; - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"asA" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/turf/open/floor/plating, -/area/router/service) -"asB" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"asC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"asD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"asE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/button/door{ - id = "servblock"; - name = "Router Access Control"; - pixel_x = 8; - pixel_y = 24; - req_one_access_txt = "12;25;26;28;35;46" - }, -/turf/open/floor/plasteel, -/area/router/service) -"asF" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/airlock/security{ - name = "Labor Camp Arrivals" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"asG" = ( -/obj/structure/sign/warning/nosmoking/circle, -/turf/closed/wall/r_wall, -/area/engine/storage{ - name = "Canister Storage" - }) -"asH" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"asI" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/canister/toxins, -/turf/open/floor/plasteel, -/area/engine/storage{ - name = "Canister Storage" - }) -"asJ" = ( -/turf/closed/wall, -/area/crew_quarters/toilet) -"asK" = ( -/obj/machinery/vr_sleeper{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"asL" = ( -/turf/closed/wall, -/area/security/brig) -"asM" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/storage{ - name = "Canister Storage" - }) -"asN" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"asO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"asP" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"asQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/router/service) -"asR" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"asS" = ( -/turf/closed/wall/r_wall, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"asT" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/mob/living/simple_animal/mouse/gray{ - desc = "A strangely observant rodent."; - name = "Remy" - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"asU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Router"; - req_access_txt = "11" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"asV" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"asW" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel, -/area/security/main) -"asX" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/item/tape, -/obj/item/radio/off, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"asY" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/item/clipboard, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"asZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/router/service) -"ata" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/main) -"atb" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"atc" = ( -/turf/closed/wall, -/area/security/main) -"atd" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/central"; - dir = 1; - name = "Service Router APC"; - pixel_y = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/router/service) -"ate" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/dark, -/area/router/service) -"atf" = ( -/turf/closed/wall/r_wall/rust, -/area/maintenance/starboard/central) -"atg" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/router/service) -"ath" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark, -/area/router/service) -"ati" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external, -/turf/open/floor/plasteel, -/area/router/service) -"atj" = ( -/obj/structure/window/reinforced, -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"atk" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"atl" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/router/service) -"atm" = ( -/obj/structure/table, -/obj/item/kitchen/rollingpin, -/obj/item/reagent_containers/food/condiment/enzyme, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"atn" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external, -/turf/open/floor/plasteel, -/area/router/service) -"ato" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"atp" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm2"; - name = "Room 2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms/purple) -"atq" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/processing) -"atr" = ( -/obj/machinery/door/airlock{ - id_tag = "Dorm4"; - name = "Room 4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet/blue, -/area/crew_quarters/dorms/blue) -"ats" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Clown's Office"; - req_access_txt = "46" - }, -/turf/open/floor/plating, -/area/crew_quarters/theatre/clown) -"att" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"atu" = ( -/obj/machinery/computer/cargo/request{ - dir = 4 - }, -/turf/open/floor/plating, -/area/router/service) -"atv" = ( -/obj/machinery/atmospherics/components/binary/valve/digital/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"atw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/router/service) -"atx" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/router/service) -"aty" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/router/service) -"atz" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"atA" = ( -/obj/machinery/vending/cigarette, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"atB" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/item/bikehorn/rubberducky, -/obj/structure/sign/poster/official/no_erp{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet) -"atC" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"atD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/router/service) -"atE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/router/service) -"atF" = ( -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"atG" = ( -/turf/open/floor/plasteel/dark, -/area/router/service) -"atH" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/machinery/power/apc{ - areastring = "/area/security/processing"; - name = "Labor Shuttle Dock APC"; - pixel_y = -26 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/dark, -/area/security/processing) -"atI" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/warden) -"atJ" = ( -/turf/closed/wall/rust, -/area/crew_quarters/theatre/clown) -"atK" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"atL" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"atM" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"atN" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms/purple) -"atO" = ( -/obj/structure/table, -/obj/item/storage/bag/tray, -/obj/item/clothing/gloves/color/white, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/item/paper/guides/cogstation/cooks, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"atP" = ( -/obj/structure/table/wood, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"atQ" = ( -/obj/structure/closet/lasertag/red, -/obj/structure/sign/poster/official/space_cops{ - pixel_x = -32 - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"atR" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/machinery/vending/wardrobe/bar_wardrobe, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"atS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Bar Backroom"; - req_access_txt = "25" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"atT" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms/purple) -"atU" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"atV" = ( -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"atW" = ( -/obj/machinery/disposal/bin{ - name = "Parolee Exit" - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/brig) -"atX" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/item/stock_parts/cell/high/plus, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/storage/tools) -"atY" = ( -/obj/machinery/button/door{ - id = "Dorm2"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - pixel_x = -7; - pixel_y = 24; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms/purple) -"atZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/closed/wall, -/area/hallway/secondary/entry) -"aua" = ( -/obj/structure/chair/wood/normal, -/obj/machinery/button/door{ - id = "Dorm4"; - name = "Dormitory Door Lock"; - normaldoorcontrol = 1; - pixel_x = 7; - pixel_y = 24; - specialfunctions = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/dorms/blue) -"aub" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"auc" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aud" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/dorms/blue) -"aue" = ( -/obj/structure/closet/crate/hydroponics, -/obj/item/seeds/random, -/turf/open/floor/plating, -/area/router/service) -"auf" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/router/service) -"aug" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/storage/bag/plants, -/turf/open/floor/plasteel, -/area/hydroponics) -"auh" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/item/storage/box/dice, -/obj/item/toy/cards/deck, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aui" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Freezer AC Pump" - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/kitchen/backroom) -"auj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/router/service) -"auk" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/router/service) -"aul" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/mob/living/simple_animal/mouse/brown{ - name = "Chewy" - }, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"aum" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/router/service) -"aun" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/vending/hydronutrients, -/turf/open/floor/plasteel, -/area/hydroponics) -"auo" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/noticeboard{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/machinery/reagentgrinder{ - pixel_y = 6 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aup" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = 26 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bucket{ - pixel_y = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"auq" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/router/service) -"aur" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/router/service) -"aus" = ( -/turf/open/floor/engine, -/area/engine/gravity_generator) -"aut" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"auu" = ( -/obj/effect/landmark/start/botanist, -/turf/open/floor/plasteel/dark, -/area/router/service) -"auv" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms/purple) -"auw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aux" = ( -/obj/machinery/light/small, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms/purple) -"auy" = ( -/turf/open/floor/plasteel, -/area/hydroponics) -"auz" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/chem_master, -/turf/open/floor/plasteel, -/area/hydroponics) -"auA" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/item/beacon, -/turf/open/floor/plasteel, -/area/hydroponics) -"auB" = ( -/obj/structure/dresser, -/turf/open/floor/carpet/purple, -/area/crew_quarters/dorms/purple) -"auC" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"auD" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"auE" = ( -/obj/structure/bed, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"auF" = ( -/obj/structure/table/wood, -/turf/open/floor/carpet/blue, -/area/crew_quarters/dorms/blue) -"auG" = ( -/obj/machinery/light/small, -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet/blue, -/area/crew_quarters/dorms/blue) -"auH" = ( -/obj/structure/girder/displaced, -/obj/item/reagent_containers/rag, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"auI" = ( -/obj/structure/closet/secure_closet/brig, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"auJ" = ( -/obj/structure/bed, -/obj/item/bedsheet/blue, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/dorms/blue) -"auK" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/security/brig) -"auL" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"auM" = ( -/obj/machinery/door/firedoor, -/obj/structure/sign/poster/official/bless_this_spess{ - pixel_x = -32 - }, -/obj/machinery/door/airlock/public/glass, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"auN" = ( -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"auO" = ( -/obj/structure/closet/crate/freezer, -/turf/open/floor/plating, -/area/router/service) -"auP" = ( -/obj/structure/chair/sofa/right, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/landmark/start/assistant/override, -/turf/open/floor/plasteel, -/area/security/main) -"auQ" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/public/glass, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"auR" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/power/apc{ - areastring = "/area/engine/secure_construction"; - dir = 1; - name = "Engineering Construction Area APC"; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"auS" = ( -/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"auT" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"auU" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/stairs/left, -/area/router/service) -"auV" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"auW" = ( -/obj/structure/chair/sofa/left, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/sign/poster/official/the_owl{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/security/main) -"auX" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel/stairs/right, -/area/router/service) -"auY" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"auZ" = ( -/obj/structure/disposalpipe/junction/flip, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/fore) -"ava" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/router/service) -"avb" = ( -/turf/closed/wall, -/area/hallway/secondary/civilian) -"avc" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"avd" = ( -/obj/structure/sign/warning{ - name = "\improper COLD TEMPERATURES"; - pixel_x = 32 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"ave" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"avf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Starboard Bow Maintenance"; - req_one_access_txt = "12;25;26;28;35;46" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/hallway/secondary/civilian) -"avg" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/turnstile{ - name = "Genpop Entrance Turnstile"; - icon_state = "turnstile_map"; - dir = 8; - req_access_txt = "69" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"avh" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/storage/tools) -"avi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance/abandoned{ - name = "Port Bow Maintainance"; - req_one_access_txt = "13" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"avj" = ( -/obj/machinery/photocopier, -/turf/open/floor/carpet/red, -/area/security/brig) -"avk" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/item/plant_analyzer, -/obj/structure/table/glass, -/obj/machinery/plantgenes{ - pixel_y = 6 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"avl" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"avm" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/civilian) -"avn" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/stripes/white/full, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/sign/poster/official/spiderlings{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"avo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"avp" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/glass{ - name = "East Primary Hallway"; - req_one_access_txt = "10;12;25;26;28;35;46" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/router/service) -"avq" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/glass{ - name = "East Primary Hallway"; - req_one_access_txt = "10;12;25;26;28;35;46" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/router/service) -"avr" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/space/basic, -/area/solar/starboard/aft) -"avs" = ( -/turf/closed/wall, -/area/router/service) -"avt" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"avu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"avv" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/window/reinforced/spawner/north, -/turf/open/floor/plating, -/area/space/nearstation) -"avw" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/structure/sign/poster/official/wtf_is_co2{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/storage{ - name = "Canister Storage" - }) -"avx" = ( -/obj/structure/table, -/obj/item/hand_labeler, -/obj/item/crowbar/large, -/obj/item/crowbar{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/router/service) -"avy" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/window/reinforced/spawner/north, -/turf/open/floor/plating, -/area/space/nearstation) -"avz" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/router/service) -"avA" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"avB" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/router/service) -"avC" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"avD" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/fragile, -/obj/item/clothing/head/helmet/space/fragile, -/obj/item/storage/belt/utility, -/obj/item/tank/internals/air, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/router/service) -"avE" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - name = "generator to hot loop" - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"avF" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"avG" = ( -/turf/closed/wall, -/area/security/prison) -"avH" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, -/obj/machinery/meter, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"avI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"avJ" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel, -/area/security/main) -"avK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"avL" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"avM" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel, -/area/security/main) -"avN" = ( -/turf/closed/wall, -/area/crew_quarters/barbershop) -"avO" = ( -/obj/structure/table, -/obj/structure/bedsheetbin/color, -/obj/item/clothing/gloves/color/white, -/obj/machinery/camera{ - c_tag = "Laundry Room" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/barbershop) -"avP" = ( -/obj/structure/reagent_dispensers/keg, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"avQ" = ( -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"avR" = ( -/obj/machinery/washing_machine, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/barbershop) -"avS" = ( -/obj/machinery/washing_machine, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/barbershop) -"avT" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"avU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 6 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"avV" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"avW" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"avX" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/barbershop) -"avY" = ( -/obj/machinery/newscaster/security_unit{ - pixel_y = 32 - }, -/obj/machinery/turretid{ - name = "AI Chamber turret control"; - pixel_x = 5; - pixel_y = -24 - }, -/obj/machinery/door/window/westleft{ - name = "AI Core Access"; - req_access_txt = "65" - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"avZ" = ( -/obj/effect/landmark/start/cook, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"awa" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/visible, -/obj/machinery/meter, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"awb" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"awc" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/maintenance/fore) -"awd" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"awe" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"awf" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"awg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Civilian Wing Hallway - Fore" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"awh" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/sign/poster/official/fruit_bowl{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"awi" = ( -/obj/effect/turf_decal/bot, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"awj" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"awk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"awl" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"awm" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/closed/wall/r_wall, -/area/maintenance/solars/port) -"awn" = ( -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/ai_slipper{ - uses = 10 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"awo" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"awp" = ( -/turf/closed/wall, -/area/hydroponics/lobby) -"awq" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/plating, -/area/space/nearstation) -"awr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aws" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/closed/wall/r_wall, -/area/engine/storage{ - name = "Canister Storage" - }) -"awt" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/item/folder/red, -/obj/machinery/door/window/westleft{ - name = "Security Checkpoint"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"awu" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"awv" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction, -/obj/structure/table, -/obj/item/clothing/gloves/color/white, -/obj/item/reagent_containers/spray/cleaner, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/kitchen/backroom) -"aww" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"awx" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hydroponics/lobby) -"awy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Laundry Room Maintenance"; - req_one_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/crew_quarters/barbershop) -"awz" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/barbershop) -"awA" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/plasteel, -/area/engine/storage{ - name = "Canister Storage" - }) -"awB" = ( -/obj/machinery/microwave, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/table/wood/fancy, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/crew_quarters/bar) -"awC" = ( -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/barbershop) -"awD" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"awE" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/storage/tools) -"awF" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/barbershop) -"awG" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/door/poddoor/preopen{ - id = "briglockdown"; - name = "Brig Lockdown" - }, -/obj/machinery/turnstile{ - name = "Genpop Entrance Turnstile"; - icon_state = "turnstile_map"; - dir = 8; - req_access_txt = "69" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"awI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"awJ" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/flasher/portable, -/turf/open/floor/plasteel, -/area/security/brig) -"awK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"awL" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"awM" = ( -/obj/structure/rack, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/head/hardhat/red{ - pixel_y = 6 - }, -/obj/item/clothing/mask/gas, -/obj/item/tank/internals/air, -/obj/item/crowbar/large, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"awN" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/fore) -"awO" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/port/central"; - dir = 1; - name = "Central Port Maintenance APC"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/maintenance/port/central) -"awP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"awQ" = ( -/obj/structure/window/plasma/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/table, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/door/poddoor/preopen{ - id = "briglockdown"; - name = "Brig Lockdown" - }, -/turf/open/floor/plasteel, -/area/security/main) -"awR" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awS" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"awT" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 7 - }, -/turf/open/floor/plasteel, -/area/security/main) -"awU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"awV" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/vending/assist, -/turf/open/floor/plasteel, -/area/storage/tools) -"awW" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - name = "cold loop to space" - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"awX" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"awY" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "solitarylock"; - name = "Solitary Lockdown"; - pixel_x = -24; - req_access_txt = "2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"awZ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axa" = ( -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"axb" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"axc" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/maintenance/solars/port) -"axd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"axe" = ( -/obj/structure/closet/crate, -/obj/item/storage/belt/utility, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plating, -/area/maintenance/fore) -"axf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"axg" = ( -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/machinery/camera{ - c_tag = "Arcade"; - dir = 4 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"axh" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/random{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"axi" = ( -/obj/structure/noticeboard{ - pixel_y = 28 - }, -/obj/effect/turf_decal/bot, -/obj/structure/closet/secure_closet/genpop, -/turf/open/floor/plasteel, -/area/security/brig) -"axj" = ( -/obj/machinery/vr_sleeper{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"axk" = ( -/obj/item/storage/pill_bottle/penis_enlargement, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"axl" = ( -/obj/machinery/shower{ - dir = 8; - pixel_y = -4 - }, -/obj/item/soap/homemade, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"axm" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/closed/wall, -/area/security/prison) -"axn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"axo" = ( -/obj/structure/table, -/obj/item/tape, -/obj/item/wrench, -/obj/item/radio/off, -/turf/open/floor/plasteel, -/area/security/brig) -"axp" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"axq" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"axr" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"axs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"axt" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"axu" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/brig) -"axv" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/item/clothing/accessory/armband/deputy, -/obj/item/encryptionkey/headset_sec, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/item/clothing/head/cowboyhat/sec, -/turf/open/floor/plasteel, -/area/security/brig) -"axw" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/main) -"axx" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/camera{ - c_tag = "Fore Maintenance - Aft"; - dir = 8; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/maintenance/fore) -"axy" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/botanist, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"axz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/reagent_dispensers/peppertank{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axA" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/obj/item/clothing/accessory/armband/science, -/obj/item/encryptionkey/headset_sci, -/turf/open/floor/plasteel, -/area/security/brig) -"axB" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/obj/item/clothing/accessory/armband/medblue, -/obj/item/encryptionkey/headset_med, -/turf/open/floor/plasteel, -/area/security/brig) -"axC" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axD" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Hydroponics Storage"; - req_access_txt = "35" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"axE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/kudzu{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"axF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"axG" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"axH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"axI" = ( -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"axJ" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"axK" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axL" = ( -/obj/structure/sign/warning{ - name = "\improper CONSTRUCTION AREA"; - pixel_y = 32 - }, -/obj/item/assembly/prox_sensor, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"axM" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"axN" = ( -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/computer/security{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axO" = ( -/obj/structure/weightmachine/stacklifter, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"axP" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"axQ" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"axR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plating, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"axS" = ( -/obj/structure/closet/crate, -/obj/item/storage/box/lights/mixed, -/obj/item/clothing/mask/gas, -/obj/item/cane, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"axT" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/storage/crayons{ - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"axV" = ( -/turf/open/floor/plating/asteroid, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"axW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"axX" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"axY" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"axZ" = ( -/obj/machinery/requests_console{ - department = "AI"; - departmentType = 5; - pixel_y = 28 - }, -/obj/machinery/door/window/eastright{ - name = "AI Core Access"; - req_access_txt = "65" - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aya" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "AI Core Exterior"; - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"ayb" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"ayc" = ( -/obj/structure/kitchenspike, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/kitchen/backroom) -"ayd" = ( -/turf/closed/wall, -/area/hallway/primary/port/fore) -"aye" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/open/space/basic, -/area/space/nearstation) -"ayf" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"ayg" = ( -/obj/machinery/vending/wardrobe/hydro_wardrobe, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"ayh" = ( -/obj/machinery/door/airlock{ - name = "Bathroom" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"ayi" = ( -/obj/structure/table, -/obj/item/clipboard, -/obj/item/paper_bin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/pen, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"ayj" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/security/brig) -"ayk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/secondary/entry) -"ayl" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"aym" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/prison) -"ayn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/turf/open/floor/plating, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"ayo" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"ayp" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/barbershop) -"ayq" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/barbershop) -"ayr" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/barbershop) -"ays" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/drinks/soda_cans/space_up, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"ayt" = ( -/obj/structure/closet/crate, -/obj/item/reagent_containers/glass/beaker/waterbottle/large/empty, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/barbershop) -"ayu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 6 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/fore) -"ayv" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"ayw" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Service Hallway - Fore"; - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"ayx" = ( -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"ayy" = ( -/turf/open/floor/carpet, -/area/chapel/main) -"ayz" = ( -/obj/structure/chair/pew/right{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"ayA" = ( -/obj/structure/window/reinforced, -/obj/structure/destructible/cult/tome, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"ayB" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"ayC" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"ayD" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"ayE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hydroponics/lobby) -"ayF" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"ayG" = ( -/obj/structure/chair/comfy/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"ayH" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/mob/living/simple_animal/cockroach, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"ayI" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ayJ" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/maintenance/solars/port) -"ayK" = ( -/obj/structure/flora/tree/jungle/small, -/turf/open/floor/plating/asteroid, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"ayL" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"ayM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"ayN" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"ayO" = ( -/obj/structure/window/plasma/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/table, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "briglockdown"; - name = "Brig Lockdown" - }, -/turf/open/floor/plasteel, -/area/security/main) -"ayP" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"ayQ" = ( -/obj/machinery/vr_sleeper{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"ayR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/security/brig) -"ayS" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ayT" = ( -/obj/machinery/vending/security, -/obj/structure/noticeboard{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ayU" = ( -/obj/vehicle/ridden/secway, -/obj/effect/turf_decal/bot, -/obj/item/key/security, -/turf/open/floor/plasteel, -/area/security/brig) -"ayV" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"ayW" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"ayX" = ( -/obj/structure/closet/wardrobe/mixed, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"ayY" = ( -/obj/machinery/vending/medical, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"ayZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aza" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table, -/obj/item/clothing/gloves/botanic_leather, -/obj/item/hand_labeler, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"azb" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/barbershop) -"azc" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"azd" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/clothing/mask/gas, -/obj/machinery/camera{ - c_tag = "Central Port Maintenace - Port" - }, -/turf/open/floor/plating, -/area/maintenance/port/central) -"aze" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "AI Chamber APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"azf" = ( -/obj/machinery/newscaster/security_unit{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"azg" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/storage{ - name = "Canister Storage" - }) -"azh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"azi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation Maintenance"; - req_access_txt = "63;12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/security/brig) -"azj" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"azk" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"azl" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Security - Brig Aft"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"azm" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/carpet, -/area/crew_quarters/bar) -"azn" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"azo" = ( -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"azp" = ( -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/barbershop) -"azq" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plating, -/area/space/nearstation) -"azr" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_x = 26 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"azs" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"azt" = ( -/obj/structure/chair/pew/right{ - dir = 4 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"azu" = ( -/obj/structure/chair/pew{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"azv" = ( -/obj/machinery/door/window/westleft{ - name = "Holy Driver"; - req_one_access_txt = "22" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "Holydriver" - }, -/turf/open/floor/plating, -/area/chapel/main) -"azw" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "Holydriver" - }, -/turf/open/floor/plating, -/area/chapel/main) -"azx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"azy" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"azz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"azA" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/barbershop) -"azB" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"azC" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/barbershop) -"azD" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"azE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"azF" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/tools) -"azG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/secondary/entry) -"azH" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/sign/departments/botany{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"azI" = ( -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"azJ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"azK" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/machinery/door/window/westleft{ - name = "Boxing Ring" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"azL" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet) -"azM" = ( -/obj/structure/table, -/obj/machinery/recharger{ - pixel_y = 2 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"azN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/security/prison) -"azO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/blobstart, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"azP" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"azQ" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"azR" = ( -/obj/structure/closet/secure_closet/bar, -/obj/structure/disposalpipe/segment, -/obj/item/clothing/under/costume/maid, -/obj/item/stack/spacecash/c10, -/obj/item/clothing/under/suit/waiter, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"azS" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/closet, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/cable_coil/red{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/stack/cable_coil/red, -/obj/item/wrench, -/obj/item/screwdriver{ - pixel_y = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"azT" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"azU" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"azV" = ( -/obj/structure/kitchenspike, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/kitchen/backroom) -"azW" = ( -/obj/effect/landmark/start/botanist, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"azX" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/storage/tools) -"azY" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/power/apc{ - areastring = "/area/hydroponics/lobby"; - dir = 4; - name = "Hydroponics Lobby APC"; - pixel_x = 24 - }, -/obj/item/clothing/suit/beekeeper_suit, -/obj/item/melee/flyswatter, -/obj/item/clothing/head/beekeeper_head, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"azZ" = ( -/obj/machinery/mass_driver{ - dir = 4; - id = "chapelgun"; - name = "Holy Driver" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating, -/area/chapel/main) -"aAa" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/kitchen) -"aAb" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aAc" = ( -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aAd" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/processing) -"aAe" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aAf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/mineral_door/wood, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/barbershop) -"aAg" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction, -/obj/machinery/gibber, -/obj/machinery/camera{ - c_tag = "Kitchen Coldroom"; - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/kitchen/backroom) -"aAh" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/structure/easel, -/obj/item/canvas/nineteenXnineteen, -/obj/item/storage/crayons, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aAi" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aAj" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aAk" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aAl" = ( -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"aAm" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/machinery/door/airlock/freezer{ - name = "Kitchen Coldroom"; - req_access_txt = "28" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/kitchen/backroom) -"aAn" = ( -/obj/machinery/vending/wardrobe/sec_wardrobe, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/brig) -"aAo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/sign/poster/official/twelve_gauge{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"aAp" = ( -/obj/machinery/computer/security/telescreen/entertainment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/bar) -"aAq" = ( -/obj/structure/sink{ - dir = 8; - pixel_x = -12 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aAr" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aAs" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aAt" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/emergency, -/obj/machinery/camera{ - c_tag = "Hydroponics Storage"; - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aAu" = ( -/obj/structure/closet/crate/hydroponics, -/obj/effect/decal/cleanable/dirt, -/obj/item/circuitboard/machine/hydroponics, -/obj/item/circuitboard/machine/hydroponics, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aAv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/vending/security, -/turf/open/floor/plasteel, -/area/security/brig) -"aAw" = ( -/obj/machinery/door/poddoor{ - id = "chapelgun"; - name = "Chapel Launcher Door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/chapel/main) -"aAx" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aAy" = ( -/obj/machinery/atmospherics/components/binary/circulator{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aAz" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aAA" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/maintenance/fore) -"aAB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aAC" = ( -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"aAD" = ( -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"aAE" = ( -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aAF" = ( -/obj/structure/noticeboard{ - pixel_y = 28 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"aAG" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"aAH" = ( -/obj/structure/chair/pew{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet, -/area/chapel/main) -"aAI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"aAJ" = ( -/obj/structure/transit_tube/station/reverse/flipped{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"aAK" = ( -/obj/structure/transit_tube/horizontal, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"aAL" = ( -/obj/machinery/shower{ - dir = 8 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet) -"aAM" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/public/glass{ - name = "Hydroponics"; - req_access_txt = "35" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aAN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aAO" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/crew_quarters/toilet) -"aAP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/brig) -"aAQ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"aAR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Telecomms Access Maintenance"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aAS" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/obj/item/clothing/accessory/armband/engine, -/obj/item/encryptionkey/headset_eng, -/turf/open/floor/plasteel, -/area/security/brig) -"aAT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aAU" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aAV" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aAW" = ( -/obj/machinery/chem_master/condimaster{ - name = "BrewMaster 3000" - }, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aAX" = ( -/turf/open/floor/carpet/red, -/area/security/brig) -"aAY" = ( -/obj/structure/chair, -/turf/open/floor/carpet/red, -/area/security/brig) -"aAZ" = ( -/obj/structure/chair, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/carpet/red, -/area/security/brig) -"aBa" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aBb" = ( -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aBc" = ( -/obj/structure/closet/secure_closet/hydroponics, -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/suit/beekeeper_suit, -/obj/item/melee/flyswatter, -/obj/item/clothing/head/beekeeper_head, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aBd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aBe" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aBf" = ( -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aBg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/junction, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aBh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/noticeboard{ - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aBi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aBj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/brig) -"aBk" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/crew_quarters/barbershop) -"aBl" = ( -/obj/structure/chair/comfy/brown, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/barbershop) -"aBm" = ( -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Dormitories" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"aBn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aBo" = ( -/obj/structure/table, -/obj/item/storage/pill_bottle/epinephrine, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/barbershop) -"aBp" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/machinery/computer/pod/old{ - density = 0; - icon = 'icons/obj/airlock_machines.dmi'; - icon_state = "airlock_control_standby"; - id = "chapelgun"; - name = "Mass Driver Controller"; - pixel_x = 24 - }, -/obj/machinery/conveyor_switch/oneway{ - id = "Holydriver" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"aBq" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"aBr" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/barbershop) -"aBs" = ( -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"aBt" = ( -/obj/structure/chair/comfy/brown, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/barbershop) -"aBu" = ( -/obj/item/flashlight/lantern, -/turf/open/floor/carpet, -/area/chapel/main) -"aBv" = ( -/obj/structure/chair/pew/left{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"aBw" = ( -/obj/structure/chair/comfy/brown, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/barbershop) -"aBx" = ( -/obj/structure/window/plasma/reinforced{ - dir = 8 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/effect/turf_decal/tile/bar, -/obj/machinery/door/poddoor/preopen{ - id = "briglockdown"; - name = "Brig Lockdown" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aBy" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/obj/machinery/camera{ - c_tag = "Port Bow Hall - Central"; - dir = 4; - network = list("ss13","medbay") - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aBz" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aBA" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/table, -/obj/item/healthanalyzer, -/obj/item/storage/hypospraykit/fire{ - pixel_x = -4 - }, -/obj/item/storage/hypospraykit/brute{ - pixel_x = 4 - }, -/obj/structure/sign/poster/official/nt_storm{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aBB" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aBC" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/security/main) -"aBD" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aBE" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aBF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet/red, -/area/security/brig) -"aBG" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/crew_quarters/bar) -"aBH" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aBI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aBJ" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aBK" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/security/main) -"aBL" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/fore) -"aBM" = ( -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/abandoned_gambling_den"; - name = "Arcade APC"; - pixel_y = -26 - }, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aBN" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aBO" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock{ - name = "Hydroponics Storage"; - req_access_txt = "35" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aBP" = ( -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/wood, -/area/crew_quarters/barbershop) -"aBQ" = ( -/turf/open/floor/wood, -/area/crew_quarters/barbershop) -"aBR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/barbershop) -"aBS" = ( -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"aBT" = ( -/obj/item/razor, -/obj/item/toy/figure/chef{ - pixel_x = -6 - }, -/obj/item/toy/figure/bartender{ - pixel_x = 4 - }, -/obj/structure/table/wood/fancy, -/turf/open/floor/carpet, -/area/crew_quarters/bar) -"aBU" = ( -/obj/structure/window/reinforced/tinted, -/obj/structure/rack, -/obj/item/soap/nanotrasen, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet) -"aBV" = ( -/obj/item/flashlight/lantern, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"aBW" = ( -/obj/structure/window/reinforced, -/obj/item/clothing/head/hardhat/cakehat, -/obj/structure/table/wood/fancy, -/turf/open/floor/carpet, -/area/crew_quarters/bar) -"aBX" = ( -/obj/structure/table, -/obj/machinery/chem_dispenser/drinks, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aBY" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera{ - c_tag = "Security Maintenance"; - dir = 1; - network = list("ss13","medbay") - }, -/turf/open/floor/plating, -/area/maintenance/department/security) -"aBZ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/barbershop) -"aCa" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/main) -"aCb" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aCc" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/item/clothing/accessory/armband/cargo, -/obj/item/encryptionkey/headset_cargo, -/turf/open/floor/plasteel, -/area/security/brig) -"aCd" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/highcap/fifteen_k{ - areastring = /area/maintenance/solars/port; - dir = 1; - name = "Port Solars APC"; - pixel_y = 26 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aCe" = ( -/obj/effect/spawner/structure/window, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/bar) -"aCf" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"aCg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/supply, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aCh" = ( -/obj/structure/mineral_door/wood{ - name = "Barbershop" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/barbershop) -"aCi" = ( -/obj/structure/closet/l3closet/security, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/brig) -"aCj" = ( -/obj/machinery/door/window/southleft{ - name = "Showers" - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet) -"aCk" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/crew_quarters/toilet/fitness) -"aCl" = ( -/obj/structure/closet/bombcloset/security, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/security/brig) -"aCm" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aCn" = ( -/obj/machinery/vending/boozeomat, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aCo" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/fitness) -"aCp" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/fitness) -"aCq" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/closed/wall, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"aCr" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aCs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"aCt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aCu" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/freezer, -/area/security/prison) -"aCv" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"aCw" = ( -/obj/structure/window/reinforced/tinted, -/obj/machinery/shower{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet) -"aCx" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aCy" = ( -/obj/structure/table/wood, -/obj/item/storage/book/bible, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"aCz" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aCA" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"aCB" = ( -/obj/structure/chair/stool/bar, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/bar) -"aCC" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/security/prison) -"aCD" = ( -/obj/item/trash/plate, -/obj/item/kitchen/fork, -/obj/structure/table/wood/fancy, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aCE" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/button/door{ - id = "briglockdown"; - name = "Brig Lockdown"; - pixel_x = 24; - req_access_txt = "2" - }, -/obj/effect/turf_decal/arrows/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aCF" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aCG" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aCH" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/arrows/red{ - dir = 8 - }, -/obj/effect/turf_decal/arrows/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aCI" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/structure/sign/departments/botany{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aCJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/chapel/main) -"aCK" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/security/prison) -"aCL" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/paper/guides/cogstation/letter_sec, -/turf/open/floor/carpet/red, -/area/security/brig) -"aCM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/fun_police{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aCN" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aCO" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1; - layer = 2.9 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"aCP" = ( -/obj/structure/chair/sofa/left, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/landmark/start/botanist, -/obj/machinery/camera{ - c_tag = "Hydroponics Lobby" - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aCQ" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/harebell, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"aCR" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/modular_computer/laptop/preset/civilian{ - pixel_x = 1; - pixel_y = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aCS" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aCT" = ( -/obj/machinery/disposal/bin{ - name = "Hydroponics Mailbox" - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/delivery/white, -/obj/machinery/requests_console{ - department = "Hydroponics"; - name = "Hydroponics RC"; - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aCU" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plating, -/area/space/nearstation) -"aCV" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/storage/tools) -"aCW" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aCX" = ( -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"aCY" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/biogenerator, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aCZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electricshock, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aDa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/barbershop) -"aDb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/checkpoint) -"aDc" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Barbershop"; - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/barbershop) -"aDd" = ( -/obj/structure/chair/office/dark, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/barbershop) -"aDe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"aDf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/wood, -/area/crew_quarters/barbershop) -"aDg" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Central Maintenance"; - req_one_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/central) -"aDh" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/public/glass{ - name = "Port Bow Primary Hallway" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aDi" = ( -/obj/structure/closet/secure_closet/evidence, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aDj" = ( -/obj/structure/closet/wardrobe/green, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"aDk" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/door/window/eastright{ - name = "Bathroom Stall" - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet) -"aDl" = ( -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet) -"aDm" = ( -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"aDn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/transit_tube/horizontal, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/bridge) -"aDo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/barbershop) -"aDp" = ( -/obj/effect/spawner/structure/window, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/barbershop) -"aDq" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aDr" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Civilian Wing Hallway" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aDs" = ( -/obj/effect/turf_decal/tile/red, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/security/brig) -"aDt" = ( -/obj/structure/closet{ - name = "Evidence Closet 1" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aDu" = ( -/obj/structure/closet{ - name = "Evidence Closet 2" - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aDv" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"aDw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aDx" = ( -/obj/structure/closet/crate, -/obj/item/gun/ballistic/shotgun/toy/unrestricted, -/obj/item/gun/ballistic/shotgun/toy/unrestricted, -/obj/item/toy/gun, -/obj/item/toy/sword, -/obj/item/toy/sword, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"aDy" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aDz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/sign/departments/restroom{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"aDA" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aDB" = ( -/obj/structure/closet{ - name = "Evidence Closet 3" - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aDC" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aDD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"aDE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aDF" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"aDG" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aDH" = ( -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aDI" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"aDJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aDK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aDL" = ( -/obj/structure/closet{ - name = "Evidence Closet 4" - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aDM" = ( -/turf/closed/wall, -/area/maintenance/central) -"aDN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/central) -"aDO" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aDP" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/full, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aDQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aDR" = ( -/turf/open/floor/plating, -/area/maintenance/central) -"aDS" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/barbershop) -"aDT" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aDU" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aDV" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aDW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/preopen{ - id = "briglockdown"; - name = "Brig Lockdown" - }, -/obj/machinery/turnstile{ - dir = 4; - name = "Genpop Exit Turnstile"; - req_access_txt = "70" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aDX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aDY" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/poddoor/preopen{ - id = "briglockdown"; - name = "Brig Lockdown" - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aDZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/wood, -/area/crew_quarters/barbershop) -"aEa" = ( -/obj/structure/transit_tube/horizontal, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aEb" = ( -/obj/structure/transit_tube/crossing/horizontal, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aEc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aEd" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/barbershop) -"aEe" = ( -/obj/structure/transit_tube/horizontal, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/bridge) -"aEf" = ( -/obj/machinery/camera/motion{ - c_tag = "Telecomms Satellite Exterior - Port Bow"; - dir = 1; - network = list("tcomms") - }, -/turf/open/space/basic, -/area/space) -"aEg" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"aEh" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance{ - name = "Fore Maintenance"; - req_one_access_txt = "12;46" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/hallway/primary/port/fore) -"aEi" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"aEj" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"aEk" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"aEl" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aEm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aEn" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aEo" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/obj/structure/sign/poster/official/fashion{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"aEp" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aEq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aEr" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/lighter, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aEs" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/machinery/atmospherics/components/binary/valve/digital/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aEt" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aEu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aEv" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aEw" = ( -/obj/structure/chair, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aEx" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aEy" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/brig) -"aEz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aEA" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/machinery/computer/security/telescreen/entertainment{ - pixel_x = -32 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aEB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aEC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aED" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/security_officer, -/turf/open/floor/carpet/red, -/area/security/brig) -"aEE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"aEF" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"aEG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aEH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aEI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"aEJ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-08" - }, -/turf/open/floor/wood, -/area/crew_quarters/barbershop) -"aEK" = ( -/obj/structure/table, -/obj/item/razor, -/turf/open/floor/wood, -/area/crew_quarters/barbershop) -"aEL" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aEM" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/grown/poppy, -/turf/open/floor/carpet, -/area/chapel/main) -"aEN" = ( -/obj/structure/table, -/obj/machinery/light, -/obj/item/razor, -/turf/open/floor/wood, -/area/crew_quarters/barbershop) -"aEO" = ( -/obj/structure/table, -/obj/item/clothing/accessory/pocketprotector/cosmetology, -/turf/open/floor/wood, -/area/crew_quarters/barbershop) -"aEP" = ( -/obj/item/kirbyplants, -/turf/open/floor/wood, -/area/crew_quarters/barbershop) -"aEQ" = ( -/turf/closed/wall/r_wall, -/area/maintenance/central) -"aER" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/bot, -/obj/structure/sign/warning/nosmoking{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aES" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/poddoor/preopen{ - id = "briglockdown"; - name = "Brig Lockdown" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"aET" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/poddoor/preopen{ - id = "briglockdown"; - name = "Brig Lockdown" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"aEU" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/fore) -"aEV" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/central) -"aEW" = ( -/obj/structure/table, -/obj/machinery/computer/libraryconsole/bookmanagement, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aEX" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/poster/official/safety_internals{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aEY" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aEZ" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/central"; - dir = 1; - name = "Emergency Storage APC"; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aFa" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/head/hardhat/red{ - pixel_y = 10 - }, -/obj/item/clothing/mask/gas, -/obj/item/tank/internals/air, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aFb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aFc" = ( -/obj/structure/table, -/obj/item/clothing/suit/toggle/owlwings, -/obj/item/clothing/under/costume/owl, -/obj/item/clothing/mask/gas/owl_mask, -/turf/open/floor/plating/asteroid, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"aFd" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aFe" = ( -/obj/machinery/photocopier, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"aFf" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=serv"; - location = "sec1" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aFg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aFh" = ( -/obj/structure/chair/pew/right{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/carpet, -/area/chapel/main) -"aFi" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=market"; - location = "sec2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aFj" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hos) -"aFk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/checkpoint) -"aFl" = ( -/obj/structure/chair/sofa/right, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/reagent_containers/glass/bottle/diethylamine, -/obj/structure/sign/poster/official/hydro_ad{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aFm" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hos) -"aFn" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"aFo" = ( -/obj/machinery/door/window/southleft{ - name = "Weightroom" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"aFp" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aFq" = ( -/obj/structure/table/wood, -/obj/item/candle{ - pixel_x = 4 - }, -/obj/item/candle{ - pixel_y = 8 - }, -/turf/open/floor/carpet, -/area/chapel/main) -"aFr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aFs" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aFt" = ( -/obj/structure/table/glass, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aFu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aFv" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/hallway/secondary/entry) -"aFw" = ( -/obj/structure/table, -/obj/item/multitool, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/camera{ - c_tag = "Central Maintenance - Power Monitoring"; - network = list("ss13","rd") - }, -/turf/open/floor/plating, -/area/maintenance/central) -"aFx" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/item/folder/blue, -/obj/machinery/door/window/westleft{ - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aFy" = ( -/obj/machinery/computer/monitor, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"aFz" = ( -/obj/structure/table, -/obj/item/multitool{ - pixel_x = 8; - pixel_y = 2 - }, -/obj/item/stack/cable_coil/random, -/obj/item/crowbar, -/turf/open/floor/plating, -/area/maintenance/central) -"aFA" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/landmark/start/botanist, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aFB" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aFC" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aFD" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=AftH"; - location = "Hydroponics" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aFE" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/techstorage/tcomms, -/turf/open/floor/circuit, -/area/bridge) -"aFF" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aFG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/security/prison) -"aFH" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aFI" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Primary Tool Storage" - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"aFJ" = ( -/obj/structure/closet/crate/hydroponics, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/watertank, -/obj/item/grenade/chem_grenade/antiweed, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aFK" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/item/storage/box/beakers{ - pixel_y = 4 - }, -/obj/item/reagent_containers/dropper, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/item/pen/blue{ - pixel_x = -4; - pixel_y = -2 - }, -/obj/item/pen/red{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/structure/table/glass, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aFL" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/chem_master, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aFM" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/barbershop) -"aFN" = ( -/obj/structure/flora/junglebush/b, -/turf/open/floor/plating/asteroid, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"aFO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aFP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aFQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aFR" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aFS" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aFT" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aFU" = ( -/obj/machinery/atmospherics/components/binary/circulator/cold{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aFV" = ( -/obj/structure/window/reinforced, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/table/wood/fancy, -/turf/open/floor/carpet, -/area/crew_quarters/bar) -"aFW" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aFX" = ( -/obj/machinery/computer/security/hos{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"aFY" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"aFZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/security/prison) -"aGa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/transit_tube/horizontal, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"aGb" = ( -/obj/machinery/suit_storage_unit/hos, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"aGc" = ( -/obj/item/coin/iron, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"aGd" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"aGe" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"aGf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aGg" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aGh" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/landmark/start/security_officer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aGi" = ( -/obj/machinery/porta_turret/ai{ - dir = 1; - req_access = list(16) - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aGj" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/storage/toolbox/emergency{ - pixel_y = 4 - }, -/obj/item/analyzer{ - pixel_y = -4 - }, -/obj/item/flashlight{ - pixel_y = 4 - }, -/obj/item/flashlight{ - pixel_y = 4 - }, -/obj/item/extinguisher, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aGk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aGl" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/structure/window/reinforced, -/obj/structure/table, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/item/clipboard, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aGm" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/machinery/door/window/southright{ - name = "Hydroponics Desk"; - req_access_txt = "35" - }, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aGn" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/bridge) -"aGo" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/screwdriver, -/obj/item/wrench, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/multitool, -/obj/item/multitool, -/obj/item/wrench, -/turf/open/floor/plasteel, -/area/security/brig) -"aGp" = ( -/mob/living/simple_animal/mouse/brown, -/turf/open/floor/plating/asteroid, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"aGq" = ( -/turf/closed/wall/r_wall, -/area/bridge) -"aGr" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aGs" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/bridge) -"aGt" = ( -/obj/machinery/computer/card/minor/hos{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"aGu" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"aGv" = ( -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"aGw" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock{ - name = "Hydroponics Lobby"; - req_access_txt = "35" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"aGx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aGy" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aGz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/power/apc/highcap/ten_k{ - areastring = "/area/bridge"; - name = "Bridge APC"; - pixel_y = -24 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aGA" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"aGB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"aGC" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aGD" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/toilet"; - dir = 8; - name = "Dormitory Toilets APC"; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/fore) -"aGE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"aGF" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aGG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aGH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medical Booth"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/medical{ - name = "Medical Booth" - }) -"aGI" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/reagent_containers/pill/patch/silver_sulf{ - pixel_x = -4; - pixel_y = 6 - }, -/obj/item/reagent_containers/pill/patch/silver_sulf{ - pixel_x = -4; - pixel_y = 5 - }, -/obj/item/reagent_containers/pill/patch/silver_sulf{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/reagent_containers/pill/patch/silver_sulf{ - pixel_x = -4; - pixel_y = 3 - }, -/obj/item/reagent_containers/pill/patch/silver_sulf{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/item/reagent_containers/pill/patch/silver_sulf{ - pixel_x = -4; - pixel_y = 1 - }, -/obj/item/reagent_containers/pill/patch/silver_sulf{ - pixel_x = -4 - }, -/obj/item/reagent_containers/pill/patch/silver_sulf{ - pixel_x = -4; - pixel_y = -1 - }, -/obj/item/reagent_containers/pill/patch/styptic{ - pixel_x = 4; - pixel_y = 6 - }, -/obj/item/reagent_containers/pill/patch/styptic{ - pixel_x = 4; - pixel_y = 5 - }, -/obj/item/reagent_containers/pill/patch/styptic{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/reagent_containers/pill/patch/styptic{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/reagent_containers/pill/patch/styptic{ - pixel_x = 4; - pixel_y = 2 - }, -/obj/item/reagent_containers/pill/patch/styptic{ - pixel_x = 4; - pixel_y = 1 - }, -/obj/item/reagent_containers/pill/patch/styptic{ - pixel_x = 4 - }, -/obj/item/reagent_containers/pill/patch/styptic{ - pixel_x = 4; - pixel_y = -1 - }, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aGJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aGK" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/central"; - dir = 1; - name = "Head of Security's APC"; - pixel_y = 24 - }, -/obj/machinery/camera{ - c_tag = "Security - Head of Security's Office"; - pixel_x = 22 - }, -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"aGL" = ( -/obj/structure/table/wood, -/obj/item/storage/firstaid/regular, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aGM" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aGN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"aGO" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aGP" = ( -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aGQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aGR" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/store/cake/chocolate, -/obj/machinery/door/poddoor/preopen{ - id = "kitchenlock"; - name = "Kitchen Lockup" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/kitchen) -"aGS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aGT" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"aGU" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aGV" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/structure/table, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aGW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/bridge) -"aGX" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/bottle/vodka, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_y = 30 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/bridge) -"aGY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = -30 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"aGZ" = ( -/turf/open/floor/plasteel/stairs/medium, -/area/hallway/secondary/entry) -"aHa" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/locker"; - dir = 8; - name = "Locker Room APC"; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aHb" = ( -/obj/structure/chair, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aHc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"aHd" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aHe" = ( -/obj/structure/sign/poster/official/bless_this_spess{ - pixel_y = -32 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"aHf" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"aHg" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aHh" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aHi" = ( -/obj/structure/chair/stool, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"aHj" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - name = "Starboard Bow Solar Exterior Airlock"; - req_access_txt = "10;13" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"aHk" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aHl" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aHm" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aHn" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plating, -/area/maintenance/central) -"aHo" = ( -/obj/structure/rack, -/obj/item/circuitboard/machine/telecomms/relay, -/obj/item/circuitboard/machine/telecomms/server, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"aHp" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aHq" = ( -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment, -/obj/machinery/porta_turret/ai{ - dir = 1; - req_access = list(16) - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"aHr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/clown{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aHs" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/port/fore) -"aHt" = ( -/turf/closed/wall/r_wall, -/area/hallway/primary/port/fore) -"aHu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aHv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aHw" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aHx" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/closed/wall, -/area/security/detectives_office) -"aHy" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/security/detectives_office) -"aHz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/security/detectives_office) -"aHA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/detectives_office) -"aHB" = ( -/obj/structure/rack, -/obj/effect/turf_decal/bot, -/obj/item/storage/toolbox/emergency{ - pixel_y = 4 - }, -/obj/item/wrench, -/obj/item/wrench{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/light/tube, -/obj/item/light/tube{ - pixel_x = -2; - pixel_y = 2 - }, -/obj/item/extinguisher, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aHC" = ( -/obj/machinery/vending/cola/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aHD" = ( -/obj/machinery/modular_computer/console/preset/engineering, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aHE" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aHF" = ( -/turf/open/floor/plasteel/dark, -/area/bridge) -"aHG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"aHH" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aHI" = ( -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aHJ" = ( -/obj/machinery/light, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"aHK" = ( -/obj/structure/musician/piano, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"aHL" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/stack/medical/gauze, -/obj/item/reagent_containers/blood, -/obj/item/stack/medical/suture, -/obj/item/stack/medical/mesh, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"aHM" = ( -/turf/open/floor/plasteel, -/area/bridge) -"aHN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "Security - Interrogation Room"; - pixel_x = 22 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aHO" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aHP" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hos) -"aHQ" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aHR" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/central"; - dir = 1; - name = "Security Office APC"; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aHS" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aHT" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"aHU" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/mineral_door/woodrustic{ - name = "Nature Preserve" - }, -/turf/open/floor/plasteel, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"aHV" = ( -/obj/structure/flora/junglebush/large, -/turf/open/floor/plating/asteroid, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"aHW" = ( -/obj/structure/chair/comfy/brown, -/obj/effect/landmark/start/head_of_security, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"aHX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aHY" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/cryopod) -"aHZ" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/door/window/eastleft{ - name = "Security Office Desk"; - req_one_access_txt = "63" - }, -/obj/item/folder/red, -/obj/item/stamp/denied{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stamp, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aIa" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"aIb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aIc" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"aId" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aIe" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"aIf" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"aIg" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aIh" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet) -"aIi" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aIj" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aIk" = ( -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aIl" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aIm" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/machinery/requests_console{ - department = "Kitchen"; - departmentType = 2; - name = "Kitchen RC"; - pixel_x = 30 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"aIn" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/security/prison) -"aIo" = ( -/obj/effect/decal/cleanable/oil, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aIp" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aIq" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aIr" = ( -/obj/structure/table/reinforced, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/item/folder/red, -/obj/item/stamp/hos, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"aIs" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aIt" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aIu" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aIv" = ( -/obj/machinery/cryopod{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/crew_quarters/cryopod) -"aIw" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aIx" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aIy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aIz" = ( -/obj/machinery/cryopod{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aIA" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aIB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aIC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/main) -"aID" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/main) -"aIE" = ( -/turf/open/floor/carpet/royalblue, -/area/bridge) -"aIF" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/noticeboard{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/recharger, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aIG" = ( -/obj/structure/table, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aIH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/carpet/royalblue, -/area/bridge) -"aII" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/carpet/royalblue, -/area/bridge) -"aIJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Fore Maintenance"; - req_one_access_txt = "12;46" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/hallway/primary/port/fore) -"aIK" = ( -/obj/structure/table/wood, -/obj/item/camera, -/obj/item/folder, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aIL" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aIM" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"aIN" = ( -/obj/structure/bed/roller, -/obj/machinery/iv_drip, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"aIO" = ( -/obj/structure/sign/directions/medical{ - dir = 8; - pixel_y = -24 - }, -/obj/structure/sign/directions/evac{ - dir = 1; - pixel_y = -32 - }, -/obj/structure/sign/directions/supply{ - dir = 8; - pixel_y = -40 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aIP" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"aIQ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/bridge) -"aIR" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/botanist, -/turf/open/floor/plasteel, -/area/hydroponics) -"aIS" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/ai, -/obj/item/radio/intercom{ - freerange = 1; - frequency = 1447; - name = "Private Channel"; - pixel_x = 27; - pixel_y = -7 - }, -/obj/item/radio/intercom{ - freerange = 1; - name = "Common Channel"; - pixel_x = 27; - pixel_y = 5 - }, -/obj/machinery/button/door{ - id = "AIShutter"; - layer = 3.6; - name = "AI Core Shutter Control"; - pixel_x = 24; - pixel_y = -24 - }, -/obj/item/radio/intercom{ - freerange = 1; - listening = 0; - name = "Custom Channel"; - pixel_x = -24; - pixel_y = -8 - }, -/obj/machinery/button/door{ - id = "AIChamberShutter"; - layer = 3.6; - name = "AI Chamber Shutter Control"; - pixel_x = -24; - pixel_y = -24 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aIT" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/bridge) -"aIU" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aIV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation Monitoring"; - req_access_txt = "63" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aIW" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aIX" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aIY" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aIZ" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aJa" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aJb" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aJc" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aJd" = ( -/turf/closed/wall, -/area/chapel/office) -"aJe" = ( -/obj/machinery/computer/crew{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aJf" = ( -/obj/machinery/camera{ - c_tag = "Chapel - Aft"; - dir = 1 - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"aJg" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"aJh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"aJi" = ( -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"aJj" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/aft"; - dir = 8; - name = "Chapel APC"; - pixel_x = -26 - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"aJk" = ( -/obj/structure/table/wood, -/obj/item/candle, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"aJl" = ( -/obj/structure/bodycontainer/crematorium{ - id = "foo" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"aJm" = ( -/obj/machinery/light, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"aJn" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aJo" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"aJp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/camera/motion{ - c_tag = "AI"; - network = list("minisat") - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aJq" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/storage/box/beakers{ - pixel_y = 4 - }, -/obj/item/clothing/glasses/science, -/turf/open/floor/plasteel, -/area/hydroponics) -"aJr" = ( -/obj/structure/sign/directions/command{ - dir = 8; - pixel_y = -32 - }, -/obj/structure/sign/directions/security{ - dir = 8; - pixel_y = -24 - }, -/obj/structure/sign/directions/science{ - dir = 8; - pixel_y = -40 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aJs" = ( -/obj/structure/noticeboard{ - name = "Hydroponics Requests Board"; - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aJt" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/item/toy/figure/syndie, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/prison) -"aJu" = ( -/obj/structure/chair/comfy/brown, -/turf/open/floor/carpet/royalblue, -/area/bridge) -"aJv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"aJw" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aJx" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aJy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/stairs/right, -/area/security/brig) -"aJz" = ( -/obj/structure/chair/comfy/brown, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet/royalblue, -/area/bridge) -"aJA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Port Bow Hall - Dorms Access"; - network = list("ss13","rd") - }, -/obj/structure/sign/poster/official/random{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aJB" = ( -/obj/machinery/computer/security/mining{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"aJC" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aJD" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/item/storage/belt/medical, -/obj/item/tank/internals/emergency_oxygen, -/obj/item/clothing/suit/space/eva/paramedic, -/obj/item/clothing/head/helmet/space/eva/paramedic, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"aJE" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"aJF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/fore) -"aJG" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/bridge) -"aJH" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, -/area/storage/tools) -"aJI" = ( -/obj/structure/closet/crate/hydroponics, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/cable, -/obj/item/shovel/spade, -/obj/item/wrench, -/obj/item/cultivator, -/obj/item/crowbar, -/obj/item/wirecutters, -/obj/item/reagent_containers/glass/bucket, -/obj/item/hatchet, -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/hydroponics"; - name = "Hydroponics APC"; - pixel_y = -28 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"aJJ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"aJK" = ( -/obj/structure/filingcabinet, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel, -/area/bridge) -"aJL" = ( -/turf/open/floor/circuit, -/area/bridge) -"aJM" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/circuit, -/area/bridge) -"aJN" = ( -/obj/machinery/camera{ - c_tag = "Security - Prison Aft"; - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aJO" = ( -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aJP" = ( -/obj/structure/chair/comfy/teal, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/sign/departments/botany{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Civilian Wing Hallway - Starboard"; - dir = 8; - pixel_y = -22 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aJQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aJR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"aJS" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"aJT" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aJU" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aJV" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"aJW" = ( -/obj/machinery/cryopod{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/circuit/green, -/area/crew_quarters/cryopod) -"aJX" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/modular_computer/console/preset/civilian{ - dir = 8 - }, -/turf/open/floor/circuit, -/area/bridge) -"aJY" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/item/storage/box/lights/mixed, -/obj/item/stack/sheet/metal/fifty{ - pixel_x = -3; - pixel_y = -7 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"aJZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"aKa" = ( -/obj/structure/chair/stool, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aKb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/civilian) -"aKc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aKd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation"; - req_access_txt = "63" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aKe" = ( -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"aKf" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/storage/emergency/generic) -"aKg" = ( -/turf/open/floor/plasteel/stairs/right, -/area/hallway/secondary/entry) -"aKh" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet/red, -/area/security/brig) -"aKi" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aKj" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"aKk" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/effect/landmark/start/detective, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aKl" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aKm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Emergency Storage" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aKn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"aKo" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aKp" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"aKq" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/chapel/main) -"aKr" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/public/glass{ - name = "Emergency Storage" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/storage/emergency/generic) -"aKs" = ( -/obj/structure/table/wood, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/drinks/drinkingglass, -/obj/item/reagent_containers/rag, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"aKt" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aKu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/storage/emergency/generic) -"aKv" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aKw" = ( -/obj/structure/table, -/obj/item/storage/box/dice, -/obj/item/toy/cards/deck, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aKx" = ( -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aKy" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/rnd/production/techfab/department/security, -/turf/open/floor/plasteel, -/area/security/brig) -"aKz" = ( -/turf/closed/wall, -/area/storage/emergency/generic) -"aKA" = ( -/obj/structure/table/wood, -/obj/machinery/button/door{ - id = "bridge blast"; - name = "Bridge Blast Door Control"; - pixel_x = -6; - pixel_y = -3; - req_access_txt = "19" - }, -/turf/open/floor/carpet/royalblue, -/area/bridge) -"aKB" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"aKC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Prison Wing"; - req_access_txt = "2" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aKD" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aKE" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/donut_box, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/carpet/royalblue, -/area/bridge) -"aKF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Telecommunications Control Room"; - req_access_txt = "19;61" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aKG" = ( -/obj/structure/table/wood, -/obj/item/storage/toolbox/emergency, -/obj/item/crowbar/red, -/turf/open/floor/carpet/royalblue, -/area/bridge) -"aKH" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/full, -/obj/machinery/camera{ - c_tag = "Bridge - Fore"; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aKI" = ( -/obj/structure/closet/cabinet, -/obj/item/screwdriver, -/obj/item/storage/crayons, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = 26 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"aKJ" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aKK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/vending/snack/blue, -/turf/open/floor/plasteel, -/area/bridge) -"aKL" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/bridge) -"aKM" = ( -/obj/machinery/camera{ - c_tag = "Chapel - Starboard"; - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"aKN" = ( -/obj/structure/chair/pew/left{ - dir = 4 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"aKO" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/stairs/left, -/area/security/brig) -"aKP" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/bridge) -"aKQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/office) -"aKR" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aKS" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/bridge) -"aKT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"aKU" = ( -/obj/structure/bodycontainer/morgue, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"aKV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"aKW" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aKX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Chapel Morgue"; - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"aKY" = ( -/obj/structure/chair/sofa/left, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/bridge) -"aKZ" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"aLa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/machinery/door/poddoor/preopen{ - id = "hos" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hos) -"aLb" = ( -/obj/item/toy/prize/honk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"aLc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aLd" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aLe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aLf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aLg" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"aLh" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aLi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Central Maintenance"; - req_one_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"aLj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aLk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/security/brig) -"aLl" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/autodrobe, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aLm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aLn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/junction/flip, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aLo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aLp" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"aLq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aLr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aLs" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"aLt" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aLu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Visitation Maintainance"; - req_one_access_txt = "63" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/security/main) -"aLv" = ( -/obj/machinery/computer/cryopod{ - dir = 8; - pixel_x = 26 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aLw" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-06" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aLx" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aLy" = ( -/obj/machinery/modular_computer/console/preset/command{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aLz" = ( -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aLA" = ( -/obj/item/candle{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/item/candle{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"aLB" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet) -"aLC" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aLD" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"aLE" = ( -/obj/machinery/computer/communications{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aLF" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aLG" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"aLH" = ( -/obj/machinery/power/terminal{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"aLI" = ( -/obj/structure/table/wood, -/obj/item/storage/box/PDAs, -/obj/item/storage/box/ids{ - pixel_x = 3; - pixel_y = 3 - }, -/turf/open/floor/carpet/royalblue, -/area/bridge) -"aLJ" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aLK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/bridge) -"aLL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/brig) -"aLM" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"aLN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/morgue{ - name = "Confession Booth" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) -"aLO" = ( -/obj/item/toy/talking/owl, -/turf/open/floor/plating/asteroid, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"aLP" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_x = -26 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"aLQ" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel, -/area/bridge) -"aLR" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/item/storage/box/bodybags{ - pixel_y = 4 - }, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"aLS" = ( -/obj/structure/disposaloutlet{ - dir = 8; - name = "Corpse Outlet" - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"aLT" = ( -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aLU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/vending/assist, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aLV" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/camera{ - c_tag = "Central Maintenance - Aft"; - network = list("ss13","rd") - }, -/turf/open/floor/plating, -/area/maintenance/central) -"aLW" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aLX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/main) -"aLY" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"aLZ" = ( -/mob/living/simple_animal/chicken{ - desc = "At least it isn't a court kangaroo."; - name = "amusing cluck"; - real_name = "amusing cluck" - }, -/turf/open/floor/carpet, -/area/security/courtroom) -"aMa" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"aMb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aMc" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 20 - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aMd" = ( -/obj/machinery/vending/wardrobe/chap_wardrobe, -/obj/machinery/camera{ - c_tag = "Chapel Office"; - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"aMe" = ( -/obj/machinery/door/window/northleft{ - name = "Game Room" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"aMf" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aMg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/recharge_station, -/turf/open/floor/plating, -/area/maintenance/central) -"aMh" = ( -/obj/structure/table/reinforced, -/obj/machinery/recharger, -/obj/item/reagent_containers/food/drinks/bottle/champagne, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Security's Desk"; - departmentType = 5; - name = "Head of Security RC"; - pixel_y = -32 - }, -/obj/machinery/keycard_auth{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"aMi" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aMj" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aMk" = ( -/obj/structure/closet/crate/coffin, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"aMl" = ( -/obj/effect/landmark/start/bartender, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aMm" = ( -/obj/machinery/computer/med_data, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"aMn" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/sign/warning{ - name = "\improper WARNING: MOVING MACHINERY" - }, -/turf/closed/wall, -/area/maintenance/department/chapel) -"aMo" = ( -/obj/structure/disposalpipe/junction/yjunction, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aMp" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aMq" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aMr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Civilian Wing Hallway - Port" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aMs" = ( -/turf/closed/wall, -/area/maintenance/department/chapel) -"aMt" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"aMu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel{ - dir = 4; - icon_state = "chapel" - }, -/area/chapel/main) -"aMv" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel{ - dir = 8; - icon_state = "chapel" - }, -/area/chapel/main) -"aMw" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aMx" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"aMy" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"aMz" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engine/storage{ - name = "Canister Storage" - }) -"aMA" = ( -/turf/closed/wall, -/area/janitor) -"aMB" = ( -/turf/closed/wall/r_wall, -/area/janitor) -"aMC" = ( -/obj/structure/table/wood, -/obj/item/kitchen/fork, -/obj/item/reagent_containers/food/snacks/salad/herbsalad, -/obj/item/candle{ - pixel_x = 8; - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"aMD" = ( -/turf/closed/wall/rust, -/area/maintenance/disposal) -"aME" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aMF" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"aMG" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aMH" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aMI" = ( -/turf/closed/wall/r_wall, -/area/maintenance/disposal) -"aMJ" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/effect/landmark/start/assistant, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"aMK" = ( -/obj/vehicle/ridden/wheelchair, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"aML" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/chapel/office) -"aMM" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/sign/poster/official/help_others{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aMN" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aMO" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aMP" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/bottle/wine, -/turf/open/floor/plasteel, -/area/security/brig) -"aMQ" = ( -/obj/machinery/computer/security{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aMR" = ( -/obj/effect/landmark/start/chaplain, -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/carpet, -/area/chapel/main) -"aMS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aMT" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aMU" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen/fountain, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet, -/area/chapel/main) -"aMV" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"aMW" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aMX" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - dir = 1 - }, -/turf/open/floor/carpet/royalblue, -/area/bridge) -"aMY" = ( -/obj/structure/closet, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/security/courtroom) -"aMZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aNa" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"aNb" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"aNc" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/item/mop, -/obj/item/storage/box/mousetraps, -/obj/item/storage/box/mousetraps, -/obj/item/reagent_containers/spray/cleaner, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plasteel, -/area/janitor) -"aNd" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/paper_bin, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/security/courtroom) -"aNe" = ( -/obj/structure/closet/crate, -/obj/item/reagent_containers/food/snacks/spaghetti, -/obj/item/reagent_containers/food/snacks/spaghetti, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"aNf" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/clipboard, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/security/courtroom) -"aNg" = ( -/obj/machinery/computer/cargo/request{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"aNh" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aNi" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/bridge) -"aNj" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/table, -/obj/item/book/manual/wiki/security_space_law, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aNk" = ( -/obj/structure/table/glass, -/obj/structure/noticeboard{ - pixel_y = 28 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/pen{ - pixel_y = 8 - }, -/obj/item/pen, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/security/courtroom) -"aNl" = ( -/obj/structure/table/wood, -/obj/item/trash/plate, -/obj/item/reagent_containers/food/condiment/pack/ketchup{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/condiment/pack/mustard{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/candle{ - pixel_x = -8; - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"aNm" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aNn" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/reagent_containers/food/drinks/shaker, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aNo" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AIShutter"; - name = "AI Core Shutters" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"aNp" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aNq" = ( -/obj/machinery/door/window/northright{ - name = "Chapel Office"; - req_access_txt = "22" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"aNr" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aNs" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aNt" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aNu" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/bar) -"aNv" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aNw" = ( -/obj/machinery/atmospherics/components/binary/valve, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"aNx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/securearea, -/turf/open/floor/plating, -/area/engine/storage{ - name = "Canister Storage" - }) -"aNy" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"aNz" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 5 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aNA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access_txt = "2" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/security/main) -"aNB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Port Bow Primary Hallway" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aNC" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/camera/motion{ - c_tag = "Telecomms Control Room"; - network = list("tcomms"); - pixel_x = 22 - }, -/obj/machinery/power/apc/highcap/fifteen_k{ - areastring = "/area/tcommsat/server"; - dir = 1; - name = "Telecomms Server APC"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"aND" = ( -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"aNE" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aNF" = ( -/obj/machinery/computer/secure_data{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aNG" = ( -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 2 - }, -/obj/structure/table, -/obj/item/taperecorder, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aNH" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Exterior Engineering Access"; - req_access_txt = "11;13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"aNI" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aNJ" = ( -/obj/structure/table, -/obj/item/flashlight/lamp, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aNK" = ( -/obj/structure/sign/nanotrasen{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aNL" = ( -/turf/open/floor/plasteel, -/area/security/courtroom) -"aNM" = ( -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - name = "Security RC"; - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aNN" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aNO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/security/courtroom) -"aNP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aNQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/securearea, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/engine/storage{ - name = "Canister Storage" - }) -"aNR" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hop) -"aNS" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/security/courtroom) -"aNT" = ( -/turf/closed/wall/r_wall, -/area/teleporter) -"aNU" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aNV" = ( -/obj/structure/table, -/obj/item/locator, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"aNW" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"aNX" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/item/instrument/guitar, -/obj/machinery/camera{ - c_tag = "Bar - Port"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aNY" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=sec2"; - location = "bar" - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aNZ" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aOa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "E.V.A. Maintenance"; - req_one_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aOb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "E.V.A. Maintenance"; - req_one_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aOc" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"aOd" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"aOe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"aOf" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aOg" = ( -/obj/structure/chair/comfy/teal{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aOh" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aOi" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"aOj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aOk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/effect/turf_decal/delivery, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aOl" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aOm" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/structure/table/wood, -/obj/item/toy/windupToolbox, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aOn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aOo" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/hallway/primary/port/fore"; - dir = 4; - name = "Port Bow Primary Hallway APC"; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/maintenance/department/security) -"aOp" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 31 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/bridge) -"aOq" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/obj/effect/turf_decal/delivery, -/obj/item/extinguisher, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aOr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21"; - pixel_y = 3 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/bridge) -"aOs" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/kirbyplants, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/bridge) -"aOt" = ( -/obj/structure/chair/stool, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) -"aOu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) -"aOv" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/gavelblock, -/obj/item/gavelhammer, -/obj/machinery/camera{ - c_tag = "Courtroom"; - network = list("ss13","rd") - }, -/turf/open/floor/carpet, -/area/security/courtroom) -"aOw" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aOx" = ( -/obj/structure/table/reinforced, -/obj/item/grenade/chem_grenade/smart_metal_foam{ - pixel_x = 4 - }, -/obj/item/radio, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aOy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aOz" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Port Bow Hall"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aOA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/department/chapel) -"aOB" = ( -/turf/closed/wall/r_wall, -/area/security/courtroom) -"aOC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"aOD" = ( -/obj/machinery/door/airlock{ - name = "Catering"; - req_one_access_txt = "25;28" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"aOE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"aOF" = ( -/obj/structure/closet/crate/freezer/surplus_limbs, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"aOG" = ( -/obj/structure/chair/comfy/teal{ - dir = 1 - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aOH" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"aOI" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 10 - }, -/obj/machinery/flasher{ - id = "ID"; - pixel_x = 8; - pixel_y = 24 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aOJ" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/fitness/cogpool) -"aOK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"aOL" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/security/brig) -"aOM" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"aON" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aOO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aOP" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/gravity_generator) -"aOQ" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - name = "cold loop to generator" - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aOR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/window/reinforced/spawner/east, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aOS" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aOT" = ( -/turf/closed/wall, -/area/crew_quarters/fitness/cogpool) -"aOU" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/fitness/cogpool) -"aOV" = ( -/turf/open/floor/plasteel/stairs, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aOW" = ( -/obj/structure/closet/secure_closet/security/sec, -/obj/effect/turf_decal/bot, -/obj/item/clothing/accessory/armband/hydro, -/obj/item/encryptionkey/headset_service, -/obj/item/clothing/under/misc/vice_officer, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aOX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Pool" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel/white/side, -/area/crew_quarters/fitness/cogpool) -"aOY" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/obj/structure/window/reinforced/spawner/west, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aOZ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/bridge) -"aPa" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Pool" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/side, -/area/crew_quarters/fitness/cogpool) -"aPb" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aPc" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aPd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aPe" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"aPf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"aPg" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aPh" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aPi" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/mirror{ - pixel_x = 24 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet) -"aPj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aPk" = ( -/obj/effect/landmark/start/depsec/science, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aPl" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aPm" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aPn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/landmark/start/depsec/medical, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aPo" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aPp" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aPq" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aPr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/primary/central) -"aPs" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aPt" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) -"aPu" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/bridge) -"aPv" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Equipment Room"; - req_access_txt = "1" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aPw" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Central Hall - Courtroom Access"; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/primary/central) -"aPx" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aPy" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aPz" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aPA" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aPB" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/paper/guides/jobs/security/courtroom, -/obj/item/pen, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/courtroom) -"aPC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aPD" = ( -/obj/machinery/door/airlock/security/glass{ - name = "Equipment Room"; - req_access_txt = "1" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aPE" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/toy/talking/AI{ - name = "Nanotrasen-brand toy AI"; - pixel_y = 6 - }, -/obj/item/clothing/glasses/meson, -/obj/machinery/status_display{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"aPF" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/locker) -"aPG" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - sortType = 21 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aPH" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/security/courtroom) -"aPI" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aPJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=bar"; - location = "serv" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aPK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aPL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aPM" = ( -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/security/courtroom) -"aPN" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/space/nearstation) -"aPO" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/visible{ - dir = 8 - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aPP" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aPQ" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aPR" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating/airless, -/area/crew_quarters/fitness/cogpool) -"aPS" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aPT" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aPU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"aPV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"aPW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"aPX" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/storage/fancy/donut_box, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aPY" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aPZ" = ( -/obj/structure/window/plasma/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aQa" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"aQb" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aQc" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"aQd" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"aQe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aQf" = ( -/obj/structure/table, -/obj/structure/bedsheetbin, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aQg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aQh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden, -/turf/open/floor/carpet/royalblue, -/area/bridge) -"aQi" = ( -/obj/structure/table, -/obj/item/modular_computer/laptop/preset/civilian, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aQj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"aQk" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aQl" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aQm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet/red, -/area/security/brig) -"aQn" = ( -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/security/courtroom) -"aQo" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/security/courtroom) -"aQp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"aQq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"aQr" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/space/nearstation) -"aQs" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aQt" = ( -/obj/machinery/pool/controller, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aQu" = ( -/obj/structure/table, -/obj/item/toy/beach_ball{ - pixel_y = 12 - }, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aQv" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"aQw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aQx" = ( -/obj/machinery/camera{ - c_tag = "Engine Room - Port Bow" - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"aQy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/chapel/main) -"aQz" = ( -/obj/structure/chair/comfy/teal, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aQA" = ( -/obj/structure/chair/stool, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aQB" = ( -/obj/structure/table, -/obj/item/clothing/glasses/sunglasses{ - pixel_y = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aQC" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"aQD" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aQE" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aQF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/circuit/green, -/area/crew_quarters/cryopod) -"aQG" = ( -/obj/structure/closet/emcloset, -/turf/open/floor/plating, -/area/maintenance/port/central) -"aQH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aQI" = ( -/obj/structure/chair/comfy/teal, -/obj/machinery/light{ - dir = 1; - light_color = "#cee5d2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aQJ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space/basic, -/area/space/nearstation) -"aQK" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/port/central) -"aQL" = ( -/turf/closed/wall, -/area/maintenance/port/central) -"aQM" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aQN" = ( -/obj/structure/chair/comfy/brown, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet/royalblue, -/area/bridge) -"aQO" = ( -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aQP" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-02" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aQQ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aQR" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aQS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aQT" = ( -/obj/machinery/door/airlock/engineering{ - name = "Thermo-Electric Generator"; - req_one_access_txt = "10;24" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aQU" = ( -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"aQV" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"aQW" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain) -"aQX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aQY" = ( -/obj/structure/window/plasma/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted, -/obj/structure/table, -/obj/item/toy/beach_ball/holoball/dodgeball, -/obj/item/toy/beach_ball/holoball/dodgeball, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aQZ" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Service Hallway"; - req_one_access_txt = "25;26;28;35" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"aRa" = ( -/obj/structure/table/wood, -/obj/item/lighter, -/obj/item/multitool{ - pixel_x = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet/royalblue, -/area/bridge) -"aRb" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/primary/central) -"aRc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/fitness/cogpool) -"aRd" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aRe" = ( -/obj/structure/table/wood, -/obj/item/storage/secure/briefcase, -/obj/item/assembly/flash, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/carpet/royalblue, -/area/bridge) -"aRf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aRg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aRh" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aRi" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aRj" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = 26 - }, -/obj/machinery/sleep_console{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"aRk" = ( -/obj/structure/disposalpipe/junction/yjunction, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aRl" = ( -/obj/structure/table/wood, -/obj/item/restraints/handcuffs, -/obj/item/laser_pointer/blue, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet/royalblue, -/area/bridge) -"aRm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aRn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aRo" = ( -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) -"aRp" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aRq" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aRr" = ( -/mob/living/simple_animal/chicken{ - name = "Kentucky"; - real_name = "Kentucky" - }, -/turf/open/floor/plating/asteroid, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"aRs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aRt" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aRu" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/space/basic, -/area/space/nearstation) -"aRv" = ( -/obj/structure/lattice, -/obj/structure/sign/warning{ - name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; - pixel_x = -32 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aRw" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) -"aRx" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"aRy" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"aRz" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"aRA" = ( -/obj/structure/table/optable, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/reagent_containers/blood/random, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"aRB" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aRC" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"aRD" = ( -/turf/closed/wall/r_wall/rust, -/area/engine/gravity_generator) -"aRE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"aRF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/engine/storage_shared{ - name = "Electrical Substation" - }) -"aRG" = ( -/obj/machinery/power/generator, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aRH" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/blobstart, -/obj/machinery/camera{ - c_tag = "Central Port Maintenance - Starboard"; - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/plating, -/area/maintenance/port/central) -"aRI" = ( -/obj/structure/rack, -/obj/item/extinguisher, -/obj/item/crowbar, -/turf/open/floor/plating, -/area/maintenance/port/central) -"aRJ" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"aRK" = ( -/obj/structure/sign/departments/holy{ - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aRL" = ( -/mob/living/simple_animal/crab/kreb, -/turf/open/floor/plating/asteroid, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"aRM" = ( -/turf/open/floor/carpet, -/area/crew_quarters/bar) -"aRN" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aRO" = ( -/obj/structure/disposalpipe/junction/yjunction, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aRP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aRQ" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aRR" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"aRS" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aRT" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aRU" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/main) -"aRV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"aRW" = ( -/turf/open/floor/plating, -/area/maintenance/port/central) -"aRX" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/space/basic, -/area/space/nearstation) -"aRY" = ( -/turf/closed/wall/r_wall, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"aRZ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/space/basic, -/area/space/nearstation) -"aSa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/bridge) -"aSb" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aSc" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/central) -"aSd" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"aSe" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Chapel" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/chapel/main) -"aSf" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aSg" = ( -/obj/machinery/power/apc{ - name = "Security Maintainance APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/security) -"aSh" = ( -/obj/structure/table, -/obj/item/storage/fancy/donut_box, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet/red, -/area/security/brig) -"aSi" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/bridge) -"aSj" = ( -/obj/structure/target_stake, -/obj/item/target/syndicate, -/turf/open/floor/plasteel, -/area/science/circuit) -"aSk" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aSl" = ( -/obj/machinery/computer/teleporter{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"aSm" = ( -/obj/machinery/teleport/station, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"aSn" = ( -/obj/machinery/teleport/hub, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"aSo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aSp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aSq" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space/basic, -/area/space/nearstation) -"aSr" = ( -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"aSs" = ( -/obj/machinery/light{ - dir = 1; - light_color = "#d1dfff" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/camera{ - c_tag = "Bridge Access"; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel, -/area/bridge) -"aSt" = ( -/turf/closed/wall/r_wall, -/area/maintenance/department/eva) -"aSu" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/space/basic, -/area/space/nearstation) -"aSv" = ( -/turf/closed/wall, -/area/space/nearstation) -"aSw" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space/basic, -/area/space/nearstation) -"aSx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aSy" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/space/basic, -/area/space/nearstation) -"aSz" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aSA" = ( -/obj/structure/closet/secure_closet/medical2, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"aSB" = ( -/obj/machinery/door/airlock/command{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/bridge) -"aSC" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"aSD" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aSE" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aSF" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/surgical_drapes, -/obj/item/scalpel, -/obj/item/circular_saw{ - pixel_y = 16 - }, -/obj/item/hemostat, -/obj/item/retractor, -/obj/item/surgicaldrill, -/obj/item/cautery, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"aSG" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"aSH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"aSI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aSJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Security Office"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/main) -"aSK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"aSL" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"aSM" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/space/basic, -/area/space/nearstation) -"aSN" = ( -/obj/structure/table, -/obj/machinery/computer/secure_data/laptop{ - dir = 8; - pixel_x = -2; - pixel_y = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/carpet/red, -/area/security/brig) -"aSO" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aSP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aSQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aSR" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/tools) -"aSS" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "Chapel" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aST" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plating, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"aSU" = ( -/obj/structure/reagent_dispensers/beerkeg, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_x = -26 - }, -/obj/machinery/requests_console{ - department = "Bar"; - departmentType = 2; - name = "Bar RC"; - pixel_y = -30 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"aSV" = ( -/obj/item/toy/talking/AI, -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/hallway/primary/central) -"aSW" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/bridge) -"aSX" = ( -/obj/machinery/washing_machine, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aSY" = ( -/obj/machinery/vending/medical, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"aSZ" = ( -/obj/structure/chair/stool, -/obj/machinery/light, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aTa" = ( -/obj/structure/window/plasma/reinforced{ - dir = 4 - }, -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/prison) -"aTb" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "Central Hall - Starboard"; - pixel_x = 22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aTc" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/components/binary/valve/digital/on, -/turf/open/floor/plating, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"aTd" = ( -/obj/structure/sign/warning{ - name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES" - }, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"aTe" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aTf" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/bridge) -"aTg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/security/brig) -"aTh" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/power/apc{ - name = "AI Upload Foyer APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"aTi" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aTj" = ( -/obj/machinery/pool/filter{ - pixel_y = 16 - }, -/turf/open/pool, -/area/crew_quarters/fitness/cogpool) -"aTk" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space/basic, -/area/space/nearstation) -"aTl" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aTm" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"aTn" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/department/eva"; - dir = 8; - name = "EVA Maintenance APC"; - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aTo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"aTp" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/landmark/start/security_officer, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aTq" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"aTr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"aTs" = ( -/turf/closed/wall, -/area/maintenance/department/eva) -"aTt" = ( -/obj/structure/closet/secure_closet/detective, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aTu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/bridge) -"aTv" = ( -/turf/open/pool, -/area/crew_quarters/fitness/cogpool) -"aTw" = ( -/obj/structure/pool/ladder{ - dir = 2; - pixel_y = 24 - }, -/turf/open/pool, -/area/crew_quarters/fitness/cogpool) -"aTx" = ( -/obj/structure/lattice, -/obj/structure/sign/warning{ - name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; - pixel_y = -32 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aTy" = ( -/obj/structure/lattice/catwalk, -/obj/structure/sign/warning{ - name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; - pixel_y = -32 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aTz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aTA" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aTB" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel{ - icon_state = "chapel" - }, -/area/chapel/main) -"aTC" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aTD" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aTE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"aTF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/carpet/red, -/area/security/brig) -"aTG" = ( -/turf/closed/wall, -/area/router/public) -"aTH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"aTI" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Public Router" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/router/public) -"aTJ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aTK" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Public Router" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/router/public) -"aTL" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Cryogenics"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/circuit/green, -/area/crew_quarters/cryopod) -"aTM" = ( -/turf/closed/wall/r_wall, -/area/router/public) -"aTN" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_x = -26 - }, -/obj/item/kirbyplants{ - icon_state = "plant-14" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aTO" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aTP" = ( -/obj/machinery/status_display/ai, -/turf/closed/wall/r_wall, -/area/security/courtroom) -"aTQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "Thermo-Electric Generator" - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aTR" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/stamp, -/obj/item/stamp/denied{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pen/red, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet/red, -/area/security/brig) -"aTS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/central) -"aTT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/central) -"aTU" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aTV" = ( -/turf/closed/wall, -/area/gateway) -"aTW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"aTX" = ( -/obj/machinery/light{ - dir = 1; - light_color = "#c1caff" - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"aTY" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aTZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - name = "hot loop to space" - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"aUa" = ( -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aUb" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"aUc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/central) -"aUd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aUe" = ( -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aUf" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"aUg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aUh" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aUi" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/gateway) -"aUj" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/item/destTagger, -/obj/machinery/requests_console{ - department = "Public Router"; - name = "Public Router RC"; - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/router/public) -"aUk" = ( -/turf/closed/wall/r_wall, -/area/gateway) -"aUl" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/router/public) -"aUm" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/router/public) -"aUn" = ( -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/computer/cargo/request, -/turf/open/floor/plasteel, -/area/router/public) -"aUo" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aUp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/closet/crate/science, -/turf/open/floor/plasteel, -/area/gateway) -"aUq" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/lounge/jazz) -"aUr" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 10 - }, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"aUs" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"aUt" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"aUu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/rack, -/turf/open/floor/plasteel, -/area/gateway) -"aUv" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/security_officer, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/carpet/red, -/area/security/brig) -"aUw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Jazz Lounge" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/lounge/jazz) -"aUx" = ( -/obj/machinery/door/window/northright{ - name = "Game Room" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"aUy" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/official/do_not_question{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/security/prison) -"aUz" = ( -/obj/machinery/computer/telecomms/server{ - dir = 4; - network = "tcommsat" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/circuit, -/area/bridge) -"aUA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"aUB" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp, -/turf/open/floor/carpet/green, -/area/crew_quarters/heads/hop) -"aUC" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aUD" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/security/courtroom) -"aUE" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/security/courtroom) -"aUF" = ( -/obj/machinery/computer/bounty{ - dir = 1 - }, -/turf/open/floor/carpet/green, -/area/crew_quarters/heads/hop) -"aUG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aUH" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/central) -"aUI" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/central) -"aUJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aUK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"aUL" = ( -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/security/courtroom) -"aUM" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/disposalpipe/junction, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aUN" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aUO" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/highcap/ten_k{ - areastring = "/area/teleporter"; - dir = 4; - name = "Teleporter Room APC"; - pixel_x = 26 - }, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"aUP" = ( -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aUQ" = ( -/obj/structure/table, -/obj/item/modular_computer/laptop/preset/civilian, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aUR" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 8; - icon_state = "intact" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aUS" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"aUT" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aUU" = ( -/obj/machinery/pool/drain, -/turf/open/pool, -/area/crew_quarters/fitness/cogpool) -"aUV" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aUW" = ( -/obj/structure/pool/Lboard, -/turf/open/pool, -/area/crew_quarters/fitness/cogpool) -"aUX" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plating, -/area/maintenance/port/central) -"aUY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/port/central) -"aUZ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"aVa" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aVb" = ( -/obj/structure/pool/Rboard, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aVc" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aVd" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aVe" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/port/central) -"aVf" = ( -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aVg" = ( -/obj/machinery/computer/cryopod{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/crew_quarters/cryopod) -"aVh" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/gateway) -"aVi" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/router/public) -"aVj" = ( -/obj/machinery/vending/cola/random, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/security/courtroom) -"aVk" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/gateway) -"aVl" = ( -/obj/machinery/vending/snack/random, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/security/courtroom) -"aVm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aVn" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/router/public) -"aVo" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/router/public) -"aVp" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (Common)"; - pixel_x = 28 - }, -/obj/machinery/camera{ - c_tag = "Public Router"; - dir = 8; - pixel_y = -22 - }, -/obj/machinery/button/massdriver{ - id = "public_out"; - pixel_x = 24; - pixel_y = -6 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "pubblock"; - name = "Router Access Control"; - pixel_x = 24; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/router/public) -"aVq" = ( -/obj/structure/table, -/turf/open/floor/plasteel/white, -/area/gateway) -"aVr" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/item/storage/box/cups, -/obj/structure/sign/poster/official/here_for_your_safety{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/security/main) -"aVs" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/lounge/jazz) -"aVt" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aVu" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/dark/side, -/area/security/courtroom) -"aVv" = ( -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aVw" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/carpet/red, -/area/security/brig) -"aVx" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/lounge/jazz) -"aVy" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"aVz" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/carpet/red, -/area/security/brig) -"aVA" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/circuit/green, -/area/crew_quarters/cryopod) -"aVB" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering{ - name = "Engine Room" - }) -"aVC" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"aVD" = ( -/obj/machinery/vending/clothing, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"aVE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Dormitory Toilets" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet) -"aVF" = ( -/turf/open/floor/plasteel/white, -/area/science/circuit) -"aVG" = ( -/obj/machinery/ore_silo, -/obj/effect/turf_decal/bot_white, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/nuke_storage"; - dir = 4; - name = "Vault APC"; - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aVH" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/hallway/secondary/civilian"; - dir = 8; - name = "Civilian Wing Hallway APC"; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aVI" = ( -/obj/structure/table, -/obj/item/storage/box/zipties, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/carpet/red, -/area/security/brig) -"aVJ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/security/courtroom) -"aVK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/space/nearstation) -"aVL" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/security/courtroom) -"aVM" = ( -/obj/structure/chair/stool, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/eva) -"aVN" = ( -/obj/machinery/vending, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aVO" = ( -/obj/structure/table, -/obj/item/tape, -/obj/item/taperecorder{ - pixel_x = -4 - }, -/obj/item/radio/off, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/carpet/red, -/area/security/brig) -"aVP" = ( -/obj/structure/window/reinforced, -/obj/structure/displaycase/captain, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/captain) -"aVQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/security) -"aVR" = ( -/obj/structure/window/reinforced, -/obj/structure/filingcabinet, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/captain) -"aVS" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/port/central) -"aVT" = ( -/obj/structure/lattice, -/obj/structure/sign/warning{ - name = "\improper KEEP CLEAR: WASTE EJECTION"; - pixel_x = -32 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aVU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aVV" = ( -/obj/structure/bed, -/obj/item/bedsheet/red, -/obj/structure/cable{ - icon_state = "2-8" - }, -/mob/living/simple_animal/bot/secbot/beepsky{ - desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey, and with a sturdier reinforced chassis, too. "; - health = 45; - maxHealth = 45; - name = "Officer Beepsky" - }, -/turf/open/floor/plating, -/area/maintenance/department/security) -"aVW" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/plasteel, -/area/gateway) -"aVX" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/clothing/mask/surgical, -/obj/item/clothing/suit/apron/surgical, -/obj/item/clothing/gloves/color/latex, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"aVY" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"aVZ" = ( -/obj/machinery/computer/security/wooden_tv, -/turf/open/floor/plating, -/area/maintenance/department/security) -"aWa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/department/security) -"aWb" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/central) -"aWc" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/central) -"aWd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aWe" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/carpet/red, -/area/security/brig) -"aWf" = ( -/obj/effect/turf_decal/tile/red, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aWg" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/lawoffice) -"aWh" = ( -/obj/effect/landmark/start/lawyer, -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/lawoffice) -"aWi" = ( -/obj/machinery/cryopod{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/disposal"; - dir = 8; - name = "Cryogenics APC"; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/circuit/green, -/area/crew_quarters/cryopod) -"aWj" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/space/nearstation) -"aWk" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/modular_computer/laptop/preset/civilian, -/turf/open/floor/plasteel/dark/side, -/area/security/courtroom) -"aWl" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/photocopier, -/turf/open/floor/plasteel/dark/side, -/area/security/courtroom) -"aWm" = ( -/turf/open/floor/plasteel, -/area/gateway) -"aWn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aWo" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/cryopod) -"aWp" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/computer/gateway_control{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/gateway) -"aWq" = ( -/obj/structure/rack, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/head/hardhat/red{ - pixel_y = 6 - }, -/obj/item/clothing/mask/gas, -/obj/item/extinguisher, -/obj/item/crowbar, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aWr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Central Maintenance"; - req_one_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/hallway/primary/port/fore) -"aWs" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aWt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/maintenance/central) -"aWu" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"aWv" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aWw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aWx" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/security/detectives_office) -"aWy" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aWz" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - name = "Power Monitoring"; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/maintenance/central) -"aWA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/maintenance/central) -"aWB" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aWC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Defendent's Chair"; - req_one_access_txt = "63" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aWD" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/item/cigbutt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/router/public) -"aWE" = ( -/obj/structure/sign/warning{ - name = "\improper WARNING: MOVING MACHINERY" - }, -/turf/closed/wall/r_wall, -/area/janitor) -"aWF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/janitor) -"aWG" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/clothing/shoes/magboots, -/turf/open/floor/plasteel/checker, -/area/ai_monitored/storage/eva) -"aWH" = ( -/obj/machinery/disposal/bin{ - name = "Corpse Delivery" - }, -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"aWI" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/checker, -/area/ai_monitored/storage/eva) -"aWJ" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"aWK" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/item/storage/box/lights/mixed, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aWL" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/conveyor/auto{ - dir = 1; - id = "public" - }, -/turf/open/floor/plating, -/area/router/public) -"aWM" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aWN" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/conveyor/auto{ - id = "public" - }, -/turf/open/floor/plating, -/area/router/public) -"aWO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/ai_monitored/storage/eva) -"aWP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/checker, -/area/ai_monitored/storage/eva) -"aWQ" = ( -/obj/structure/closet/crate/rcd, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/checker, -/area/ai_monitored/storage/eva) -"aWR" = ( -/obj/structure/lattice, -/obj/structure/sign/warning{ - name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; - pixel_x = 32 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aWS" = ( -/obj/structure/table, -/obj/item/storage/box/flashes{ - pixel_x = 8 - }, -/obj/item/storage/box/handcuffs{ - pixel_x = -8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/carpet/red, -/area/security/brig) -"aWT" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/window/reinforced/spawner/west, -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/router/public"; - dir = 4; - name = "Public Router APC"; - pixel_x = 24 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/router/public) -"aWU" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/lounge/jazz) -"aWV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 - }, -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engine/engineering{ - name = "Engine Room" - }) -"aWW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"aWX" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/medical"; - dir = 8; - name = "Medical Booth APC"; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aWY" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/item/radio/intercom{ - frequency = 1359; - name = "Station Intercom (Security)"; - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aWZ" = ( -/turf/closed/wall/r_wall, -/area/ai_monitored/nuke_storage) -"aXa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"aXb" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/central) -"aXc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXd" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 9 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/central) -"aXe" = ( -/obj/machinery/bookbinder, -/turf/open/floor/wood, -/area/library) -"aXf" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/structure/table/wood, -/obj/machinery/light{ - dir = 1; - light_color = "#c1caff" - }, -/turf/open/floor/carpet, -/area/library) -"aXg" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXh" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 6 - }, -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/engine/engineering{ - name = "Engine Room" - }) -"aXi" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aXj" = ( -/obj/structure/transit_tube/station/reverse, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Transit Tube Access"; - pixel_x = 22 - }, -/obj/structure/transit_tube_pod{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/bridge) -"aXk" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXl" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXm" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"aXn" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aXo" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aXp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/reagent_dispensers/foamtank, -/turf/open/floor/plasteel, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"aXq" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aXr" = ( -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aXs" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"aXt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/securearea, -/turf/open/floor/plating, -/area/gateway) -"aXu" = ( -/turf/closed/wall, -/area/security/courtroom/jury) -"aXv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Bar" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"aXw" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/kirbyplants{ - icon_state = "plant-08" - }, -/turf/open/floor/plasteel/dark/side, -/area/security/courtroom) -"aXx" = ( -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"aXy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/ai_monitored/storage/eva) -"aXz" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/checker, -/area/ai_monitored/storage/eva) -"aXA" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/security/courtroom/jury) -"aXB" = ( -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aXC" = ( -/obj/machinery/computer/bank_machine, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aXD" = ( -/obj/effect/turf_decal/bot_white/right, -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/obj/structure/closet/crate/silvercrate, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aXE" = ( -/obj/effect/turf_decal/bot_white, -/obj/structure/closet/crate/goldcrate, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aXF" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - name = "gas to hot loop" - }, -/turf/open/floor/plasteel/dark, -/area/engine/teg_hot) -"aXG" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/security/courtroom) -"aXH" = ( -/obj/structure/sign/warning/securearea, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aXI" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aXJ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aXK" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aXL" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/paper/fluff/jobs/security/beepsky_mom, -/turf/open/floor/plating, -/area/maintenance/department/security) -"aXM" = ( -/turf/closed/wall, -/area/maintenance/department/security) -"aXN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/ai_monitored/storage/eva) -"aXO" = ( -/obj/structure/chair, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"aXP" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Pool Maintenance"; - req_one_access_txt = "12" - }, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/crew_quarters/fitness/cogpool) -"aXQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/medical{ - name = "Medical Booth" - }) -"aXR" = ( -/turf/closed/wall, -/area/security/courtroom) -"aXS" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet/royalblue, -/area/bridge) -"aXT" = ( -/obj/structure/chair/comfy/brown{ - buildstackamount = 0; - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet/royalblue, -/area/bridge) -"aXU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/checker, -/area/ai_monitored/storage/eva) -"aXV" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/assembly/timer{ - pixel_x = 6; - pixel_y = -2 - }, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/stack/cable_coil/random{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/multitool, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/checker, -/area/ai_monitored/storage/eva) -"aXW" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aXX" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aXY" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aXZ" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aYa" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"aYb" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aYc" = ( -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood, -/area/library) -"aYd" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aYe" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aYf" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/turf/open/floor/plasteel/white, -/area/gateway) -"aYg" = ( -/obj/effect/turf_decal/bot_white/right, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aYh" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/item/radio/off, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/bridge) -"aYi" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aYj" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aYk" = ( -/turf/open/floor/circuit/green, -/area/ai_monitored/nuke_storage) -"aYl" = ( -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aYm" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aYn" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/storage/box/smart_metal_foam, -/obj/item/wrench, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/radio/off, -/obj/item/assembly/prox_sensor, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aYo" = ( -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Security" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"aYp" = ( -/obj/structure/fans/tiny/invisible, -/turf/open/space/basic, -/area/space) -"aYq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/security) -"aYr" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access_txt = "1" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/security) -"aYs" = ( -/obj/structure/rack, -/obj/item/tank/jetpack/carbondioxide, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aYt" = ( -/turf/open/floor/plating, -/area/maintenance/department/security) -"aYu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/checker, -/area/ai_monitored/storage/eva) -"aYv" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/item/analyzer, -/obj/item/storage/toolbox/electrical, -/obj/item/gps, -/turf/open/floor/plasteel/checker, -/area/ai_monitored/storage/eva) -"aYw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aYx" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aYy" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/item/kirbyplants{ - icon_state = "plant-22" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark/side, -/area/bridge) -"aYz" = ( -/obj/effect/turf_decal/bot_white, -/obj/effect/landmark/start/ai/secondary, -/obj/machinery/camera{ - c_tag = "Vault"; - dir = 4; - network = list("vault") - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aYA" = ( -/obj/machinery/nuclearbomb/selfdestruct, -/obj/effect/turf_decal/box/white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aYB" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aYC" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/security/detectives_office"; - dir = 1; - name = "Detective's Office APC"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"aYD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aYE" = ( -/obj/structure/closet/crate/trashcart, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/junction, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aYF" = ( -/obj/structure/table/wood, -/obj/item/storage/box/evidence, -/obj/item/hand_labeler, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"aYG" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"aYH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aYI" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/photocopier, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/obj/item/paper/fluff/cogstation/secsolars, -/turf/open/floor/plasteel, -/area/security/main) -"aYJ" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aYK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Civilian Wing Hallway" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"aYL" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"aYM" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aYN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/checker, -/area/ai_monitored/storage/eva) -"aYO" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"aYP" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aYQ" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aYR" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) -"aYS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/security/brig) -"aYT" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/customs) -"aYU" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space/basic, -/area/space/nearstation) -"aYV" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"aYW" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/northright{ - name = "Customs Desk"; - req_access_txt = "57" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "HoPFore"; - name = "HoP Fore Desk Shutters" - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"aYX" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/flashlight/lamp, -/obj/structure/window/reinforced/spawner/north, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "HoPFore"; - name = "HoP Fore Desk Shutters" - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"aYY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Port Central Maintenance"; - req_one_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/security/courtroom) -"aYZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"aZa" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aZb" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/eva) -"aZc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aZd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "E.V.A. Maintenance"; - req_access_txt = "18" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"aZe" = ( -/obj/structure/sign/warning/biohazard{ - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"aZf" = ( -/obj/effect/turf_decal/bot_white/left, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aZg" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"aZh" = ( -/obj/structure/closet/crate, -/obj/machinery/light, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/window/reinforced/spawner/east, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/router/public) -"aZi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"aZj" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/caution{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/caution{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/caution{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/caution{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/extinguisher{ - pixel_x = -4; - pixel_y = 4 - }, -/obj/item/extinguisher{ - pixel_x = -4; - pixel_y = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aZk" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/mass_driver{ - id = "public_out"; - name = "Router Driver" - }, -/turf/open/floor/plating, -/area/router/public) -"aZl" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/window/reinforced/spawner/west, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/router/public) -"aZm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/lounge/jazz) -"aZn" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera/motion{ - c_tag = "EVA"; - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/plasteel/checker, -/area/ai_monitored/storage/eva) -"aZo" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"aZp" = ( -/obj/structure/lattice, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space/basic, -/area/space/nearstation) -"aZq" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/bridge) -"aZr" = ( -/obj/structure/filingcabinet, -/obj/item/folder/documents, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aZs" = ( -/obj/structure/safe, -/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/lazarus_injector, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/item/stack/spacecash/c1000, -/obj/effect/turf_decal/bot_white/left, -/obj/item/stack/sheet/mineral/diamond, -/obj/item/clothing/under/costume/soviet, -/obj/item/clothing/suit/armor/vest/russian_coat, -/obj/item/clothing/head/helmet/rus_helmet, -/obj/machinery/light, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aZt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"aZu" = ( -/obj/machinery/blackbox_recorder, -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"aZv" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"aZw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/weldingtool, -/obj/item/flashlight, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aZx" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/checker, -/area/ai_monitored/storage/eva) -"aZy" = ( -/turf/closed/wall, -/area/lawoffice) -"aZz" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"aZA" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"aZB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"aZC" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"aZD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/central"; - dir = 1; - name = "Chapel Maintenance APC"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"aZE" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/hallway/primary/central"; - dir = 8; - name = "Central Primary Hallway APC"; - pixel_x = -26 - }, -/turf/open/floor/plating, -/area/maintenance/port/central) -"aZF" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aZG" = ( -/obj/structure/lattice, -/obj/structure/sign/warning{ - name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; - pixel_y = 32 - }, -/turf/open/space/basic, -/area/space/nearstation) -"aZH" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aZI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/landmark/start/lawyer, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"aZJ" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"aZK" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/storage/toolbox/electrical, -/obj/item/weldingtool, -/obj/item/multitool{ - pixel_x = -6; - pixel_y = -2 - }, -/obj/item/assembly/signaler{ - pixel_x = 6; - pixel_y = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"aZL" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/poster/official/cohiba_robusto_ad{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"aZM" = ( -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/carpet, -/area/security/courtroom) -"aZN" = ( -/obj/machinery/computer/station_alert{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"aZO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/security) -"aZP" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/item/aiModule/reset/purge{ - pixel_y = 6 - }, -/obj/item/aiModule/reset{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/aiModule/core/full/custom{ - pixel_x = -4 - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"aZQ" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/plasteel{ - pixel_x = 3; - pixel_y = -3 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"aZR" = ( -/turf/open/floor/plasteel/dark/corner, -/area/ai_monitored/storage/eva) -"aZS" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner, -/area/ai_monitored/storage/eva) -"aZT" = ( -/obj/structure/closet/secure_closet/hos, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/item/storage/box/deputy, -/obj/item/paper/guides/cogstation/letter_hos, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"aZU" = ( -/obj/structure/chair, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom/jury) -"aZV" = ( -/obj/structure/chair, -/turf/open/floor/plasteel/dark, -/area/security/courtroom/jury) -"aZW" = ( -/obj/structure/chair, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom/jury) -"aZX" = ( -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/security/courtroom/jury) -"aZY" = ( -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/security/courtroom/jury) -"aZZ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/corner, -/area/ai_monitored/storage/eva) -"baa" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel/dark, -/area/security/courtroom/jury) -"bab" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/space/basic, -/area/space/nearstation) -"bac" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/item/stack/rods/fifty, -/obj/item/stack/rods/fifty, -/obj/item/storage/toolbox/emergency, -/obj/item/stack/sheet/rglass, -/obj/item/stack/sheet/rglass, -/turf/open/floor/plasteel/checker, -/area/ai_monitored/storage/eva) -"bad" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/stripes/white/full, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"bae" = ( -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"baf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Central Plaza - Starboard"; - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bag" = ( -/obj/machinery/suit_storage_unit/standard_unit, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/storage/belt/utility, -/turf/open/floor/plasteel/checker, -/area/ai_monitored/storage/eva) -"bah" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plating, -/area/lawoffice) -"bai" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baj" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/beaker/waterbottle, -/turf/open/floor/plasteel/dark, -/area/security/courtroom/jury) -"bak" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/lawoffice) -"bal" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"bam" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/turf/open/space/basic, -/area/space/nearstation) -"ban" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"bao" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/stripes/white/full, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) -"bap" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/gloves/color/black, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/obj/item/clothing/suit/hazardvest, -/turf/open/floor/plasteel, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"baq" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bar" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/carpet, -/area/crew_quarters/bar) -"bas" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/bar) -"bat" = ( -/obj/structure/chair/stool/bar, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/carpet, -/area/crew_quarters/bar) -"bau" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bav" = ( -/obj/structure/chair/sofa/right, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/item/clipboard, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/lawoffice) -"baw" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/lawoffice) -"bax" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"bay" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"baz" = ( -/obj/machinery/photocopier, -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"baA" = ( -/obj/structure/filingcabinet/chestdrawer, -/obj/item/folder/blue, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"baB" = ( -/obj/structure/rack, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/head/hardhat/red{ - pixel_y = 6 - }, -/obj/item/clothing/mask/gas, -/obj/item/tank/internals/air, -/obj/item/extinguisher, -/obj/item/crowbar, -/turf/open/floor/plating, -/area/maintenance/department/security) -"baC" = ( -/obj/machinery/vending/cart, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"baD" = ( -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"baE" = ( -/obj/structure/bookcase/random/reference, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"baF" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/effect/landmark/start/head_of_personnel, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"baG" = ( -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"baH" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/tank/internals/air, -/obj/item/crowbar, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/security) -"baI" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baK" = ( -/obj/structure/table/reinforced, -/obj/machinery/light, -/obj/item/kitchen/fork, -/obj/item/reagent_containers/food/snacks/pastatomato, -/obj/machinery/newscaster/security_unit{ - pixel_y = -30 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"baL" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"baM" = ( -/obj/structure/rack, -/obj/item/clothing/mask/gas, -/obj/item/tank/internals/air, -/obj/item/crowbar/large, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/department/security) -"baN" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"baO" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"baP" = ( -/obj/structure/closet/secure_closet/captains, -/obj/item/reagent_containers/food/drinks/flask/gold, -/obj/item/clothing/under/rank/captain/suit, -/obj/item/clothing/under/rank/captain/suit/skirt, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/item/clothing/head/centhat{ - name = "\improper green captain's hat" - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/captain) -"baQ" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"baR" = ( -/obj/structure/chair/sofa/left, -/obj/effect/landmark/start/lawyer, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/lawoffice) -"baS" = ( -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/lawoffice) -"baT" = ( -/obj/machinery/iv_drip, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"baU" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"baV" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"baW" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/aiModule/core/full/asimov{ - pixel_x = 2; - pixel_y = 10 - }, -/obj/effect/spawner/lootdrop/aimodule_neutral{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/effect/spawner/lootdrop/aimodule_harmless{ - pixel_y = 6 - }, -/obj/item/aiModule/core/freeformcore{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/aiModule/supplied/freeform{ - pixel_x = -2 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"baX" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/structure/displaycase, -/turf/open/floor/wood, -/area/library) -"baY" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"baZ" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bba" = ( -/obj/effect/landmark/start/assistant, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/circuit/green, -/area/crew_quarters/cryopod) -"bbb" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/carpet/royalblue, -/area/bridge) -"bbc" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet/royalblue, -/area/bridge) -"bbd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bbe" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bbf" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hop) -"bbg" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/courtroom) -"bbh" = ( -/turf/closed/wall, -/area/hallway/primary/aft) -"bbi" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"bbj" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall/r_wall, -/area/teleporter) -"bbk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Telecomms Admin"; - departmentType = 5; - name = "Telecomms RC"; - pixel_y = 30 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bbl" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bbm" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/lawyer, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"bbn" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bbo" = ( -/obj/structure/closet/crate, -/obj/item/book/manual/wiki/security_space_law, -/obj/item/book/manual/wiki/security_space_law, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"bbp" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/carpet, -/area/security/courtroom) -"bbq" = ( -/obj/effect/landmark/start/librarian, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/library) -"bbr" = ( -/obj/structure/filingcabinet/employment, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"bbs" = ( -/obj/structure/table/wood, -/obj/item/camera, -/obj/item/pen/red, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"bbt" = ( -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bbu" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plating, -/area/space/nearstation) -"bbv" = ( -/turf/open/space, -/area/space) -"bbw" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bbx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bby" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bbz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bbA" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bbB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bbC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bbD" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bbE" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bbF" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bbG" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bbH" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"bbI" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bbJ" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bbK" = ( -/obj/machinery/light, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bbL" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bbM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"bbN" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bbO" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bbP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "HoP Office Maintenance"; - req_access_txt = "57" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/security/checkpoint/customs) -"bbQ" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/fitness/cogpool"; - dir = 4; - name = "Pool APC"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/central) -"bbR" = ( -/obj/structure/closet/crate/hydroponics, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/item/reagent_containers/food/snacks/grown/wheat, -/obj/item/reagent_containers/food/snacks/grown/corn, -/obj/item/reagent_containers/food/snacks/grown/cocoapod, -/obj/item/reagent_containers/food/snacks/grown/chili, -/obj/item/reagent_containers/food/snacks/grown/soybeans, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/cherries, -/obj/structure/sign/poster/contraband/have_a_puff{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bbS" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/gateway) -"bbT" = ( -/turf/closed/wall/r_wall, -/area/quartermaster/sorting) -"bbU" = ( -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bbV" = ( -/turf/closed/wall/r_wall, -/area/quartermaster/warehouse) -"bbW" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/noticeboard{ - dir = 4; - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bbX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bbY" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bbZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bca" = ( -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bcb" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bcc" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"bcd" = ( -/obj/item/kirbyplants{ - icon_state = "plant-14" - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"bce" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor/auto{ - dir = 1; - id = "public" - }, -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor/preopen{ - id = "cargoblock"; - name = "Public Router" - }, -/turf/open/floor/plating, -/area/router/public) -"bcf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bcg" = ( -/obj/structure/plasticflaps, -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor/preopen{ - id = "cargoblock"; - name = "Public Router" - }, -/turf/open/floor/plating, -/area/router/public) -"bch" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"bci" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bcj" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor/auto{ - id = "cargo" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bck" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bcl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bcm" = ( -/obj/machinery/computer/cargo/request, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bcn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bco" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/morgue{ - name = "Confession Booth (Chaplain)"; - req_access_txt = "22" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"bcp" = ( -/obj/machinery/libraryscanner, -/obj/machinery/light, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/library) -"bcq" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"bcr" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom/jury) -"bcs" = ( -/obj/machinery/pdapainter, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"bct" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom/jury) -"bcu" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/camera{ - c_tag = "Aft Maintenance - Air Hookup" - }, -/turf/open/floor/plating, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"bcv" = ( -/obj/machinery/atmospherics/components/binary/valve/digital/on, -/turf/open/floor/plating, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"bcw" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/mixing) -"bcx" = ( -/obj/structure/chair/office/dark, -/obj/effect/landmark/start/head_of_personnel, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"bcy" = ( -/turf/closed/wall/r_wall, -/area/science/mixing) -"bcz" = ( -/obj/machinery/computer/card{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"bcA" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bcB" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/extinguisher, -/turf/open/floor/plasteel, -/area/gateway) -"bcC" = ( -/obj/machinery/power/apc{ - name = "Research Division Storage APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/gateway) -"bcD" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/plating, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"bcE" = ( -/obj/machinery/atmospherics/components/binary/valve/digital/on{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"bcF" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"bcG" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bcH" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark/side, -/area/security/courtroom) -"bcI" = ( -/turf/closed/wall/r_wall, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"bcJ" = ( -/obj/machinery/button/door{ - id = "HoPAft"; - name = "Aft Shutters"; - pixel_x = -24; - pixel_y = -24; - req_access_txt = "57" - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"bcK" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/public/glass{ - name = "Cryogenics" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/circuit/green, -/area/crew_quarters/cryopod) -"bcL" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom/jury) -"bcM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"bcN" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=bridge2"; - location = "court" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"bcO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"bcP" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom/jury) -"bcQ" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"bcR" = ( -/turf/closed/wall, -/area/hallway/primary/central) -"bcS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Courtroom" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/security/courtroom) -"bcT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"bcU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Jury Room Maintainance"; - req_one_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/security/courtroom/jury) -"bcV" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bcW" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/requests_console{ - department = "Bar"; - departmentType = 2; - name = "Bar RC"; - pixel_y = -30 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bcX" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/hallway/primary/central) -"bcY" = ( -/obj/machinery/power/smes, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bcZ" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bda" = ( -/obj/structure/table, -/obj/item/hand_tele, -/obj/machinery/camera{ - c_tag = "Teleporter Room"; - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"bdb" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/central) -"bdc" = ( -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"bdd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Pool"; - dir = 1 - }, -/obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/toy/poolnoodle/red, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"bde" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/mixing) -"bdf" = ( -/turf/open/floor/plasteel, -/area/science/mixing) -"bdg" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bdh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/toy/poolnoodle/blue, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"bdi" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bdj" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/noticeboard{ - pixel_y = 28 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/primary/central) -"bdk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"bdl" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/closet/athletic_mixed, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/toy/poolnoodle/yellow, -/turf/open/floor/plasteel/white, -/area/crew_quarters/fitness/cogpool) -"bdm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"bdn" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"bdo" = ( -/obj/structure/sign/warning/biohazard{ - pixel_x = -32 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 17 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"bdp" = ( -/obj/structure/chair/stool, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"bdq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"bdr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/primary/central) -"bds" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/chaplain, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"bdt" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bdu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"bdv" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bdw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/spawner/structure/window/reinforced/tinted, -/turf/open/floor/plating, -/area/chapel/office) -"bdx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"bdy" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/hallway/primary/central) -"bdz" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bdA" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/chapel) -"bdB" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, -/obj/item/toy/eightball, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"bdC" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bdD" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bdE" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 8; - icon_state = "intact" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bdF" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#cee5d2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bdG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bdH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bdI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bdJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Telecommunications Control Room Maintenance"; - req_access_txt = "61" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/bridge) -"bdK" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bdL" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"bdM" = ( -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bdN" = ( -/obj/machinery/vending/snack/random, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Pool External Maintenance"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/crew_quarters/fitness/cogpool) -"bdP" = ( -/turf/closed/wall/mineral/wood, -/area/crew_quarters/fitness/cogpool) -"bdQ" = ( -/obj/machinery/door/airlock/command{ - name = "Bridge"; - req_access_txt = "19" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bdR" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 10 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bdS" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/bridge) -"bdT" = ( -/obj/effect/turf_decal/bot, -/obj/structure/table/reinforced, -/obj/item/storage/toolbox/emergency, -/obj/item/hand_labeler, -/obj/item/hand_labeler, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bdU" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bdV" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bdW" = ( -/obj/structure/mineral_door/woodrustic{ - name = "Sauna" - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness/cogpool) -"bdX" = ( -/obj/structure/table/wood, -/obj/item/storage/box/donkpockets, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"bdY" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/mineral/wood, -/area/crew_quarters/fitness/cogpool) -"bdZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/quartermaster/sorting) -"bea" = ( -/obj/structure/disposalpipe/junction, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/sign/poster/official/report_crimes{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"beb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/security/courtroom/jury) -"bec" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bed" = ( -/obj/machinery/suit_storage_unit/rd, -/turf/open/floor/plasteel, -/area/science/mixing) -"bee" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bef" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"beg" = ( -/obj/effect/turf_decal/bot_white, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"beh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bei" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"bej" = ( -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bek" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/science/mixing) -"bel" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bem" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - name = "hot loop to generator" - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"ben" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"beo" = ( -/turf/open/floor/plasteel/white, -/area/gateway) -"bep" = ( -/obj/structure/table/wood, -/obj/item/tape, -/obj/item/taperecorder{ - pixel_x = -4 - }, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/heads/hor"; - dir = 8; - name = "Research Director's Office APC"; - pixel_x = -24 - }, -/obj/item/reagent_containers/food/snacks/muffin/berry, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"beq" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - name = "generator to cold loop" - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"ber" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bes" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"bet" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"beu" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"bev" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (Common)"; - pixel_x = 28 - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"bew" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/port/central) -"bex" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"bey" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall/rust, -/area/space/nearstation) -"bez" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/office) -"beA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall, -/area/chapel/main) -"beB" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"beC" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"beD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"beE" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/fans/tiny, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/maintenance/disposal) -"beF" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"beG" = ( -/obj/structure/lattice, -/obj/machinery/camera{ - c_tag = "Routing Depot - Fore Exterior"; - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"beH" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"beI" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4 - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"beJ" = ( -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"beK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"beL" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"beM" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"beN" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"beO" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom/jury) -"beP" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/security/courtroom/jury) -"beQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall, -/area/security/detectives_office) -"beR" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"beS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/dark, -/area/security/courtroom/jury) -"beT" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"beU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"beV" = ( -/obj/machinery/button/door{ - id = "executionspaceblast"; - name = "Vent to Space"; - pixel_x = 25; - pixel_y = -5; - req_access_txt = "7" - }, -/obj/machinery/button/ignition{ - id = "executionburn"; - pixel_x = 24; - pixel_y = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"beW" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"beX" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (Common)"; - pixel_x = 28 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"beY" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/noticeboard{ - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"beZ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bfa" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bfb" = ( -/obj/machinery/computer/card/minor/qm, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/keycard_auth{ - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bfc" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bfd" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfe" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bff" = ( -/turf/closed/wall/r_wall, -/area/quartermaster/qm) -"bfg" = ( -/obj/structure/closet, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom/jury) -"bfh" = ( -/turf/closed/wall/r_wall, -/area/science/server{ - name = "Computer Core" - }) -"bfi" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfj" = ( -/mob/living/simple_animal/butterfly, -/turf/open/floor/plating/asteroid, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"bfk" = ( -/mob/living/simple_animal/kiwi, -/turf/open/floor/plating/asteroid, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"bfl" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bfm" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/security) -"bfn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - name = "cold loop to space" - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"bfo" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"bfp" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber{ - dir = 4 - }, -/obj/machinery/sparker/toxmix{ - pixel_x = 25 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"bfq" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 5; - id = "laborcamp_home"; - name = "fore bay 1"; - roundstart_template = /datum/map_template/shuttle/labour/cog; - width = 9 - }, -/turf/open/space/basic, -/area/space) -"bfr" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#c1caff" - }, -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"bfs" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "QM #1" - }, -/mob/living/simple_animal/bot/mulebot{ - beacon_freq = 1400; - home_destination = "QM #1"; - suffix = "#1" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bft" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/hallway/primary/central) -"bfu" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/gateway) -"bfv" = ( -/turf/open/floor/plating, -/area/crew_quarters/fitness/cogpool) -"bfw" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (Common)"; - pixel_x = 28 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bfx" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/gateway) -"bfy" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/components/unary/thermomachine/heater/on, -/turf/open/floor/plating, -/area/crew_quarters/fitness/cogpool) -"bfz" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"bfA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Bridge Access"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bfB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Chapel Morgue"; - req_access_txt = "22;27" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"bfC" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/qm) -"bfD" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bfE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 5; - id = "mail" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bfF" = ( -/obj/machinery/space_heater, -/obj/structure/sign/poster/official/no_erp{ - pixel_y = 32 - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness/cogpool) -"bfG" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "EngiCargoConveyer" - }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bfH" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/machinery/button/crematorium{ - id = "foo"; - pixel_x = 8; - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"bfI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/highcap/fifteen_k{ - areastring = "/area/engine/storage_shared"; - dir = 1; - name = "Electrical Substation APC"; - pixel_y = 26 - }, -/turf/open/floor/plating, -/area/engine/storage_shared{ - name = "Electrical Substation" - }) -"bfJ" = ( -/turf/open/floor/wood, -/area/crew_quarters/fitness/cogpool) -"bfK" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/candle_box{ - pixel_x = -11; - pixel_y = 5 - }, -/obj/item/reagent_containers/food/drinks/bottle/holywater, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/item/paper/fluff/cogstation/letter_chap{ - pixel_x = 10; - pixel_y = 2 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/office) -"bfL" = ( -/obj/structure/table/wood, -/obj/item/modular_computer/laptop/preset/civilian, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/office) -"bfM" = ( -/obj/machinery/light/small{ - dir = 4; - light_color = "#d8b1b1" - }, -/obj/structure/bedsheetbin/towel, -/turf/open/floor/wood, -/area/crew_quarters/fitness/cogpool) -"bfN" = ( -/obj/effect/decal/cleanable/cobweb, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bfO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Jazz Lounge" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/lounge/jazz) -"bfP" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bfQ" = ( -/obj/machinery/light/small, -/obj/item/candle, -/obj/item/trash/candle, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"bfR" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bfS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"bfT" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/chapel/office) -"bfU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/conveyor{ - dir = 4; - id = "EngiCargoConveyer" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bfV" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) -"bfW" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bfX" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = 26 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bfY" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=4"; - dir = 4; - freq = 1400; - location = "QM #2" - }, -/mob/living/simple_animal/bot/mulebot{ - home_destination = "QM #2"; - suffix = "#2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bfZ" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bga" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bgb" = ( -/obj/structure/disposalpipe/sorting/mail{ - sortType = 30 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"bgc" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/sign/directions/command{ - dir = 8; - pixel_x = -32; - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 8 - }, -/area/hallway/primary/central) -"bgd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/hallway/primary/central) -"bge" = ( -/turf/closed/wall/r_wall, -/area/storage/primary) -"bgf" = ( -/turf/closed/wall, -/area/quartermaster/warehouse) -"bgg" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bgh" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/violet/hidden{ - dir = 6 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bgi" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space) -"bgj" = ( -/obj/structure/table, -/obj/item/weldingtool/mini, -/obj/item/light/tube, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bgk" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "mail" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bgl" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/multitool, -/turf/open/floor/plasteel, -/area/storage/primary) -"bgm" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/security/courtroom/jury) -"bgn" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"bgo" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/chapel/main) -"bgp" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"bgq" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bgr" = ( -/obj/structure/table/wood, -/obj/item/clothing/head/helmet/skull, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"bgs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bgt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bgu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgv" = ( -/obj/effect/landmark/xeno_spawn, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bgw" = ( -/turf/open/floor/engine, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"bgx" = ( -/obj/structure/table/glass, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgy" = ( -/obj/structure/closet, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/security/courtroom/jury"; - dir = 4; - name = "Jury Room APC"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/dark, -/area/security/courtroom/jury) -"bgz" = ( -/obj/structure/chair, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgA" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgB" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/lightreplacer, -/obj/item/lightreplacer, -/obj/item/stack/rods/fifty, -/obj/item/stack/rods/fifty, -/turf/open/floor/plasteel, -/area/storage/primary) -"bgC" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#c1caff" - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bgD" = ( -/obj/machinery/light{ - dir = 1; - light_color = "#c1caff" - }, -/obj/item/target, -/obj/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bgE" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Port Central Maintenance"; - req_one_access_txt = "12" - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bgG" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/hallway/primary/central) -"bgH" = ( -/obj/machinery/pipedispenser, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bgI" = ( -/obj/machinery/pipedispenser/disposal, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bgJ" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/crew_quarters/fitness/cogpool) -"bgK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bgL" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bgM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"bgN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Port Central Maintenance"; - req_one_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bgO" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/wrench, -/obj/item/pipe_dispenser, -/mob/living/simple_animal/sloth/paperwork, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bgP" = ( -/obj/item/analyzer, -/obj/item/caution, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bgQ" = ( -/turf/closed/wall, -/area/quartermaster/qm) -"bgR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/closed/wall/mineral/wood, -/area/crew_quarters/fitness/cogpool) -"bgS" = ( -/obj/machinery/computer/bounty, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bgT" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bgU" = ( -/obj/machinery/computer/cargo, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bgV" = ( -/turf/closed/wall/r_wall, -/area/quartermaster/storage) -"bgW" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/hor) -"bgX" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"bgY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/status_display, -/turf/closed/wall/r_wall, -/area/hallway/primary/central) -"bgZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bha" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness/cogpool) -"bhb" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bhc" = ( -/obj/structure/chair/stool, -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness/cogpool) -"bhd" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bhe" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/chapel) -"bhf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/office) -"bhg" = ( -/obj/structure/chair/stool, -/obj/machinery/camera{ - c_tag = "Pool - Sauna"; - dir = 8; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness/cogpool) -"bhh" = ( -/obj/machinery/status_display, -/turf/closed/wall/r_wall, -/area/security/courtroom) -"bhi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/clothing/head/cone, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/chapel) -"bhj" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Kitchen"; - req_access_txt = "28" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bhk" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bhl" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall/mineral/wood, -/area/crew_quarters/fitness/cogpool) -"bhm" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"bhn" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"bho" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/turf/open/floor/plasteel, -/area/storage/primary) -"bhp" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bhq" = ( -/obj/structure/chair/sofa/right, -/obj/item/instrument/recorder, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/lounge/jazz) -"bhr" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bhs" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"bht" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"bhu" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/recharge_station, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bhv" = ( -/obj/structure/chair/sofa/left, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/lounge/jazz) -"bhw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/poster/contraband/cc64k_ad{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/chapel) -"bhx" = ( -/obj/machinery/vending/coffee, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/wood, -/area/medical/medbay/lobby) -"bhy" = ( -/obj/structure/plasticflaps, -/obj/structure/fans/tiny, -/obj/machinery/conveyor/auto{ - id = "sec" - }, -/obj/machinery/door/poddoor{ - name = "Security Router" - }, -/turf/open/floor/plating, -/area/router/sec) -"bhz" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"bhA" = ( -/obj/item/stack/cable_coil/red, -/obj/item/multitool, -/obj/item/wrench, -/obj/item/stack/sheet/metal/five{ - pixel_x = 6; - pixel_y = -6 - }, -/obj/item/paper/fluff/cogstation/letter_arrd, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bhB" = ( -/obj/structure/table/wood, -/obj/item/stack/packageWrap, -/obj/item/paper/fluff/cogstation/bsrb, -/obj/item/paper/fluff/cogstation/survey{ - pixel_x = -4; - pixel_y = 2 - }, -/turf/open/floor/carpet/royalblue, -/area/bridge) -"bhC" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/chapel) -"bhD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Chapel Air Hookup"; - req_one_access_txt = "12;22" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bhE" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bhF" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bhG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/maintenance/department/chapel) -"bhH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/maintenance/department/chapel) -"bhI" = ( -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"bhJ" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#cee5d2" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bhK" = ( -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bhL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Waste Disposal"; - req_one_access_txt = "12;50" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bhM" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bhN" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/item/kirbyplants/dead, -/turf/open/floor/plasteel, -/area/security/main) -"bhO" = ( -/obj/structure/chair/sofa/right, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/lounge/jazz) -"bhP" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bhQ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bhR" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21"; - pixel_y = 3 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"bhS" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Port Docking Bay" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bhT" = ( -/obj/structure/sign/departments/engineering, -/turf/closed/wall, -/area/hallway/primary/aft) -"bhU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/janitor) -"bhV" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen, -/obj/item/pen/blue{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pen/red{ - pixel_x = -4; - pixel_y = -4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"bhW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"bhX" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bhY" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bhZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bia" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bib" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bic" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (Common)"; - pixel_x = -28 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bid" = ( -/obj/structure/chair/sofa/left, -/mob/living/simple_animal/pet/cat/Proc, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/lounge/jazz) -"bie" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bif" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"big" = ( -/turf/closed/wall, -/area/science/circuit) -"bih" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/conveyor{ - dir = 1; - id = "mail" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bii" = ( -/obj/structure/table/glass, -/obj/item/storage/box/matches, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bij" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bik" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"bil" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 6; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bim" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/massdriver{ - id = "router_in"; - name = "mass driver button (Router)"; - pixel_x = 24; - pixel_y = -8 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bin" = ( -/obj/machinery/computer/mecha{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bio" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bip" = ( -/obj/effect/landmark/start/quartermaster, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"biq" = ( -/obj/structure/closet/secure_closet/hop, -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/obj/item/clothing/under/rank/civilian/head_of_personnel/suit, -/obj/item/clothing/under/rank/civilian/head_of_personnel/suit/skirt{ - name = "head of personnel's suitskirt" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) -"bir" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bis" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bit" = ( -/obj/machinery/light, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"biu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"biv" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"biw" = ( -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/button/door{ - id = "QMLoadDoor"; - layer = 4; - name = "Cargo Loading Doors"; - pixel_x = 24; - pixel_y = 6 - }, -/obj/machinery/button/door{ - id = "QMUnloadDoor"; - layer = 4; - name = "Cargo Unloading Doors"; - pixel_x = 24; - pixel_y = -6 - }, -/obj/machinery/camera{ - c_tag = "Supply - Cargo Bay"; - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bix" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Courtroom" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"biy" = ( -/obj/machinery/vending/clothing, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"biz" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"biA" = ( -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/hor) -"biB" = ( -/obj/structure/table/wood, -/obj/machinery/computer/security/telescreen/rd, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/hor) -"biC" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"biD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"biE" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"biF" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medical)"; - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"biG" = ( -/obj/structure/displaycase/labcage, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/machinery/camera{ - c_tag = "Research Director's Office - Starboard"; - network = list("ss13","rd") - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/hor) -"biH" = ( -/obj/machinery/light/small, -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plating, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"biI" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/item/kirbyplants{ - icon_state = "plant-20"; - pixel_y = 3 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"biJ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"biK" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/science/mixing) -"biL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/turf/closed/wall, -/area/crew_quarters/heads/chief) -"biM" = ( -/obj/machinery/vending/assist, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/official/foam_force_ad{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"biN" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "recycler" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"biO" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"biP" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/turf/open/floor/plasteel, -/area/gateway) -"biQ" = ( -/turf/closed/wall, -/area/crew_quarters/heads/chief) -"biR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "CEPrivacy"; - name = "CE Privacy Shutters" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"biS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"biT" = ( -/obj/machinery/pipedispenser, -/turf/open/floor/plasteel, -/area/science/mixing) -"biU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/aft) -"biV" = ( -/turf/closed/wall, -/area/storage/primary) -"biW" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"biX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"biY" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"biZ" = ( -/turf/closed/wall/r_wall, -/area/quartermaster/office) -"bja" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bjb" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/wrench, -/obj/item/t_scanner, -/turf/open/floor/plasteel, -/area/storage/primary) -"bjc" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/stack/sheet/plasteel/twenty, -/turf/open/floor/plasteel, -/area/storage/primary) -"bjd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bje" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjf" = ( -/obj/machinery/pipedispenser/disposal/transit_tube, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bjg" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "E.V.A. Maintenance"; - req_one_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bji" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjj" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"bjl" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/closed/wall/r_wall, -/area/quartermaster/office) -"bjm" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bjn" = ( -/turf/closed/wall/r_wall, -/area/security/checkpoint/supply) -"bjo" = ( -/obj/machinery/rnd/production/techfab/department/cargo, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bjp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"bjq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/conveyor{ - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bjr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bjs" = ( -/obj/machinery/computer/robotics{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bjt" = ( -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bju" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/item/radio/intercom{ - frequency = 1359; - name = "Station Intercom (Security)"; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bjv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/security/courtroom/jury) -"bjw" = ( -/obj/item/storage/secure/safe{ - pixel_x = 4; - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"bjx" = ( -/obj/structure/table/optable, -/obj/effect/turf_decal/bot, -/obj/item/defibrillator/loaded, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bjy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bjz" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bjA" = ( -/obj/machinery/camera{ - c_tag = "EVA Maintenace - Fore"; - network = list("ss13","rd") - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"bjB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/security/brig) -"bjC" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Jury Room" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/courtroom/jury) -"bjD" = ( -/turf/closed/wall/r_wall, -/area/security/courtroom/jury) -"bjE" = ( -/obj/structure/table, -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/obj/item/cigbutt/cigarbutt{ - pixel_x = 5; - pixel_y = -1 - }, -/obj/item/phone{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics - Control Room" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/paper/guides/cogstation/letter_atmos, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/engine/atmos) -"bjF" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/aft"; - dir = 8; - name = "Head of Personnel APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable, -/turf/open/floor/carpet/green, -/area/crew_quarters/heads/hop) -"bjG" = ( -/obj/structure/rack, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjH" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"bjI" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bjJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bjK" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/turf/open/floor/plasteel, -/area/storage/primary) -"bjL" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/fragile, -/obj/item/clothing/head/helmet/space/fragile, -/obj/item/tank/internals/air, -/obj/item/flashlight, -/obj/item/reagent_containers/spray/cleaner, -/obj/machinery/camera{ - c_tag = "Pool Maintenance"; - dir = 8; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/crew_quarters/fitness/cogpool) -"bjM" = ( -/obj/machinery/door/airlock/public/glass{ - name = "Atmospherics Storage"; - req_one_access_txt = "24;31" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bjN" = ( -/obj/machinery/vending/autodrobe, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bjO" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/item/instrument/piano_synth, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/lounge/jazz) -"bjP" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bjQ" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/assistant/override, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bjR" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjS" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/bot, -/obj/structure/sign/poster/official/cohiba_robusto_ad{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bjT" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"bjU" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjV" = ( -/obj/structure/closet{ - name = "Evidence Closet 5" - }, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bjW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bjX" = ( -/obj/structure/rack, -/obj/machinery/button/door{ - id = "marketdoor"; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bjY" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/lounge/jazz) -"bjZ" = ( -/obj/structure/window/reinforced, -/obj/machinery/shower{ - name = "emergency shower"; - pixel_y = 12 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/westright{ - name = "Emergency Shower" - }, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plasteel, -/area/storage/primary) -"bka" = ( -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/lounge/jazz) -"bkb" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/machinery/conveyor{ - dir = 9; - id = "mail" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bkc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light, -/obj/machinery/conveyor_switch/oneway{ - id = "DeliveryConveyer" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bkd" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 8; - id = "mail" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bke" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=sec1"; - location = "bridge2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bkf" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"bkg" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/mineral/stacking_unit_console{ - machinedir = 2 - }, -/turf/closed/wall, -/area/maintenance/disposal) -"bkh" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bki" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"bkj" = ( -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment, -/obj/machinery/conveyor_switch/oneway{ - id = "mail" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bkk" = ( -/obj/machinery/autolathe, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bkl" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/fragile, -/obj/item/clothing/head/helmet/space/fragile, -/obj/item/tank/internals/air, -/obj/item/flashlight, -/obj/item/storage/belt/utility, -/obj/item/extinguisher, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bkm" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Supply - Delivery Office Fore"; - network = list("ss13","rd") - }, -/obj/structure/closet/emcloset, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bkn" = ( -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bko" = ( -/turf/open/floor/plasteel, -/area/science/circuit) -"bkp" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "QMLoad" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bkq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/conveyor/inverted{ - dir = 9; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bkr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/machinery/door/poddoor{ - id = "QMLoadDoor"; - name = "Cargo Loading Door" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bks" = ( -/obj/structure/plasticflaps, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bkt" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "QMLoad" - }, -/obj/machinery/door/poddoor{ - id = "QMLoadDoor"; - name = "Cargo Loading Door" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bku" = ( -/obj/structure/closet, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bkv" = ( -/turf/open/floor/plasteel/dark, -/area/crew_quarters/lounge/jazz) -"bkw" = ( -/obj/structure/bookcase/random/fiction, -/obj/effect/spawner/lootdrop/gambling, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/lounge/jazz) -"bkx" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bky" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/landmark/start/research_director, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/hor) -"bkz" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/open/floor/plating, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"bkA" = ( -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "Bridge - Starboard Quarter"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bkB" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bkC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "capblast"; - name = "blast door" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/captain) -"bkD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "CEPrivacy"; - name = "CE Privacy Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"bkE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bkF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/department/security) -"bkG" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/closet/crate/engineering, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/item/rcl/pre_loaded, -/obj/item/stock_parts/cell/high/plus, -/obj/item/clothing/glasses/meson, -/obj/item/cartridge/atmos, -/obj/item/cartridge/engineering, -/obj/item/cartridge/engineering, -/obj/item/cartridge/engineering, -/obj/machinery/camera{ - c_tag = "Chief Engineer's Office"; - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bkH" = ( -/obj/machinery/computer/atmos_control{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/checker, -/area/engine/atmos) -"bkI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/storage/primary) -"bkJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"bkK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/sign/departments/security{ - pixel_x = -32 - }, -/obj/item/cigbutt, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"bkL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bkM" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bkN" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bkO" = ( -/obj/machinery/vending/kink, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bkP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bkQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"bkR" = ( -/obj/machinery/camera{ - c_tag = "EVA Maintenance - Aft"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"bkS" = ( -/obj/machinery/vending/sustenance, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bkT" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_x = 26 - }, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"bkU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bkV" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"bkW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "Pool Exterior Access"; - req_access_txt = "13" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plating, -/area/crew_quarters/fitness/cogpool) -"bkX" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bkY" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/closet/crate/engineering, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bkZ" = ( -/turf/open/floor/engine/n2, -/area/engine/atmos) -"bla" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"blb" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"blc" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bld" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"ble" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/airlock/external{ - name = "Cargo Freighter Dock"; - req_access_txt = "31" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"blf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel's Office"; - req_access_txt = "57" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hop) -"blg" = ( -/obj/effect/turf_decal/caution/stand_clear, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"blh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/airlock/external{ - name = "Cargo Freighter Dock"; - req_access_txt = "31" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bli" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"blj" = ( -/obj/structure/sign/warning/docking, -/turf/closed/wall/r_wall, -/area/space/nearstation) -"blk" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bll" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"blm" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bln" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"blo" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"blp" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/exit) -"blq" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/vending/wardrobe/engi_wardrobe, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plasteel, -/area/storage/primary) -"blr" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bls" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/sign/poster/official/ion_rifle{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"blt" = ( -/obj/machinery/computer/card/minor/ce{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"blu" = ( -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"blv" = ( -/obj/machinery/computer/operating, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"blw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"blx" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/item/storage/backpack/duffelbag/med/surgery, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bly" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) -"blz" = ( -/obj/machinery/computer/atmos_control{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engine/atmos) -"blA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) -"blB" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"blC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"blD" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/fitness/cogpool) -"blE" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"blF" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"blG" = ( -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/mixing) -"blH" = ( -/obj/structure/chair, -/obj/machinery/button/massdriver{ - id = "toxinsdriver"; - pixel_y = -24 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/science/mixing) -"blI" = ( -/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/mixing) -"blJ" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"blK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "marketdoor" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"blL" = ( -/turf/open/floor/engine/o2, -/area/engine/atmos) -"blM" = ( -/turf/open/floor/engine/air, -/area/engine/atmos) -"blN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"blO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"blP" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall/rust, -/area/maintenance/department/chapel) -"blQ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/northleft{ - name = "Delivery Office"; - req_one_access_txt = "31;48" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"blR" = ( -/obj/machinery/computer/bounty{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"blS" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/structure/chair, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"blT" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"blU" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/closet/cardboard, -/turf/open/floor/plating, -/area/maintenance/aft) -"blV" = ( -/obj/machinery/computer/cargo{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"blW" = ( -/obj/structure/table, -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/crowbar, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"blX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"blY" = ( -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/security/brig) -"blZ" = ( -/obj/machinery/conveyor_switch/oneway{ - dir = 8; - id = "QMUnload" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bma" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/landmark/start/assistant/override, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_x = 26 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bmb" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"bmc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Security's Office"; - req_one_access_txt = "58" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hos) -"bmd" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/research_director, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/hor) -"bme" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bmf" = ( -/obj/structure/sign/departments/evac, -/turf/closed/wall/r_wall, -/area/hallway/secondary/exit) -"bmg" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bmh" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bmi" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/noticeboard{ - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bmj" = ( -/obj/machinery/vending/wardrobe/cap_wardrobe, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/captain) -"bmk" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, -/obj/item/dice/d6, -/obj/machinery/camera{ - c_tag = "Jazz Lounge"; - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/lounge/jazz) -"bml" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bmm" = ( -/obj/machinery/portable_atmospherics/scrubber/huge, -/turf/open/floor/plasteel, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"bmn" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bmo" = ( -/turf/closed/wall/rust, -/area/maintenance/department/chapel) -"bmp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"bmq" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=court"; - location = "bridge1" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bmr" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bms" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/landmark/barthpot, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/lounge/jazz) -"bmt" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/lounge/jazz) -"bmu" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"bmv" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"bmw" = ( -/obj/machinery/suit_storage_unit/ce, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bmx" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"bmy" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 1; - locked = 0; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bmz" = ( -/obj/structure/closet/firecloset, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/storage/primary) -"bmA" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 10; - pixel_y = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/hallway/secondary/civilian) -"bmB" = ( -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"bmC" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bmD" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bmE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/gateway) -"bmF" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/closed/wall, -/area/crew_quarters/fitness/cogpool) -"bmG" = ( -/turf/open/floor/engine, -/area/gateway) -"bmH" = ( -/obj/machinery/computer/upload/borg{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"bmI" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/chapel/office"; - dir = 4; - name = "Chapel Office APC"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"bmJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/crew_quarters/fitness/cogpool) -"bmK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/fitness/cogpool) -"bmL" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bmM" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"bmN" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Waste Disposal Maintenance"; - req_one_access_txt = "12;50" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bmO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/lounge/jazz) -"bmP" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/departments/engineering{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bmQ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Engineering Foyer - Starboard"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bmR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Teleport Access"; - req_one_access_txt = "17;19" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"bmS" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bmT" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/engineering{ - name = "Engine Room" - }) -"bmU" = ( -/obj/structure/table/wood, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/item/instrument/saxophone, -/obj/item/reagent_containers/food/drinks/bottle/vermouth, -/obj/item/clothing/glasses/sunglasses, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/lounge/jazz) -"bmV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/lounge/jazz) -"bmW" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bmX" = ( -/obj/structure/table, -/obj/item/folder/yellow{ - pixel_y = 4 - }, -/obj/item/pen{ - pixel_y = 4 - }, -/obj/item/clothing/gloves/color/latex{ - pixel_y = 4 - }, -/obj/item/clothing/mask/surgical{ - pixel_y = 4 - }, -/obj/item/healthanalyzer, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/item/paper/guides/cogstation/cdn_chap, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"bmY" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/maintenance/disposal) -"bmZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bna" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bnb" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/lounge/jazz) -"bnc" = ( -/obj/structure/sign/directions/command{ - dir = 1; - pixel_x = -32; - pixel_y = 32 - }, -/obj/structure/sign/directions/security{ - dir = 1; - pixel_x = -32; - pixel_y = 40 - }, -/obj/structure/sign/directions/science{ - pixel_x = -32; - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bnd" = ( -/obj/structure/table/wood, -/obj/item/storage/photo_album, -/obj/item/storage/box/matches, -/obj/item/storage/fancy/cigarettes/cigpack_robust, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/lounge/jazz) -"bne" = ( -/obj/machinery/conveyor/auto{ - dir = 4; - id = "disposal" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bnf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bng" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/conveyor{ - dir = 4; - id = "recycler" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bnh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/poddoor{ - id = "DeliveryDoor"; - name = "Delivery Door" - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bni" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/clipboard, -/obj/item/stamp, -/obj/item/stamp/denied{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/pen/red, -/obj/item/pen/blue{ - pixel_x = -5; - pixel_y = -3 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bnj" = ( -/obj/structure/sign/warning/securearea{ - desc = "A warning sign which reads 'BOMB RANGE"; - name = "BOMB RANGE" - }, -/turf/closed/wall, -/area/science/test_area) -"bnk" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bnl" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"bnm" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"bnn" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/door/window/southleft{ - name = "Cargo Desk"; - req_access_txt = "31" - }, -/obj/item/folder, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bno" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/lounge/jazz) -"bnp" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bnr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bns" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/maintenance/department/eva) -"bnt" = ( -/obj/machinery/camera{ - c_tag = "Electrical Substation"; - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/storage_shared{ - name = "Electrical Substation" - }) -"bnu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"bnv" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L1" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bnw" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/lounge/jazz) -"bnx" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L3" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bny" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/item/paper_bin, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/pen, -/obj/item/wirecutters, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bnz" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L5" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bnA" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L7" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bnB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/lounge/jazz) -"bnC" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Cargo Freighter Dock"; - req_access_txt = "31" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bnD" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L9" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bnE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/crowbar, -/obj/structure/disposalpipe/junction/flip, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"bnF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"bnG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel, -/area/bridge) -"bnH" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/fore) -"bnI" = ( -/obj/structure/bed, -/obj/effect/landmark/start/head_of_personnel, -/obj/item/bedsheet/hop, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) -"bnJ" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bnK" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"bnL" = ( -/obj/item/beacon, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"bnM" = ( -/obj/effect/turf_decal/delivery, -/obj/item/grown/bananapeel, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bnN" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bnO" = ( -/obj/machinery/status_display, -/turf/closed/wall/r_wall, -/area/hallway/secondary/exit) -"bnP" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L11" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bnQ" = ( -/obj/machinery/atmospherics/components/binary/valve/digital/on, -/turf/closed/wall/r_wall, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"bnR" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L13" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bnS" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bnT" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/crew_quarters/fitness/cogpool) -"bnU" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/fragile, -/obj/item/clothing/head/helmet/space/fragile, -/obj/item/tank/internals/air, -/obj/item/wrench, -/obj/item/flashlight, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"bnV" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/nuke_storage) -"bnW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bnX" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/closet/secure_closet/security/cargo, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"bnY" = ( -/obj/structure/flora/ausbushes/sunnybush, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bnZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/pen/blue, -/obj/machinery/camera{ - c_tag = "Customs - Fore"; - dir = 4 - }, -/obj/structure/window/reinforced/spawner/north, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "HoPFore"; - name = "HoP Fore Desk Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"boa" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 5 - }, -/turf/closed/wall, -/area/crew_quarters/heads/chief) -"bob" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/crew_quarters/heads/chief) -"boc" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 10 - }, -/turf/closed/wall, -/area/crew_quarters/heads/chief) -"bod" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/southleft{ - name = "Primary Tool Storage Desk"; - req_access_txt = "11" - }, -/obj/item/folder/yellow, -/turf/open/floor/plasteel, -/area/storage/primary) -"boe" = ( -/obj/machinery/door/airlock/vault{ - name = "Vault Door"; - req_access_txt = "53" - }, -/obj/effect/mapping_helpers/airlock/locked, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/nuke_storage) -"bof" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Pool Exterior Access"; - req_access_txt = "13" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plating, -/area/crew_quarters/fitness/cogpool) -"bog" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"boh" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/conveyor/auto{ - dir = 4; - id = "disposal" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"boi" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/fitness/cogpool) -"boj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bok" = ( -/obj/structure/table/wood, -/obj/item/paicard, -/obj/item/toy/sword, -/obj/item/toy/figure/assistant, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/lounge/jazz) -"bol" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/teleporter) -"bom" = ( -/obj/structure/flora/ausbushes/leafybush, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bon" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"boo" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/hallway/primary/central) -"bop" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/door/window/eastleft{ - name = "Operating Theatre"; - req_access_txt = "45" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"boq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bor" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bos" = ( -/obj/structure/table, -/obj/item/stack/sheet/cardboard/fifty, -/obj/item/stack/wrapping_paper, -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/glass, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bot" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bou" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bov" = ( -/obj/effect/turf_decal/loading_area{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bow" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMUnload" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"box" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"boy" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit) -"boz" = ( -/obj/machinery/vending/cigarette, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"boA" = ( -/turf/closed/wall, -/area/security/detectives_office) -"boB" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMUnload" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"boC" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/structure/sign/departments/cargo{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"boD" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMUnload" - }, -/obj/machinery/door/poddoor{ - id = "QMUnloadDoor"; - name = "Cargo Unloading Door" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"boE" = ( -/obj/structure/plasticflaps, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMUnload" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"boF" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "QMUnload" - }, -/obj/machinery/door/poddoor{ - id = "QMUnloadDoor"; - name = "Cargo Unloading Door" - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"boG" = ( -/obj/machinery/space_heater, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/weldingtool, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/structure/sign/departments/engineering{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"boH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"boI" = ( -/turf/closed/wall/r_wall, -/area/quartermaster/miningoffice) -"boJ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/obj/machinery/computer/security/telescreen/toxins{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"boK" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/miningoffice) -"boL" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/science/mixing) -"boM" = ( -/obj/machinery/mineral/ore_redemption{ - input_dir = 4; - output_dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"boN" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"boO" = ( -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/item/storage/box/drinkingglasses{ - pixel_y = 4 - }, -/obj/structure/table/wood/fancy, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/crew_quarters/bar) -"boP" = ( -/obj/structure/tank_dispenser/oxygen, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"boQ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"boR" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"boS" = ( -/obj/structure/sign/mining, -/turf/closed/wall/r_wall, -/area/quartermaster/miningoffice) -"boT" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"boU" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"boV" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/lounge/jazz) -"boW" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"boX" = ( -/obj/item/beacon, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/lounge/jazz) -"boY" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"boZ" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/lounge/jazz) -"bpa" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/door/window/westleft{ - name = "Treatment Center"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bpb" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bpc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"bpd" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bpe" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/door/window/eastright{ - name = "Operating Theatre"; - req_access_txt = "45" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bpf" = ( -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bpg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bph" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bpi" = ( -/obj/structure/flora/junglebush/b, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bpj" = ( -/obj/structure/flora/junglebush, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bpk" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bpl" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/autolathe/secure{ - name = "public autolathe" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bpm" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/head/hardhat/red{ - pixel_y = 6 - }, -/obj/item/clothing/mask/gas, -/obj/item/tank/internals/air, -/obj/item/extinguisher, -/obj/item/crowbar, -/turf/open/floor/plating, -/area/maintenance/aft) -"bpn" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bpo" = ( -/obj/machinery/holopad, -/turf/open/floor/carpet/red, -/area/security/brig) -"bpp" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bpq" = ( -/obj/machinery/portable_atmospherics/canister/air, -/turf/open/floor/engine/air, -/area/engine/atmos) -"bpr" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/lounge/jazz) -"bps" = ( -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/lounge/jazz"; - name = "Jazz Lounge APC"; - pixel_y = -26 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/lounge/jazz) -"bpt" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/lounge/jazz) -"bpu" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bpv" = ( -/turf/closed/wall/r_wall, -/area/engine/break_room) -"bpw" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L6" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bpx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bpy" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/landmark/observer_start, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bpz" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bpA" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bpB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/hallway/primary/aft) -"bpC" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L10" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bpD" = ( -/turf/open/floor/plating, -/area/maintenance/aft) -"bpE" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/aft) -"bpF" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L12" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bpG" = ( -/obj/effect/turf_decal/plaque{ - icon_state = "L14" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bpH" = ( -/obj/machinery/jukebox, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/lounge/jazz) -"bpI" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bpJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/lounge/jazz) -"bpK" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/engine/engineering{ - name = "Engine Room" - }) -"bpL" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/closed/wall/r_wall, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"bpM" = ( -/obj/effect/turf_decal/stripes/corner, -/turf/open/floor/plasteel, -/area/science/mixing) -"bpN" = ( -/obj/structure/grille, -/obj/machinery/power/terminal, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"bpO" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bpP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bpQ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bpR" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"bpS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - name = "Security RC"; - pixel_y = -32 - }, -/turf/open/floor/carpet/red, -/area/security/brig) -"bpT" = ( -/obj/structure/window/reinforced/spawner, -/turf/open/floor/grass, -/area/hallway/secondary/exit) -"bpU" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit) -"bpV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/atmos{ - name = "Aft Air Hookup"; - req_access_txt = "12;24" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"bpW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall, -/area/security/brig) -"bpX" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/sign/poster/official/obey{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"bpY" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bpZ" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/lounge/jazz) -"bqa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"bqb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/civilian) -"bqc" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/medical/medbay/lobby) -"bqd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bqe" = ( -/obj/structure/sign/departments/medbay/alt, -/turf/closed/wall, -/area/medical/medbay/lobby) -"bqf" = ( -/obj/machinery/conveyor/auto{ - dir = 8; - id = "disposal" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bqg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/conveyor/auto{ - dir = 8; - id = "disposal" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bqh" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet/green, -/area/crew_quarters/heads/hop) -"bqi" = ( -/obj/machinery/button/door{ - id = "HoPFore"; - name = "Fore Shutters"; - pixel_x = -24; - pixel_y = 24; - req_access_txt = "57" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"bqj" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bqk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"bql" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/hallway/secondary/civilian) -"bqm" = ( -/turf/closed/wall, -/area/medical/medbay/lobby) -"bqn" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bqo" = ( -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bqp" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"bqq" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera{ - c_tag = "Medbay - Chemistry Lab"; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"bqr" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bqs" = ( -/obj/structure/closet/emcloset, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bqt" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/suit/apron/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/healthanalyzer, -/obj/item/clothing/neck/stethoscope, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bqu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Waste Disposal Maintenance"; - req_one_access_txt = "12;50" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bqv" = ( -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/wood, -/area/medical/medbay/lobby) -"bqw" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "EngiLockdown"; - name = "Engineering Emergency Lockdown" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/camera{ - c_tag = "Engineering - Entrance"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bqx" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bqy" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/camera{ - c_tag = "Supply - Mining Office"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bqz" = ( -/turf/closed/wall, -/area/medical/chemistry) -"bqA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bqB" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass{ - name = "Library Access" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/library) -"bqC" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bqD" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bqE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bqF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "E.V.A. Maintenance"; - req_one_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bqG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"bqH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bqI" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/mixing) -"bqJ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/obj/machinery/airlock_sensor/incinerator_toxmix{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/engine, -/area/science/mixing) -"bqK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bqL" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"bqM" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/item/storage/box/dice, -/obj/item/toy/cards/deck, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"bqN" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bqO" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bqP" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bqQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark/corner, -/area/hallway/secondary/entry) -"bqR" = ( -/obj/machinery/computer/operating{ - dir = 1 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bqS" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bqT" = ( -/obj/machinery/computer/crew, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/window/reinforced/spawner/north, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"bqU" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"bqV" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bqW" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"bqX" = ( -/turf/closed/wall/mineral/titanium/nosmooth, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bqY" = ( -/obj/structure/sign/directions/medical{ - pixel_x = -32; - pixel_y = -24 - }, -/obj/structure/sign/directions/evac{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/structure/sign/directions/supply{ - pixel_x = -32; - pixel_y = -40 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bqZ" = ( -/obj/machinery/mineral/equipment_vendor, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bra" = ( -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"brb" = ( -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plasteel/dark, -/area/science/server{ - name = "Computer Core" - }) -"brc" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"brd" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bre" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/central) -"brf" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"brg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"brh" = ( -/obj/structure/sign/departments/custodian{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"bri" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/hallway/secondary/civilian) -"brj" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/maintenance{ - name = "Central Starboard Maintenance"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/civilian) -"brk" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/vending/cola/random, -/turf/open/floor/wood, -/area/medical/medbay/lobby) -"brl" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/paper_bin, -/obj/item/reagent_containers/glass/bottle/epinephrine, -/obj/item/reagent_containers/dropper, -/obj/item/stamp/denied{ - pixel_x = -8; - pixel_y = -2 - }, -/obj/item/stamp{ - pixel_x = -8; - pixel_y = 2 - }, -/obj/structure/window/reinforced/spawner/north, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"brm" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"brn" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bro" = ( -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"brp" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/machinery/smartfridge/disks, -/turf/open/floor/plasteel, -/area/hydroponics) -"brq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"brr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/sign/warning{ - name = "\improper WARNING: MOVING MACHINERY"; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"brs" = ( -/turf/open/floor/plating/airless, -/area/space/nearstation) -"brt" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/chapel/office) -"bru" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"brv" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"brw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/gateway) -"brx" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/storage/tools) -"bry" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"brz" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/power/apc{ - areastring = "/area/science/research"; - name = "Research Sector APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"brA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/poster/official/pda_ad600{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/lounge/jazz) -"brB" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"brC" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/storage/tools) -"brD" = ( -/obj/structure/table, -/obj/machinery/door/window/eastright{ - name = "Auxiliary Tool Storage Desk"; - req_access_txt = "12" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/folder, -/turf/open/floor/plasteel, -/area/storage/tools) -"brE" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"brF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chem1"; - name = "chem lab shutters" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/medical/chemistry) -"brG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"brH" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/medical/chemistry) -"brI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Central Hall - Aft"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"brJ" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"brK" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/chem_dispenser, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"brL" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"brM" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Merchant Plaza" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"brN" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"brO" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/obj/effect/landmark/start/medical_doctor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"brP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"brQ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"brR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Construction Area"; - req_access_txt = "31" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"brS" = ( -/obj/machinery/suit_storage_unit/open, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"brT" = ( -/obj/machinery/suit_storage_unit/open, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"brU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/medbay/lobby) -"brV" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"brW" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - name = "Chapel Maintenance"; - req_one_access_txt = "12;22;26;27;50" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"brX" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"brY" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/camera{ - c_tag = "Waste Disposal - Aft" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"brZ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-02" - }, -/turf/open/floor/wood, -/area/medical/medbay/lobby) -"bsa" = ( -/obj/structure/table/glass, -/obj/item/scalpel, -/obj/item/storage/box/cups, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/wood, -/area/medical/medbay/lobby) -"bsb" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/port/central) -"bsc" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/bottle/ammonia, -/obj/item/toy/figure/botanist{ - pixel_x = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bsd" = ( -/obj/structure/closet/crate/hydroponics, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/item/clothing/accessory/armband/hydro{ - pixel_y = 4 - }, -/obj/item/clothing/accessory/armband/hydro{ - pixel_y = 4 - }, -/obj/item/clothing/accessory/armband/hydro{ - pixel_y = 4 - }, -/obj/item/clothing/suit/hooded/wintercoat/hydro{ - pixel_y = 4 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bse" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"bsf" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/obj/structure/bed/dogbed/ian, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/structure/sign/poster/official/love_ian{ - pixel_y = 32 - }, -/mob/living/simple_animal/pet/dog/corgi/Ian, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) -"bsg" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bsh" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "Recycler Exterior Access"; - req_one_access_txt = "13;50" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bsi" = ( -/obj/structure/disposalpipe/segment, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_x = 26 - }, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bsj" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/seed_extractor, -/turf/open/floor/plasteel, -/area/hydroponics) -"bsk" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bsl" = ( -/obj/machinery/status_display, -/turf/closed/wall/r_wall, -/area/ai_monitored/storage/eva) -"bsm" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bsn" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/machinery/plantgenes{ - pixel_y = 6 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bso" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/storage/tools) -"bsp" = ( -/turf/open/floor/wood, -/area/medical/medbay/lobby) -"bsq" = ( -/obj/structure/table, -/obj/machinery/door/window/southleft{ - name = "Auxiliary Tool Storage Desk"; - req_access_txt = "12" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/book/manual/wiki/engineering_hacking, -/turf/open/floor/plasteel, -/area/storage/tools) -"bsr" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/structure/table, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/stack/sheet/glass/fifty, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = -6; - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/storage/tools) -"bss" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/item/hand_labeler{ - pixel_y = 8 - }, -/obj/item/storage/firstaid/regular, -/obj/item/book/manual/wiki/medicine{ - pixel_x = -6 - }, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"bst" = ( -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"bsu" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bsv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/warning/vacuum/external, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bsw" = ( -/turf/open/floor/plasteel/stairs/left, -/area/hydroponics) -"bsx" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external{ - name = "Recycler Exterior Access"; - req_one_access_txt = "13;50" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bsy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bsz" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/violet/hidden{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bsA" = ( -/turf/open/floor/plasteel/stairs/right, -/area/hydroponics) -"bsB" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bsC" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Hydroponics - Aft" - }, -/turf/open/floor/plasteel, -/area/hydroponics) -"bsD" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space/basic, -/area/space/nearstation) -"bsE" = ( -/obj/structure/reagent_dispensers/watertank/high, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = 26 - }, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/grass, -/area/hydroponics) -"bsF" = ( -/obj/machinery/vending/hydronutrients, -/turf/open/floor/grass, -/area/hydroponics) -"bsG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/table, -/obj/effect/decal/cleanable/cobweb, -/obj/structure/sign/poster/contraband/borg_fancy_2{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"bsH" = ( -/obj/structure/table/glass, -/obj/item/storage/box/syringes{ - pixel_y = 4 - }, -/turf/open/floor/grass, -/area/hydroponics) -"bsI" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bsJ" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 12; - pixel_y = 8 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 2; - pixel_y = 9 - }, -/obj/item/reagent_containers/spray/plantbgone{ - pixel_x = 6; - pixel_y = 4 - }, -/turf/open/floor/grass, -/area/hydroponics) -"bsK" = ( -/obj/machinery/hydroponics/constructable, -/obj/machinery/light, -/turf/open/floor/grass, -/area/hydroponics) -"bsL" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/reagentgrinder{ - pixel_y = 8 - }, -/obj/item/storage/box/syringes, -/obj/item/storage/box/beakers{ - pixel_x = -2; - pixel_y = -2 - }, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"bsM" = ( -/turf/closed/wall, -/area/science/robotics/lab) -"bsN" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/cable_coil/random, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/grenade/chem_grenade, -/obj/item/screwdriver{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"bsO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/hallway/secondary/civilian) -"bsP" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/stripes/white/full, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"bsQ" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"bsR" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bsS" = ( -/obj/machinery/door/window/northleft{ - name = "Chapel Office"; - req_access_txt = "22" - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"bsT" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/violet/hidden{ - dir = 10 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bsU" = ( -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bsV" = ( -/turf/closed/wall, -/area/maintenance/aft) -"bsW" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/chaplain, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/office) -"bsX" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/engine, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"bsY" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plating, -/area/maintenance/aft) -"bsZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/aft) -"bta" = ( -/turf/closed/wall/r_wall, -/area/storage/tech) -"btb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/computer/secure_data, -/obj/machinery/requests_console{ - department = "Detective"; - departmentType = 5; - name = "Detective's Office RC"; - pixel_y = 30 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"btc" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/central"; - dir = 1; - name = "Custodial Closet APC"; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/janitor) -"btd" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bte" = ( -/obj/structure/sign/warning/vacuum/external, -/turf/closed/wall/r_wall, -/area/quartermaster/miningoffice) -"btf" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/wood, -/area/medical/medbay/lobby) -"btg" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bth" = ( -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/medical/medbay/lobby) -"bti" = ( -/obj/machinery/door/window/eastleft{ - name = "Waiting Room" - }, -/turf/open/floor/wood, -/area/medical/medbay/lobby) -"btj" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"btk" = ( -/obj/structure/sign/poster/official/nanomichi_ad{ - pixel_x = 32 - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"btl" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"btm" = ( -/obj/machinery/disposal/bin{ - name = "Chapel Mailbox" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/delivery/white, -/obj/machinery/requests_console{ - department = "Chapel"; - departmentType = 2; - name = "Chapel RC"; - pixel_x = -32 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"btn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics"; - name = "robotics lab shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"bto" = ( -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"btp" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"btq" = ( -/obj/machinery/vending/cigarette, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"btr" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/binary/valve/digital/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bts" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/light_construct/small{ - icon_state = "bulb-construct-stage1"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"btt" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Civilian Wing Hallway - Aft"; - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/civilian) -"btu" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/hallway/secondary/civilian) -"btv" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/aft) -"btw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light/small, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/department/eva) -"btx" = ( -/obj/machinery/space_heater, -/turf/open/floor/plating, -/area/maintenance/aft) -"bty" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"btz" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"btA" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"btB" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"btC" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"btD" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"btE" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Tech Storage"; - req_access_txt = "23" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/storage/tech) -"btF" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"btG" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"btH" = ( -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"btI" = ( -/obj/structure/closet/secure_closet/brig{ - name = "Detainee Locker" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"btJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/hallway/secondary/civilian) -"btK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Aft Maintenance"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"btL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"btM" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen/fountain, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/office) -"btN" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/rack, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/item/stack/cable_coil/random, -/obj/item/weldingtool, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"btO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"btP" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"btQ" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/AI, -/turf/open/floor/plating, -/area/storage/tech) -"btR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"btS" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"btT" = ( -/turf/closed/wall/r_wall, -/area/router) -"btU" = ( -/obj/structure/chair/comfy/brown{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/wood, -/area/medical/medbay/lobby) -"btV" = ( -/obj/structure/sign/warning/securearea, -/turf/closed/wall/r_wall, -/area/storage/tech) -"btW" = ( -/obj/structure/table, -/obj/machinery/light, -/obj/item/paper_bin, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"btX" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"btY" = ( -/obj/machinery/door/window/eastright{ - name = "Waiting Room" - }, -/turf/open/floor/wood, -/area/medical/medbay/lobby) -"btZ" = ( -/obj/structure/plasticflaps, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/router) -"bua" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/mechbay) -"bub" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"buc" = ( -/obj/structure/bed, -/obj/item/clothing/glasses/sunglasses/blindfold, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"bud" = ( -/obj/structure/plasticflaps, -/obj/structure/fans/tiny, -/obj/machinery/conveyor{ - id = "router_off" - }, -/turf/open/floor/plating, -/area/router) -"bue" = ( -/turf/closed/wall/r_wall, -/area/router/eva) -"buf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/plasticflaps, -/obj/machinery/door/window/northleft{ - name = "Showers"; - req_one_access_txt = "29;47" - }, -/turf/open/floor/plasteel, -/area/science/lab) -"bug" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall, -/area/chapel/office) -"buh" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/closed/wall, -/area/maintenance/disposal) -"bui" = ( -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"buj" = ( -/obj/structure/closet/crate, -/turf/open/floor/plating, -/area/maintenance/aft) -"buk" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Routing Depot"; - req_one_access_txt = "10;31" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/router) -"bul" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/aft) -"bum" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/aft) -"bun" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"buo" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bup" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"buq" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall/r_wall, -/area/router) -"bur" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bus" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/mass_driver{ - dir = 1; - id = "public_in"; - name = "Router Driver" - }, -/turf/open/floor/plating, -/area/router) -"but" = ( -/turf/closed/wall/mineral/titanium/nosmooth, -/area/hallway/primary/central) -"buu" = ( -/obj/structure/table, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"buv" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"buw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bux" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"buy" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"buz" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/cargo_technician, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"buA" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/medical/medbay/lobby) -"buB" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Ferry Docking Bay" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"buC" = ( -/obj/structure/table/reinforced, -/obj/item/integrated_circuit_printer, -/obj/item/integrated_electronics/wirer, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"buD" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"buE" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/conveyor/auto{ - id = "router" - }, -/turf/open/floor/plating, -/area/router) -"buF" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"buG" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/carpet/green, -/area/crew_quarters/heads/hop) -"buH" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"buI" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"buJ" = ( -/obj/item/beacon, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"buK" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"buL" = ( -/obj/structure/closet/crate/coffin, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"buM" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/button/door{ - id = "capblast"; - name = "Window Blast Door Control"; - pixel_x = -6; - pixel_y = -3; - req_access_txt = "19" - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/captain) -"buN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/closed/wall/rust, -/area/chapel/main) -"buO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "capblast"; - name = "blast door" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/captain) -"buP" = ( -/obj/item/trash/plate, -/obj/item/lighter/greyscale, -/obj/item/clothing/mask/cigarette/cigar/cohiba, -/obj/structure/table/wood/fancy, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"buQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Chapel Morgue"; - req_access_txt = "27" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"buR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hop) -"buS" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/cmo) -"buT" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/obj/structure/sign/poster/official/soft_cap_pop_art{ - pixel_x = -32 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"buU" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/snacks/chips{ - pixel_x = 3; - pixel_y = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"buV" = ( -/obj/structure/rack, -/obj/item/circuitboard/machine/telecomms/processor, -/obj/item/circuitboard/machine/telecomms/bus, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"buW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/janitor) -"buX" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/bartender, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"buY" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"buZ" = ( -/obj/structure/closet/secure_closet/personal/cabinet, -/obj/item/soulstone/anybody/chaplain, -/obj/item/organ/heart, -/obj/item/book/granter/spell/smoke/lesser, -/obj/item/nullrod, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/office) -"bva" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/closed/wall, -/area/janitor) -"bvb" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - name = "Electrical Substation"; - req_access_txt = "10" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/engine/storage_shared{ - name = "Electrical Substation" - }) -"bvc" = ( -/obj/machinery/computer/cargo/request, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/router/eva) -"bvd" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bve" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - name = "Construction Area"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/construction) -"bvf" = ( -/obj/item/kirbyplants{ - icon_state = "plant-10" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/office) -"bvg" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/item/destTagger, -/obj/effect/turf_decal/bot, -/obj/machinery/requests_console{ - department = "EVA Router"; - name = "EVA Router RC"; - pixel_y = 28 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_x = 26 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/router/eva) -"bvh" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"bvi" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"bvj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bvk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bvl" = ( -/obj/item/trash/plate, -/obj/item/kitchen/fork, -/obj/structure/table/wood/fancy, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bvm" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"bvn" = ( -/obj/machinery/rnd/production/protolathe/department/science, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"bvo" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bvp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"bvq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Kitchen"; - req_access_txt = "28" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bvr" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/kitchen/backroom) -"bvs" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/department/chapel) -"bvt" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bvu" = ( -/turf/closed/wall/r_wall, -/area/chapel/office) -"bvv" = ( -/turf/closed/wall/r_wall/rust, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"bvw" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/turf/closed/wall/r_wall, -/area/crew_quarters/kitchen/backroom) -"bvx" = ( -/obj/structure/grille, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bvy" = ( -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bvz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall, -/area/router/eva) -"bvA" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/effect/landmark/start/cook, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/kitchen/backroom) -"bvB" = ( -/turf/closed/wall/r_wall/rust, -/area/router) -"bvC" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/mob/living/simple_animal/hostile/retaliate/goat{ - name = "Pete" - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/kitchen/backroom) -"bvD" = ( -/obj/machinery/camera{ - c_tag = "Bar - Starboard"; - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bvE" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/carpet, -/area/chapel/main) -"bvF" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/vending/snack/random, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"bvG" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bvH" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/crew_quarters/bar) -"bvI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/department/chapel) -"bvJ" = ( -/obj/structure/chair/comfy/brown, -/obj/effect/landmark/start/head_of_personnel, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/carpet/green, -/area/crew_quarters/heads/hop) -"bvK" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"bvL" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"bvM" = ( -/obj/machinery/door/airlock/external/glass{ - name = "External Construction Access"; - req_one_access_txt = "10;31" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bvN" = ( -/obj/machinery/atmospherics/components/binary/valve/digital/on{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/department/chapel) -"bvO" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bvP" = ( -/obj/machinery/space_heater, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bvQ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bvR" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bvS" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bvT" = ( -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"bvU" = ( -/obj/item/caution, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/biohazard{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bvV" = ( -/obj/structure/table, -/obj/machinery/light/small, -/obj/item/storage/pill_bottle/epinephrine, -/obj/item/wrench{ - pixel_x = -8 - }, -/obj/item/extinguisher{ - pixel_x = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bvW" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bvX" = ( -/obj/machinery/door/airlock/external{ - name = "External Construction Access"; - req_one_access_txt = "10;31" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bvY" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"bvZ" = ( -/obj/item/folder, -/obj/structure/table/wood/fancy, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bwa" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"bwb" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Chapel Air Hookup"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bwc" = ( -/obj/machinery/computer/atmos_alert{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bwd" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bwe" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bwf" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"bwg" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bwh" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/requests_console{ - department = "Routing Depot"; - name = "Routing Depot RC"; - pixel_y = 28 - }, -/obj/machinery/button/massdriver{ - id = "eva_in"; - name = "mass driver button (EVA)"; - pixel_x = -24 - }, -/obj/machinery/button/massdriver{ - id = "public_in"; - name = "mass driver button (Public)"; - pixel_x = -24; - pixel_y = 8 - }, -/turf/open/floor/plasteel, -/area/router) -"bwi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bwj" = ( -/obj/machinery/space_heater, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bwk" = ( -/obj/machinery/chem_master, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/maintenance/disposal) -"bwl" = ( -/obj/structure/closet/secure_closet/security, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/structure/sign/poster/official/safety_report{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"bwm" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall/r_wall, -/area/gateway) -"bwn" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bwo" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/mob/living/simple_animal/cockroach, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"bwp" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"bwq" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/conveyor{ - id = "recycler" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bwr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bws" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/autolathe/secure{ - name = "public autolathe" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bwt" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bwu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/item/trash/can, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"bwv" = ( -/obj/machinery/disposal/bin{ - name = "Mass Driver" - }, -/obj/structure/sign/warning/deathsposal{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bww" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/structure/transit_tube/horizontal, -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bwx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/janitor) -"bwy" = ( -/obj/machinery/vending/wardrobe/jani_wardrobe, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/janitor) -"bwz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/router) -"bwA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bwB" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/bot_assembly/medbot, -/obj/item/clothing/head/hardhat{ - pixel_x = -2; - pixel_y = 6; - pressure_resistance = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/router) -"bwC" = ( -/obj/structure/table, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/radio/off{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/storage/box/mousetraps, -/obj/item/light/tube, -/obj/item/radio/off{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/machinery/camera{ - c_tag = "Routing Depot" - }, -/turf/open/floor/plasteel, -/area/router) -"bwD" = ( -/obj/structure/table/reinforced, -/obj/item/analyzer, -/obj/item/wrench, -/obj/item/screwdriver, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bwE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bwF" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bwG" = ( -/obj/item/cigbutt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bwH" = ( -/obj/effect/turf_decal/stripes/line, -/obj/item/storage/box/mre/menu2/safe, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bwI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bwJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"bwK" = ( -/obj/machinery/camera{ - c_tag = "Research - Gateway Chamber"; - network = list("ss13","rd") - }, -/turf/open/floor/engine, -/area/gateway) -"bwL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/router) -"bwM" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Central Starboard Maintenance"; - dir = 8; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/mob/living/simple_animal/hostile/retaliate/bat, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"bwN" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Toxins Lab - Port"; - network = list("ss13","rd") - }, -/obj/machinery/meter, -/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{ - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/science/mixing) -"bwO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/chapel) -"bwP" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bwQ" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "router_off" - }, -/turf/open/floor/plating, -/area/router) -"bwR" = ( -/turf/open/floor/plasteel, -/area/engine/break_room) -"bwS" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/router) -"bwT" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/router) -"bwU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bwV" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bwW" = ( -/turf/closed/wall, -/area/maintenance/disposal) -"bwX" = ( -/obj/machinery/conveyor{ - id = "recycler" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bwY" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"bwZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/table, -/obj/item/clothing/under/misc/mailman, -/obj/item/clothing/head/mailman, -/obj/item/wirecutters, -/obj/item/stack/packageWrap, -/turf/open/floor/plasteel, -/area/router) -"bxa" = ( -/obj/structure/frame/computer, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/router) -"bxb" = ( -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Waste Disposal - Port"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bxc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/chapel) -"bxd" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bxe" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 6; - pixel_y = 13 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bxf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "EVA Router"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/router/eva) -"bxg" = ( -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 14 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bxh" = ( -/obj/machinery/disposal/bin{ - name = "Corpse Disposal" - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bxi" = ( -/obj/structure/closet/l3closet/janitor, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/item/clothing/gloves/color/purple, -/obj/item/clothing/gloves/color/purple, -/obj/item/clothing/under/costume/maid, -/obj/item/clothing/under/costume/maid, -/obj/structure/sign/poster/official/bless_this_spess{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bxj" = ( -/turf/closed/wall/r_wall, -/area/maintenance/aft) -"bxk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bxl" = ( -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"bxm" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"bxn" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bxo" = ( -/obj/machinery/door/airlock/external{ - name = "Telecommunications External Access"; - req_access_txt = "61" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"bxp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bxq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"bxr" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/box/lights/mixed, -/obj/item/radio/off{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/restraints/legcuffs/beartrap, -/obj/item/restraints/legcuffs/beartrap, -/turf/open/floor/plasteel, -/area/janitor) -"bxs" = ( -/obj/item/storage/toolbox/mechanical/old, -/obj/item/reagent_containers/food/snacks/chips{ - pixel_x = 3; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bxt" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Telecommunications External Access"; - req_access_txt = "61" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/tcommsat/computer) -"bxu" = ( -/obj/structure/rack, -/obj/item/circuitboard/machine/telecomms/broadcaster, -/obj/item/circuitboard/machine/telecomms/receiver, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bxv" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bxw" = ( -/turf/closed/wall/r_wall, -/area/maintenance/starboard/aft) -"bxx" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bxy" = ( -/obj/item/trash/candle, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/disposal) -"bxz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/computer/station_alert, -/obj/structure/sign/poster/official/safety_eye_protection{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/paper/guides/cogstation/letter_eng, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bxA" = ( -/obj/machinery/announcement_system, -/turf/open/floor/plasteel/dark, -/area/tcommsat/computer) -"bxB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/computer/message_monitor{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bxC" = ( -/obj/structure/closet/emcloset/anchored, -/obj/machinery/light/small, -/turf/open/floor/plating, -/area/tcommsat/computer) -"bxD" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/door/airlock/engineering{ - name = "Telecommunications Chamber"; - req_access_txt = "61" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bxE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = 29 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bxF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bxG" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bxH" = ( -/turf/closed/wall, -/area/storage/tech) -"bxI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bxJ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/rack, -/obj/item/clothing/gloves/color/fyellow, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/item/clothing/suit/hooded/wintercoat/engineering, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/shoes/winterboots, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bxK" = ( -/obj/structure/rack, -/obj/item/storage/toolbox/mechanical, -/obj/item/radio/off, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bxL" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bxM" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/hallway/primary/aft) -"bxN" = ( -/obj/structure/rack, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/spawner/lootdrop/techstorage/command, -/turf/open/floor/plating, -/area/storage/tech) -"bxO" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bxP" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Central Starboard Exterior Access"; - req_access_txt = "13" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"bxQ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bxR" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/conveyor_switch{ - id = "MiningConveyer" - }, -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bxS" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"bxT" = ( -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"bxU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bxV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bxW" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bxX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bxY" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bxZ" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"bya" = ( -/obj/machinery/computer/telecomms/monitor{ - dir = 1; - network = "tcommsat" - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"byb" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/tcommsat/server) -"byc" = ( -/obj/machinery/igniter/incinerator_toxmix, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"byd" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/item/pen/fourcolor, -/obj/item/pen/fountain{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/item/stamp/hop, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/carpet/green, -/area/crew_quarters/heads/hop) -"bye" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/photocopier, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"byf" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Telecommunications Mainframe"; - req_access_txt = "61" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"byg" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"byh" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"byi" = ( -/turf/closed/wall/r_wall, -/area/tcommsat/server) -"byj" = ( -/turf/open/floor/plasteel, -/area/tcommsat/server) -"byk" = ( -/obj/machinery/telecomms/message_server, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"byl" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Telecommunications Mainframe"; - req_access_txt = "61" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/tcommsat/server) -"bym" = ( -/obj/machinery/announcement_system, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"byn" = ( -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"byo" = ( -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/pen, -/obj/item/pen{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/machinery/camera{ - c_tag = "Chapel Game Room"; - dir = 1 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"byp" = ( -/obj/machinery/telecomms/bus/preset_three, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"byq" = ( -/obj/machinery/telecomms/receiver/preset_left, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"byr" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/flashlight/lamp/green, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bys" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/router/eva) -"byt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"byu" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"byv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Central Starboard Exterior Access" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"byw" = ( -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"byx" = ( -/obj/machinery/telecomms/processor/preset_three, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"byy" = ( -/obj/machinery/telecomms/bus/preset_one, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"byz" = ( -/obj/machinery/telecomms/receiver/preset_right, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"byA" = ( -/obj/machinery/telecomms/processor/preset_one, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"byB" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"byC" = ( -/obj/machinery/light{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"byD" = ( -/obj/machinery/camera{ - c_tag = "Medbay - Lobby"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"byE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/button/massdriver{ - id = "eva_out"; - pixel_x = 24; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/router/eva) -"byF" = ( -/obj/structure/window/reinforced/spawner, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/conveyor/auto{ - dir = 4; - id = "EVA" - }, -/turf/open/floor/plating, -/area/router/eva) -"byG" = ( -/obj/machinery/telecomms/server/presets/service, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"byH" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"byI" = ( -/obj/machinery/telecomms/hub/preset, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"byJ" = ( -/obj/machinery/telecomms/server/presets/security, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"byK" = ( -/obj/machinery/telecomms/server/presets/command, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"byL" = ( -/obj/machinery/telecomms/server/presets/science, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"byM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Chapel Maintenance"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"byN" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/medical/morgue) -"byO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/tile/plasteel{ - pixel_x = 3; - pixel_y = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"byP" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"byQ" = ( -/turf/closed/wall, -/area/medical/morgue) -"byR" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"byS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"byT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"byU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"byV" = ( -/obj/structure/reagent_dispensers/water_cooler, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"byW" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"byX" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"byY" = ( -/obj/vehicle/ridden/janicart, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/item/key/janitor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/janitor) -"byZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/spawner, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/mass_driver{ - dir = 4; - id = "eva_out"; - name = "Router Driver" - }, -/turf/open/floor/plating, -/area/router/eva) -"bza" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bzb" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "Ferry Docking Bay" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bzc" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/security, -/turf/open/floor/plating, -/area/storage/tech) -"bzd" = ( -/turf/open/floor/plating, -/area/storage/tech) -"bze" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/mob/living/simple_animal/cockroach, -/turf/open/floor/plating, -/area/maintenance/aft) -"bzf" = ( -/obj/structure/janitorialcart, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = 26 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/janitor) -"bzg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/janitor) -"bzh" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzi" = ( -/obj/item/cardboard_cutout, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzj" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/table, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/item/assembly/flash, -/obj/item/assembly/flash, -/obj/item/clothing/glasses/meson, -/turf/open/floor/plating, -/area/storage/tech) -"bzk" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/storage/tech) -"bzl" = ( -/obj/structure/closet/secure_closet, -/obj/effect/spawner/lootdrop/organ_spawner, -/obj/effect/spawner/lootdrop/organ_spawner, -/obj/effect/spawner/lootdrop/organ_spawner, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzm" = ( -/obj/machinery/conveyor{ - dir = 5; - id = "recycler" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzn" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "recycler" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzo" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/fragile, -/obj/item/clothing/head/helmet/space/fragile, -/obj/item/tank/internals/air, -/obj/item/flashlight, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"bzp" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"bzq" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/warning/pods{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bzr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 - }, -/obj/machinery/meter, -/turf/closed/wall, -/area/hallway/primary/aft) -"bzs" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bzt" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bzu" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "MiningConveyer" - }, -/turf/open/floor/plating/airless, -/area/quartermaster/miningoffice) -"bzv" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "MiningConveyer" - }, -/obj/structure/plasticflaps, -/turf/open/floor/plating/airless, -/area/quartermaster/miningoffice) -"bzw" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 9 - }, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bzx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Interrogation Room"; - req_access_txt = "63" - }, -/turf/open/floor/plasteel/dark, -/area/security/brig) -"bzy" = ( -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bzz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/gateway) -"bzA" = ( -/obj/machinery/power/apc{ - areastring = "/area/medical/chemistry"; - dir = 1; - name = "Chemistry APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bzB" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bzC" = ( -/obj/structure/closet/toolcloset, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bzD" = ( -/obj/structure/plasticflaps, -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor/preopen{ - id = "evablock"; - name = "EVA Router" - }, -/turf/open/floor/plating, -/area/router/eva) -"bzE" = ( -/obj/structure/plasticflaps, -/obj/structure/fans/tiny, -/obj/machinery/conveyor{ - dir = 4; - id = "router_off" - }, -/turf/open/floor/plating, -/area/router) -"bzF" = ( -/obj/structure/window/reinforced/spawner, -/obj/machinery/conveyor{ - dir = 4; - id = "router_off" - }, -/turf/open/floor/plating, -/area/router) -"bzG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bzH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzI" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bzJ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"bzK" = ( -/obj/machinery/disposal/bin{ - name = "Chapel Corpse Delivery" - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/full, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"bzL" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - id = "recycler" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzM" = ( -/obj/structure/window/reinforced/spawner, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/router) -"bzN" = ( -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"bzO" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "recycler"; - name = "Recycler Conveyor Control" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bzP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plating, -/area/router) -"bzQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/chapel) -"bzR" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"bzS" = ( -/obj/structure/table, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/healthanalyzer, -/obj/item/reagent_containers/spray/cleaner, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"bzT" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/port/central"; - dir = 4; - name = "Central Port Maintenance APC"; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/maintenance/port/central) -"bzU" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 6 - }, -/obj/machinery/meter, -/turf/closed/wall, -/area/hallway/primary/aft) -"bzV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"bzW" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plating, -/area/storage/tech) -"bzX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Toxins Launch Room"; - req_access_txt = "7;8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/science/mixing) -"bzY" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"bzZ" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/quartermaster/miningoffice) -"bAa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bAb" = ( -/turf/open/floor/plating/airless, -/area/science/xenobiology) -"bAc" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/gateway) -"bAd" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Central Starboard Exterior Access"; - req_access_txt = "13" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"bAe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/router) -"bAf" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/science/xenobiology) -"bAg" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"bAh" = ( -/obj/item/reagent_containers/food/condiment/pack/mustard{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/condiment/pack/ketchup{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/item/reagent_containers/food/condiment/peppermill{ - pixel_x = -5; - pixel_y = 7 - }, -/obj/item/reagent_containers/food/condiment/saltshaker{ - pixel_x = 1; - pixel_y = 3 - }, -/obj/structure/table/wood/fancy, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bAi" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/router) -"bAj" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/janitor) -"bAk" = ( -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Recycler"; - req_one_access_txt = "12;50" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bAl" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/science/mixing) -"bAm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/cigbutt, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/router) -"bAn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/carpet/green, -/area/crew_quarters/heads/hop) -"bAo" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"bAp" = ( -/obj/structure/bed, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/item/bedsheet/purple, -/obj/effect/landmark/start/janitor, -/turf/open/floor/plasteel, -/area/janitor) -"bAq" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"bAr" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/router) -"bAs" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bAt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Fore Maintenance - Starboard"; - pixel_x = 22 - }, -/obj/structure/sign/warning{ - name = "\improper CONSTRUCTION AREA"; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"bAu" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bAv" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/structure/bed, -/obj/item/bedsheet/qm, -/obj/effect/landmark/start/quartermaster, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bAw" = ( -/obj/item/paper/fluff/bee_objectives, -/obj/item/toy/plush/beeplushie, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/hor) -"bAx" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "recycler" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bAy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bAz" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"bAA" = ( -/obj/structure/lattice, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/violet/hidden{ - dir = 10 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bAB" = ( -/obj/item/beacon, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bAC" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bAD" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/window/eastleft{ - name = "Chemistry Desk"; - req_access_txt = "33" - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bAE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/machinery/button/door{ - id = "chem1"; - name = "Shutters Control Button"; - pixel_x = -8; - pixel_y = 24; - req_access_txt = "29" - }, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = 32 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bAF" = ( -/obj/machinery/gateway/centerstation, -/turf/open/floor/engine, -/area/gateway) -"bAG" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/science/mixing) -"bAH" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bAI" = ( -/obj/machinery/photocopier, -/obj/machinery/requests_console{ - department = "Law Office"; - name = "Law Office RC"; - pixel_y = 32 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/lawoffice) -"bAJ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/clothing/neck/stethoscope, -/obj/item/clothing/glasses/hud/health, -/obj/item/stamp/cmo, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/heads/cmo"; - dir = 1; - name = "Chief Medical Officer's Office APC"; - pixel_y = 24 - }, -/mob/living/simple_animal/pet/cat/Runtime, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"bAK" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bAL" = ( -/obj/structure/sign/warning{ - name = "\improper KEEP CLEAR: WASTE EJECTION"; - pixel_x = -32 - }, -/turf/open/space/basic, -/area/space) -"bAM" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bAN" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/fragile, -/obj/item/clothing/head/helmet/space/fragile, -/obj/item/tank/internals/air, -/obj/item/flashlight, -/obj/machinery/airalarm{ - dir = 1; - locked = 0; - pixel_y = -22 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"bAO" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/maintenance/department/chapel) -"bAP" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bAQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bAR" = ( -/obj/machinery/door/airlock/engineering/glass{ - name = "Thermo-Electric Generator Room"; - req_access_txt = "10" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"bAS" = ( -/turf/closed/wall/r_wall/rust, -/area/maintenance/disposal) -"bAT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bAU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bAV" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bAW" = ( -/obj/structure/sign/poster/official/get_your_legs, -/turf/closed/wall, -/area/hallway/secondary/exit) -"bAX" = ( -/obj/structure/table/wood, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/item/paper/fluff/cogstation/letter_cap{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/item/flashlight/lamp, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/captain) -"bAY" = ( -/obj/machinery/status_display, -/turf/closed/wall, -/area/hallway/secondary/exit) -"bAZ" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet, -/area/chapel/main) -"bBa" = ( -/obj/structure/sign/poster/official/help_others, -/turf/closed/wall, -/area/hallway/secondary/exit) -"bBb" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/grille/broken, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/department/chapel) -"bBc" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 8 - }, -/area/hallway/secondary/exit) -"bBd" = ( -/obj/structure/table, -/obj/item/reagent_containers/food/snacks/popcorn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"bBe" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/structure/sign/warning/pods{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bBf" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/storage/tech) -"bBg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/storage/tech) -"bBh" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "recycler" - }, -/obj/structure/sign/warning/vacuum{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBi" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bBj" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/highcap/ten_k{ - areastring = "/area/crew_quarters/heads/captain"; - dir = 4; - name = "Captain's Quarters APC"; - pixel_x = 26 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"bBk" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/router) -"bBl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"bBm" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/hallway/secondary/exit) -"bBn" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bBo" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/door/airlock/engineering/glass{ - name = "Thermo-Electric Generator"; - req_one_access_txt = "10;24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"bBp" = ( -/obj/machinery/conveyor/inverted{ - dir = 9; - id = "recycler" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBq" = ( -/obj/machinery/recycler, -/obj/machinery/conveyor{ - dir = 4; - id = "recycler" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBr" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "recycler" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBs" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bBt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/captain) -"bBu" = ( -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"bBv" = ( -/turf/closed/wall, -/area/router) -"bBw" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/hallway/secondary/exit) -"bBx" = ( -/obj/structure/table, -/obj/item/storage/toolbox/electrical, -/obj/item/clothing/gloves/color/yellow, -/obj/item/multitool, -/obj/item/t_scanner, -/turf/open/floor/plating, -/area/storage/tech) -"bBy" = ( -/obj/machinery/recharge_station, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bBz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/conveyor{ - dir = 4; - id = "EngiCargoConveyer" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bBA" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/structure/ore_box, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bBB" = ( -/obj/machinery/conveyor/auto{ - id = "router" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 4 - }, -/turf/open/floor/plating, -/area/router) -"bBC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/router) -"bBD" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/conveyor{ - dir = 4; - id = "recycler" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBE" = ( -/obj/structure/grille, -/obj/machinery/power/terminal, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"bBF" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/router) -"bBG" = ( -/obj/machinery/conveyor/inverted{ - dir = 10; - id = "recycler" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bBH" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/router) -"bBI" = ( -/obj/machinery/computer/shuttle/mining, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bBJ" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"bBK" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/door{ - id = "recycleraccess"; - name = "Recycler Access Control"; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bBL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bBM" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bBN" = ( -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/mixing) -"bBO" = ( -/turf/closed/wall/r_wall, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"bBP" = ( -/obj/machinery/door/firedoor, -/obj/structure/table/reinforced, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/door/window/eastright{ - name = "Chemistry Desk"; - req_access_txt = "33" - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bBQ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"bBR" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 1; - name = "Computer Core APC"; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"bBS" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"bBT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bBU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/structure/sign/departments/cargo{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bBV" = ( -/obj/machinery/light/small, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/router) -"bBW" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bBX" = ( -/obj/machinery/door/airlock/external{ - name = "Routing Depot"; - req_one_access_txt = "10;31" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/router) -"bBY" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - name = "EVA Router"; - req_access_txt = "19" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/router/eva) -"bBZ" = ( -/turf/closed/wall, -/area/hallway/secondary/exit) -"bCa" = ( -/obj/machinery/power/smes/engineering, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"bCb" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"bCc" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/router/eva) -"bCd" = ( -/obj/effect/landmark/start/captain, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/captain) -"bCe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Head of Personnel's Desk"; - departmentType = 5; - name = "Head of Personnel RC"; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) -"bCf" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bCg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bCh" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/medbay/central) -"bCi" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bCj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/disposal) -"bCk" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/turf/closed/wall, -/area/maintenance/disposal) -"bCl" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/machinery/atmospherics/components/binary/valve/digital/on{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"bCm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bCn" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"bCo" = ( -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"bCp" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bCq" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "recycler" - }, -/obj/machinery/door/poddoor{ - id = "recycleraccess"; - name = "Recycler Access" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bCr" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bCs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bCt" = ( -/obj/effect/turf_decal/bot, -/obj/structure/table, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/storage/box/engineer{ - pixel_y = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"bCu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/router/eva) -"bCv" = ( -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bCw" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/machinery/conveyor/auto{ - dir = 8; - id = "eva" - }, -/turf/open/floor/plating, -/area/router/eva) -"bCx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bCy" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/spawner/north, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/conveyor/auto{ - dir = 8; - id = "eva" - }, -/turf/open/floor/plating, -/area/router/eva) -"bCz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/under/misc/overalls, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plasteel, -/area/storage/primary) -"bCA" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bCB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bCC" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"bCD" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 29 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bCE" = ( -/obj/machinery/conveyor/auto{ - dir = 8; - id = "eva" - }, -/obj/structure/plasticflaps, -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor/preopen{ - id = "evablock"; - name = "EVA Router" - }, -/turf/open/floor/plating, -/area/router/eva) -"bCF" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/circuit, -/area/ai_monitored/turret_protected/ai) -"bCG" = ( -/obj/item/cigbutt, -/obj/item/radio/intercom{ - frequency = 1359; - name = "Station Intercom (Security)"; - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bCH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bCI" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bCJ" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/kitchen/backroom) -"bCK" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bCL" = ( -/turf/closed/wall/rust, -/area/security/detectives_office) -"bCM" = ( -/turf/closed/wall/r_wall/rust, -/area/security/detectives_office) -"bCN" = ( -/obj/structure/filingcabinet, -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bCO" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"bCP" = ( -/obj/structure/table/wood, -/obj/item/storage/briefcase, -/obj/item/taperecorder, -/obj/item/radio{ - pixel_x = -6 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bCQ" = ( -/obj/structure/table/wood, -/obj/machinery/computer/med_data/laptop{ - dir = 8; - pixel_y = 2 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bCR" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/mass_driver{ - dir = 8; - id = "airbridge_in"; - name = "Router Driver" - }, -/turf/open/floor/plating, -/area/router) -"bCS" = ( -/obj/structure/closet, -/obj/machinery/camera{ - c_tag = "Central Plaza - Legal Desk"; - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"bCT" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/sorting/mail/flip, -/obj/machinery/conveyor{ - dir = 8; - id = "router_off" - }, -/turf/open/floor/plating, -/area/router) -"bCU" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/maintenance/disposal) -"bCV" = ( -/turf/open/floor/plating/airless, -/area/maintenance/disposal) -"bCW" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/obj/machinery/door/airlock/engineering/glass{ - name = "Thermo-Electric Generator"; - req_one_access_txt = "10;24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"bCX" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/item/reagent_containers/glass/beaker/sulphuric, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"bCY" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/sign/warning/nosmoking{ - pixel_x = 32 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bCZ" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "router_off" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/router) -"bDa" = ( -/obj/structure/bodycontainer/morgue, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"bDb" = ( -/mob/living/simple_animal/mouse/white{ - desc = "Wubba lubba dub dub."; - name = "Rick" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"bDc" = ( -/obj/machinery/vending/security, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bDd" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Aft Maintenance - Port"; - pixel_x = 22 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bDe" = ( -/obj/machinery/disposal/bin{ - name = "Corpse Delivery" - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/delivery/red, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"bDf" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/service, -/turf/open/floor/plating, -/area/storage/tech) -"bDg" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/medical, -/turf/open/floor/plating, -/area/storage/tech) -"bDh" = ( -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/rnd, -/turf/open/floor/plating, -/area/storage/tech) -"bDi" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock{ - name = "Service Hallway"; - req_one_access_txt = "25;26;28;35" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"bDj" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"bDk" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 15 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) -"bDl" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bDm" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/hallway/primary/aft"; - dir = 1; - name = "Aft Primary Hallway APC"; - pixel_x = 1; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bDn" = ( -/obj/machinery/icecream_vat, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/kitchen/backroom) -"bDo" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"bDp" = ( -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"bDq" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/kitchen/backroom) -"bDr" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/crew_quarters/kitchen/backroom) -"bDs" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/kitchen/backroom) -"bDt" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/crew_quarters/kitchen/backroom) -"bDu" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/item/book/manual/wiki/barman_recipes, -/obj/item/reagent_containers/rag, -/obj/structure/table/wood/fancy, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bDv" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"bDw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AIChamberShutter"; - name = "AI Chamber Shutters" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"bDx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"bDy" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bDz" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Service Hallway - Aft"; - pixel_x = 22 - }, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"bDA" = ( -/turf/closed/wall/r_wall, -/area/hallway/secondary/service) -"bDB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"bDC" = ( -/turf/open/floor/plating, -/area/hallway/secondary/service) -"bDD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/conveyor{ - dir = 8; - id = "router_off" - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/router) -"bDE" = ( -/obj/structure/closet/crate/freezer, -/obj/item/reagent_containers/food/snacks/store/cheesewheel, -/obj/item/reagent_containers/food/snacks/grown/pineapple, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, -/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/tomato, -/obj/item/reagent_containers/food/snacks/grown/bluecherries, -/obj/item/reagent_containers/food/snacks/grown/citrus/lime, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"bDF" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"bDG" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"bDH" = ( -/obj/machinery/atmospherics/components/unary/tank/air, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"bDI" = ( -/obj/structure/closet/crate/freezer, -/obj/effect/spawner/lootdrop/three_course_meal, -/obj/item/reagent_containers/food/snacks/chocolatebar, -/obj/item/reagent_containers/food/snacks/chocolatebar, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"bDJ" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"bDK" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/hallway/secondary/service) -"bDL" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bDM" = ( -/obj/structure/table/reinforced, -/obj/item/transfer_valve{ - pixel_x = 6 - }, -/obj/item/transfer_valve{ - pixel_x = 6 - }, -/obj/item/transfer_valve, -/obj/item/transfer_valve, -/obj/item/transfer_valve{ - pixel_x = -6 - }, -/obj/item/transfer_valve{ - pixel_x = -6 - }, -/obj/machinery/camera{ - c_tag = "Toxins Lab - Starboard"; - dir = 8; - pixel_y = -22 - }, -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (Common)"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bDN" = ( -/obj/machinery/vending/cola/random, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bDO" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"bDP" = ( -/obj/machinery/computer/message_monitor{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/circuit, -/area/bridge) -"bDQ" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bDR" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bDS" = ( -/turf/open/floor/plasteel/stairs, -/area/crew_quarters/bar) -"bDT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall, -/area/science/robotics/lab) -"bDU" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AIChamberShutter"; - name = "AI Chamber Shutters" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"bDV" = ( -/turf/open/floor/plasteel/stairs/left, -/area/crew_quarters/bar) -"bDW" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "AI Chamber"; - req_access_txt = "65" - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bDX" = ( -/turf/open/floor/plasteel/stairs/right, -/area/crew_quarters/bar) -"bDY" = ( -/obj/structure/sign/barsign, -/turf/closed/wall, -/area/crew_quarters/bar) -"bDZ" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 26 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bEa" = ( -/obj/structure/chair/stool/bar, -/turf/open/floor/carpet/green, -/area/crew_quarters/bar) -"bEb" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/carpet/green, -/area/crew_quarters/bar) -"bEc" = ( -/obj/structure/table, -/obj/item/radio/off{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/item/radio/off{ - pixel_x = 7; - pixel_y = -3 - }, -/obj/item/radio/off{ - pixel_x = 4; - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/circuit, -/area/bridge) -"bEd" = ( -/obj/machinery/vending/cigarette, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bEe" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/conveyor{ - dir = 8; - id = "router_off" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4 - }, -/turf/open/floor/plating, -/area/router) -"bEf" = ( -/obj/structure/reagent_dispensers, -/obj/effect/spawner/lootdrop/maintenance, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bEg" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"bEh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/conveyor{ - dir = 8; - id = "router_off" - }, -/turf/open/floor/plating, -/area/router) -"bEi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/maintenance/department/chapel) -"bEj" = ( -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/structure/closet/crate, -/obj/machinery/camera{ - c_tag = "Waste Disposal - Starboard" - }, -/obj/item/stack/tile/noslip/thirty, -/obj/structure/sign/poster/official/ue_no{ - pixel_y = 32 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/disposal) -"bEk" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bEl" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bEm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Personnel's Office"; - req_access_txt = "57" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) -"bEn" = ( -/obj/machinery/computer/card{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 28 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint) -"bEo" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"bEp" = ( -/turf/closed/wall/r_wall, -/area/maintenance/solars/starboard/fore) -"bEq" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/captain) -"bEr" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"bEs" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/ai_monitored/storage/eva"; - dir = 4; - name = "EVA APC"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/checker, -/area/ai_monitored/storage/eva) -"bEt" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"bEu" = ( -/obj/structure/sign/warning{ - name = "\improper CONSTRUCTION AREA"; - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bEv" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"bEw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "Starboard Bow Solar Maintenance"; - dir = 1 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"bEx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/machinery/conveyor{ - dir = 8; - id = "router_off" - }, -/turf/open/floor/plating, -/area/router) -"bEy" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/stock_parts/cell/high/plus, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"bEz" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/carpet/blue, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"bEA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - name = "Starboard Bow Solar Maintenance"; - req_access_txt = "10" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/fore) -"bEB" = ( -/obj/structure/rack, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/item/radio/off{ - pixel_x = 7; - pixel_y = 4 - }, -/obj/item/flashlight, -/obj/item/crowbar/red, -/obj/item/crowbar/red{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/radio/off{ - pixel_x = -8 - }, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/obj/machinery/camera{ - c_tag = "Starboard Bow Maintenance - Port"; - pixel_x = 22 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bEC" = ( -/obj/structure/table/glass, -/obj/item/storage/fancy/donut_box, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bED" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"bEE" = ( -/obj/structure/table, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/under/shorts/red, -/obj/item/clothing/gloves/boxing{ - pixel_y = 8 - }, -/obj/item/clothing/gloves/boxing{ - pixel_y = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"bEF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bEG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"bEH" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/kitchen/backroom) -"bEI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"bEJ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bEK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/obj/machinery/space_heater, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"bEL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bEM" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"bEN" = ( -/obj/machinery/computer/communications{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/machinery/camera{ - c_tag = "Bridge - Captain's Quarters"; - dir = 8; - pixel_y = -22 - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Captain's Desk"; - departmentType = 5; - name = "Captain RC"; - pixel_x = 30 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/captain) -"bEO" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"bEP" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/structure/sign/poster/official/high_class_martini{ - pixel_x = -32 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"bEQ" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/disposal"; - dir = 8; - name = "Waste Disposal APC"; - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bER" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/turf/open/floor/carpet/green, -/area/crew_quarters/bar) -"bES" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet/blue, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"bET" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"bEU" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"bEV" = ( -/obj/item/radio/intercom{ - frequency = 1359; - name = "Station Intercom (Security)"; - pixel_x = 26 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bEW" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bEX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"bEY" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/router) -"bEZ" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "AIChamberShutter"; - name = "AI Chamber Shutters" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai) -"bFa" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plating, -/area/router) -"bFb" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/router) -"bFc" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bFd" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/chapel) -"bFe" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/reagent_containers/glass/bucket, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"bFf" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/aiModule/supplied/oxygen{ - pixel_x = 2; - pixel_y = 10 - }, -/obj/item/aiModule/supplied/quarantine{ - pixel_x = 1; - pixel_y = 8 - }, -/obj/item/aiModule/zeroth/oneHuman{ - pixel_y = 4 - }, -/obj/effect/spawner/lootdrop/aimodule_harmful{ - pixel_x = -1; - pixel_y = 2 - }, -/obj/item/aiModule/supplied/protectStation{ - pixel_x = -2 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"bFg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/suit_storage_unit/engine, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"bFh" = ( -/obj/effect/turf_decal/tile/brown, -/obj/machinery/light, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bFi" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bFj" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"bFk" = ( -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"bFl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/xenobiology) -"bFm" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line, -/obj/item/paper_bin, -/obj/item/pen/fourcolor, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bFn" = ( -/turf/open/floor/plating/asteroid, -/area/chapel/main) -"bFo" = ( -/obj/machinery/smartfridge/extract/preloaded, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bFp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bFq" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line, -/obj/item/slime_scanner, -/obj/item/slime_scanner, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bFr" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bFs" = ( -/obj/machinery/light{ - dir = 1; - light_color = "#c1caff" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bFt" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bFu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics"; - name = "robotics lab shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"bFv" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"bFw" = ( -/obj/machinery/monkey_recycler, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/science/xenobiology"; - name = "Xenobiology Lab APC"; - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bFx" = ( -/obj/machinery/mecha_part_fabricator, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bFy" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/captain) -"bFz" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/item/paper/guides/cogstation/janitor, -/turf/open/floor/plasteel, -/area/janitor) -"bFA" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bFB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/science/lab) -"bFC" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/vending/snack/random, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bFD" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bFE" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/maintenance/aft) -"bFF" = ( -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/storage/tech) -"bFG" = ( -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bFH" = ( -/obj/machinery/power/apc{ - name = "Customs APC"; - pixel_y = -24 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"bFI" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"bFJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bFK" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"bFL" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"bFM" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"bFN" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"bFO" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"bFP" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"bFQ" = ( -/obj/structure/table, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/under/shorts/blue, -/obj/item/clothing/gloves/boxing/blue{ - pixel_y = 8 - }, -/obj/item/clothing/gloves/boxing/blue{ - pixel_y = 8 - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"bFR" = ( -/obj/item/kirbyplants{ - icon_state = "plant-08" - }, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"bFS" = ( -/obj/machinery/light, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"bFT" = ( -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"bFU" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"bFV" = ( -/obj/structure/window/reinforced, -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"bFW" = ( -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"bFX" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bFY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/noticeboard{ - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bFZ" = ( -/obj/machinery/chem_heater, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bGa" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bGb" = ( -/obj/machinery/conveyor/auto{ - id = "router" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/router) -"bGc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"bGd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"bGe" = ( -/mob/living/simple_animal/crab/Coffee, -/turf/open/floor/plating/asteroid, -/area/chapel/main) -"bGf" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/security/main) -"bGg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"bGh" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/violet/visible{ - dir = 10 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bGi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"bGj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"bGk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/router) -"bGl" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/sign/poster/contraband/punch_shit{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"bGm" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"bGn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bGo" = ( -/obj/structure/rack, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/head/hardhat/red{ - pixel_y = 6 - }, -/obj/item/clothing/mask/gas, -/obj/item/tank/internals/air, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bGp" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"bGq" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 2; - name = "2maintenance loot spawner" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/fore) -"bGr" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bGs" = ( -/obj/machinery/vending/assist, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"bGt" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bGu" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"bGv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Arcade" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet/blue, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"bGw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Fitness Room" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"bGx" = ( -/obj/effect/spawner/structure/window, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/crew_quarters/fitness) -"bGy" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_x = 26 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/button/massdriver{ - id = "eng_in"; - name = "mass driver button (Engineering)"; - pixel_x = 24; - pixel_y = -8 - }, -/obj/machinery/button/massdriver{ - id = "router_out"; - name = "mass driver button (Other)"; - pixel_x = 24; - pixel_y = 12 - }, -/turf/open/floor/plasteel, -/area/router) -"bGz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/fore) -"bGA" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bGB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"bGC" = ( -/obj/structure/closet/emcloset, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/camera{ - c_tag = "Starboard Quarter Maintenance - Starboard"; - network = list("ss13","rd") - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bGD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"bGE" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bGF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Starboard Quarter Solar Access"; - req_access_txt = "10" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"bGG" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"bGH" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/spawner/lootdrop/grille_or_trash, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bGI" = ( -/turf/closed/wall/r_wall, -/area/hallway/primary/central) -"bGJ" = ( -/obj/structure/rack, -/obj/item/storage/box/bodybags, -/obj/item/clothing/gloves/color/grey, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"bGK" = ( -/obj/machinery/conveyor{ - id = "starboard_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"bGL" = ( -/obj/structure/chair{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bGM" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-20"; - pixel_y = 3 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bGN" = ( -/obj/structure/closet/wardrobe/white, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bGO" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/machinery/door/window/eastright{ - name = "Bathroom Stall" - }, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet) -"bGP" = ( -/obj/machinery/mass_driver{ - dir = 1; - id = "secserv"; - name = "Router Driver" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"bGQ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/violet/hidden, -/turf/open/space/basic, -/area/space/nearstation) -"bGR" = ( -/obj/structure/closet/wardrobe/grey, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/clothing/under/misc/staffassistant, -/obj/item/clothing/under/misc/staffassistant, -/obj/item/clothing/under/misc/staffassistant, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bGS" = ( -/obj/structure/toilet{ - dir = 4 - }, -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/machinery/door/window/eastright{ - name = "Bathroom Stall" - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet) -"bGT" = ( -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet) -"bGU" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/closed/wall, -/area/maintenance/port/fore) -"bGV" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/closed/wall, -/area/maintenance/port/fore) -"bGW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/maintenance/port/fore) -"bGX" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"bGY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"bGZ" = ( -/obj/structure/closet/crate/internals, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/router/eva) -"bHa" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 4; - light_color = "#d8b1b1" - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/router/eva"; - dir = 4; - name = "EVA Router APC"; - pixel_x = 24 - }, -/obj/machinery/button/door{ - id = "evablock"; - name = "Router Access Control"; - pixel_x = 24; - pixel_y = 10; - req_access_txt = "19" - }, -/turf/open/floor/plasteel, -/area/router/eva) -"bHb" = ( -/obj/structure/closet/wardrobe/black, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bHc" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/structure/window/reinforced/spawner/north, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/router) -"bHd" = ( -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bHe" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/violet/hidden, -/turf/open/space/basic, -/area/space/nearstation) -"bHf" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bHg" = ( -/obj/machinery/atmospherics/pipe/simple/violet/visible, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bHh" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"bHi" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"bHj" = ( -/obj/structure/table, -/obj/structure/bedsheetbin/towel, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bHk" = ( -/turf/closed/wall, -/area/crew_quarters/locker) -"bHl" = ( -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"bHm" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg1" - }, -/area/maintenance/port/fore) -"bHn" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bHo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bHp" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"bHq" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bHr" = ( -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bHs" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bHt" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bHu" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bHv" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/clothing/under/misc/staffassistant, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bHw" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/item/clothing/under/misc/staffassistant, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bHx" = ( -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bHy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/item/kirbyplants{ - icon_state = "plant-14" - }, -/turf/open/floor/plasteel, -/area/crew_quarters/locker) -"bHz" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"bHA" = ( -/obj/machinery/atmospherics/pipe/simple/violet/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"bHB" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/locker) -"bHC" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bHD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"bHE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bHF" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/timer{ - pixel_x = -5 - }, -/obj/item/assembly/timer{ - pixel_y = -7 - }, -/obj/item/assembly/timer{ - pixel_y = 6 - }, -/obj/item/assembly/timer{ - pixel_x = 8 - }, -/obj/machinery/airalarm/unlocked{ - dir = 8; - pixel_x = 24 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bHG" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"bHH" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/space_cube{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/gateway) -"bHI" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"bHJ" = ( -/obj/item/kirbyplants{ - icon_state = "plant-03" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"bHK" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/medical/morgue) -"bHL" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bHM" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/storage/tech) -"bHN" = ( -/turf/closed/wall, -/area/maintenance/solars/starboard/aft) -"bHO" = ( -/obj/machinery/atmospherics/pipe/simple/violet/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"bHP" = ( -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"bHQ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bHR" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bHS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"bHT" = ( -/obj/machinery/computer/camera_advanced/xenobio{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bHU" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bHV" = ( -/obj/machinery/processor/slime, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bHW" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bHX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Port Bow Maintenance"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bHY" = ( -/obj/machinery/computer/camera_advanced/xenobio{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bHZ" = ( -/turf/closed/indestructible{ - desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; - icon_state = "riveted"; - name = "hyper-reinforced wall" - }, -/area/science/test_area) -"bIa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bIb" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bIc" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/sorting/mail{ - dir = 1; - sortType = 14 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bId" = ( -/obj/structure/table, -/obj/item/mmi, -/obj/item/mmi, -/obj/item/storage/box/bodybags, -/obj/structure/window/reinforced/spawner/west, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"bIe" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 1 - }, -/obj/item/stack/sheet/glass/fifty{ - pixel_x = 1 - }, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/obj/machinery/requests_console{ - department = "Robotics"; - departmentType = 2; - name = "Robotics RC"; - pixel_y = 31; - receive_ore_updates = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bIf" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/door/airlock/maintenance{ - name = "Chemistry Maintenance"; - req_access_txt = "5; 33" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/medical/chemistry) -"bIg" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/item/reagent_containers/food/snacks/chips, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bIh" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/delivery/white, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bIi" = ( -/obj/machinery/smartfridge/chemistry/preloaded, -/turf/closed/wall, -/area/medical/chemistry) -"bIj" = ( -/obj/structure/table/optable{ - name = "Robotics Operating Table" - }, -/obj/item/tank/internals/anesthetic, -/obj/item/clothing/mask/breath, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"bIk" = ( -/turf/closed/wall/r_wall, -/area/science/robotics/lab) -"bIl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"bIm" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bIn" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#cee5d2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bIo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/directions/evac{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"bIp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"bIq" = ( -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bIr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"bIs" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bIt" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bIu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_access_txt = "5;6" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"bIv" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"bIw" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"bIx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bIy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "External Solar Access"; - req_access_txt = "10;13" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"bIz" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"bIA" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"bIB" = ( -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"bIC" = ( -/obj/machinery/conveyor/auto{ - id = "disposal" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bID" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"bIE" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"bIF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"bIG" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bIH" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bII" = ( -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bIJ" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bIK" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/item/extinguisher{ - pixel_x = -7; - pixel_y = 3 - }, -/obj/item/extinguisher, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bIL" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/reagent_containers/glass/beaker/large, -/obj/item/reagent_containers/dropper, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bIM" = ( -/obj/machinery/shower{ - desc = "The HS-451. Standard Nanotrasen Hygiene Division design, although it looks like this one was installed more recently."; - dir = 8; - name = "emergency shower"; - pixel_y = -4 - }, -/obj/structure/window/reinforced/spawner/north, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"bIN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bIO" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bIP" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bIQ" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bIR" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bIS" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bIT" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/violet/hidden, -/turf/open/space/basic, -/area/space/nearstation) -"bIU" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bIV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"bIW" = ( -/obj/structure/table/wood, -/obj/machinery/light, -/obj/item/reagent_containers/food/drinks/bottle/absinthe, -/obj/item/stack/spacecash/c20, -/obj/item/coin/gold, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/carpet/green, -/area/crew_quarters/heads/hop) -"bIX" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/chapel) -"bIY" = ( -/obj/machinery/atmospherics/pipe/simple/violet/hidden, -/turf/open/space/basic, -/area/space) -"bIZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bJa" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bJb" = ( -/obj/machinery/bloodbankgen, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bJc" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bJd" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bJe" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bJf" = ( -/obj/machinery/door/airlock/maintenance{ - name = "Chemistry Maintenance"; - req_access_txt = "5; 33" - }, -/obj/machinery/door/firedoor, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"bJg" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/storage/box/rxglasses{ - pixel_x = 2 - }, -/obj/item/pen, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bJh" = ( -/obj/structure/sign/warning/biohazard, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/medical/morgue) -"bJi" = ( -/obj/structure/bodycontainer/morgue, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"bJj" = ( -/obj/machinery/atmospherics/pipe/simple/violet/visible{ - dir = 6 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bJk" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"bJl" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bJm" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/lawoffice"; - dir = 1; - name = "Information Office APC"; - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"bJn" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/item/clothing/mask/muzzle, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bJo" = ( -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit) -"bJp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bJq" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit) -"bJr" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ - dir = 1 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"bJs" = ( -/obj/structure/rack, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/item/clothing/suit/hooded/wintercoat/science, -/obj/item/clothing/suit/hooded/wintercoat/science, -/obj/item/clothing/shoes/winterboots, -/obj/item/clothing/shoes/winterboots, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bJt" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bJu" = ( -/obj/effect/turf_decal/loading_area, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/science/lab"; - dir = 8; - name = "Research and Development APC"; - pixel_x = -24 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bJv" = ( -/obj/machinery/atmospherics/pipe/simple/violet/visible{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bJw" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bJx" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bJy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/public/glass, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bJz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"bJA" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/research{ - name = "Circuitry Lab"; - req_access_txt = "47" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"bJB" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bJC" = ( -/obj/machinery/camera{ - c_tag = "Library"; - network = list("ss13","rd") - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"bJD" = ( -/obj/machinery/disposal/bin{ - name = "Corpse Disposal Unit" - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/stripes/red/full, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"bJE" = ( -/obj/machinery/mecha_part_fabricator, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bJF" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#cee5d2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bJG" = ( -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bJH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"bJI" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bJJ" = ( -/obj/machinery/computer/med_data, -/obj/structure/window/reinforced/spawner/east, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"bJK" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/medical/medbay/lobby) -"bJL" = ( -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"bJM" = ( -/obj/machinery/camera/preset/toxins{ - dir = 4 - }, -/obj/item/target, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bJN" = ( -/obj/machinery/clonepod, -/obj/effect/turf_decal/bot, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"bJO" = ( -/obj/structure/table, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/obj/item/storage/firstaid/radbgone, -/obj/item/reagent_containers/glass/beaker/synthflesh, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"bJP" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"bJQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"bJR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bJS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bJT" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bJU" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"bJV" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ - dir = 1; - name = "euthanization chamber freezer" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bJW" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bJX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bJY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/science/mixing) -"bJZ" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology - Main Access"; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bKa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bKb" = ( -/obj/machinery/chem_heater, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bKc" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -6 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 4 - }, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bKd" = ( -/obj/structure/table, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/assembly/flash/handheld, -/obj/item/clothing/glasses/welding, -/obj/item/clothing/glasses/welding, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/structure/disposalpipe/segment, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = 26 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bKe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics"; - name = "robotics lab shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"bKf" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bKg" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"bKh" = ( -/obj/machinery/door/window/westleft{ - name = "Operating Theatre"; - req_access_txt = "45" - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"bKi" = ( -/obj/machinery/disposal/bin{ - name = "Morgue Delivery Bin" - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/stripes/red/full, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"bKj" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bKk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Morgue Maintenance"; - req_access_txt = "6" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"bKl" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet, -/turf/open/floor/plating, -/area/router) -"bKm" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/item/storage/box/bodybags, -/obj/structure/table, -/obj/structure/table, -/obj/item/bodybag, -/obj/item/pen/blue, -/obj/item/pen/red{ - pixel_y = 6 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"bKn" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/red/full, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"bKo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/quartermaster/miningoffice) -"bKp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hop) -"bKq" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bKr" = ( -/obj/item/stack/packageWrap, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/router) -"bKs" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bKt" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#cee5d2" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bKu" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bKv" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bKw" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/structure/sign/poster/official/nanotrasen_logo{ - pixel_y = -32 - }, -/turf/open/floor/wood, -/area/library) -"bKx" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"bKy" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bKz" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/genetics) -"bKA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/medical/genetics) -"bKB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bKC" = ( -/obj/structure/sign/warning/biohazard, -/turf/closed/wall, -/area/medical/genetics) -"bKD" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Mining Dock Ferry"; - req_access_txt = "48" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bKE" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bKF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bKG" = ( -/obj/machinery/computer/cargo/request{ - dir = 1 - }, -/obj/machinery/keycard_auth{ - pixel_x = 24; - pixel_y = -8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet/green, -/area/crew_quarters/heads/hop) -"bKH" = ( -/obj/item/beacon, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bKI" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/engine, -/area/science/mixing) -"bKJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/crew_quarters/heads/hop) -"bKK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hop) -"bKL" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/router) -"bKM" = ( -/turf/open/floor/engine, -/area/science/xenobiology) -"bKN" = ( -/obj/structure/table, -/obj/item/storage/backpack/duffelbag/med/surgery, -/obj/structure/window/reinforced/spawner/west, -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"bKO" = ( -/obj/structure/window/reinforced, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"bKP" = ( -/obj/machinery/door/window/southright, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"bKQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"bKR" = ( -/obj/structure/bookcase/random/religion, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"bKS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Genetics Lab"; - req_access_txt = "9" - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bKT" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bKU" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/vending/wardrobe/gene_wardrobe, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bKV" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/item/clipboard{ - pixel_y = 3 - }, -/obj/item/paper_bin, -/obj/item/hand_labeler, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bKW" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/folder/white, -/obj/item/storage/pill_bottle/mannitol{ - pixel_x = 4 - }, -/obj/item/storage/pill_bottle/mutadone, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bKX" = ( -/obj/structure/table_frame, -/obj/item/t_scanner{ - pixel_x = -4 - }, -/obj/machinery/camera{ - c_tag = "Supply - Warehouse Fore"; - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bKY" = ( -/turf/closed/wall, -/area/medical/genetics) -"bKZ" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"bLa" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bLb" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/item/stack/ore/glass, -/obj/item/stack/ore/iron, -/obj/item/stack/ore/silver, -/obj/item/stack/ore/silver, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bLc" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bLd" = ( -/mob/living/simple_animal/slime, -/turf/open/floor/engine, -/area/science/xenobiology) -"bLe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hop) -"bLf" = ( -/obj/machinery/door/window/eastleft{ - name = "Containment Pen"; - req_one_access_txt = "55" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bLg" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bLh" = ( -/obj/structure/bed, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = -28 - }, -/obj/item/bedsheet/captain, -/obj/effect/landmark/start/captain, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/captain) -"bLi" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bLj" = ( -/obj/machinery/door/window/westright{ - name = "Containment Pen"; - req_one_access_txt = "55" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bLk" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/captain) -"bLl" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bLm" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 1; - locked = 0; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"bLn" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/item/caution, -/obj/item/shovel, -/obj/item/stack/tile/plasteel{ - pixel_x = 10; - pixel_y = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bLo" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/junction/yjunction{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/router) -"bLp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"bLq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Genetics Lab"; - req_access_txt = "9" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bLr" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bLs" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/start/geneticist, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bLt" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bLu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bLv" = ( -/obj/machinery/light, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bLw" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 6 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bLx" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bLy" = ( -/obj/structure/disposaloutlet{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bLz" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"bLA" = ( -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/structure/table, -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/glass, -/obj/item/flashlight, -/obj/item/assembly/health, -/obj/item/assembly/voice, -/obj/item/assembly/timer, -/obj/item/assembly/infra, -/obj/item/assembly/igniter, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bLB" = ( -/obj/machinery/light, -/obj/item/target, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"bLC" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"bLD" = ( -/obj/structure/closet/firecloset, -/turf/open/floor/plating, -/area/maintenance/aft) -"bLE" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/button/ignition/incinerator/toxmix{ - pixel_x = -24; - pixel_y = 8 - }, -/obj/machinery/button/door/incinerator_vent_toxmix{ - pixel_x = -24; - pixel_y = -2 - }, -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/science/mixing) -"bLF" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bLG" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Research Aft"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bLH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bLI" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"bLJ" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bLK" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bLL" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bLM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/genetics) -"bLN" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bLO" = ( -/obj/item/pipe{ - pixel_x = -3 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/mob/living/simple_animal/bot/cleanbot{ - auto_patrol = 1; - icon_state = "cleanbot1"; - name = "Mopficcer Sweepsky" - }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bLP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bLQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bLR" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bLS" = ( -/obj/machinery/atmospherics/pipe/simple/violet/visible, -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bLT" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bLU" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bLV" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bLW" = ( -/obj/machinery/vending/coffee, -/turf/open/floor/plasteel/cafeteria, -/area/medical/medbay/central) -"bLX" = ( -/obj/item/kirbyplants{ - icon_state = "plant-02" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bLY" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bLZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bMa" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bMb" = ( -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bMc" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bMd" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/stripes/white/full, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bMe" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bMf" = ( -/obj/machinery/computer/scan_consolenew{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bMg" = ( -/obj/machinery/dna_scannernew, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"bMh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/captain) -"bMi" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bMj" = ( -/turf/closed/wall, -/area/medical/medbay/central) -"bMk" = ( -/turf/closed/wall, -/area/medical/virology) -"bMl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/medical/virology) -"bMm" = ( -/obj/structure/table/wood, -/obj/machinery/light, -/obj/item/clothing/under/misc/assistantformal{ - pixel_y = 4 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"bMn" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Monkey Pen"; - req_one_access_txt = "9;39" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bMo" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bMp" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bMq" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Starboard Quarter Maintenance - Port"; - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bMr" = ( -/obj/machinery/vending/wardrobe/viro_wardrobe, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bMs" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bMt" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 - }, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bMu" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bMv" = ( -/turf/open/floor/grass, -/area/medical/virology) -"bMw" = ( -/mob/living/carbon/monkey, -/turf/open/floor/grass, -/area/medical/virology) -"bMx" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/sign/warning/biohazard{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bMy" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/sign/warning/biohazard{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bMz" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/router"; - dir = 4; - name = "Router APC"; - pixel_x = 24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 19 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/router) -"bMA" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bMB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall, -/area/router) -"bMC" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bMD" = ( -/obj/structure/flora/tree/palm, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/grass, -/area/medical/virology) -"bME" = ( -/obj/structure/flora/tree/palm, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/turf/open/floor/grass, -/area/medical/virology) -"bMF" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/window/southright{ - name = "Cloning Access"; - req_one_access_txt = "9;45" - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bMG" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bMH" = ( -/obj/structure/table, -/obj/machinery/recharger, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/item/crowbar, -/obj/machinery/requests_console{ - department = "Mining"; - name = "Mining RC"; - pixel_x = -30 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bMI" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/grille/broken, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 4; - sortType = 15 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/router) -"bMJ" = ( -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bMK" = ( -/obj/structure/lattice, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/violet/hidden{ - dir = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bML" = ( -/obj/structure/flora/tree/palm, -/mob/living/carbon/monkey, -/turf/open/floor/grass, -/area/medical/virology) -"bMM" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/structure/lattice, -/turf/open/space/basic, -/area/space/nearstation) -"bMN" = ( -/obj/structure/closet/l3closet/virology, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bMO" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bMP" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bMQ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bMR" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bMS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall/rust, -/area/router) -"bMT" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/virologist, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bMU" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/table, -/obj/item/storage/box/donkpockets, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bMV" = ( -/obj/machinery/light, -/mob/living/carbon/monkey, -/turf/open/floor/grass, -/area/medical/virology) -"bMW" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/conveyor/auto{ - dir = 4; - id = "router" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/router) -"bMX" = ( -/obj/structure/lattice, -/obj/structure/sign/warning{ - name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/violet/hidden{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bMY" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bMZ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNa" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNb" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNc" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/chair/office/light{ - dir = 1 - }, -/obj/effect/landmark/start/virologist, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bNd" = ( -/obj/machinery/computer/atmos_alert{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engine/atmos) -"bNe" = ( -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/machinery/door/window/northleft{ - name = "AI Upload Chamber"; - req_one_access_txt = "65" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bNf" = ( -/obj/machinery/conveyor/auto{ - dir = 4; - id = "router" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/router) -"bNg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bNh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Virology Interior Airlock"; - req_access_txt = "39" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bNi" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/grass, -/area/medical/virology) -"bNj" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bNk" = ( -/obj/machinery/conveyor/auto{ - dir = 4; - id = "router" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/router) -"bNl" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/conveyor/auto{ - dir = 4; - id = "router" - }, -/turf/open/floor/plating, -/area/router) -"bNm" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/item/paper_bin, -/obj/item/pen/red, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bNn" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/mass_driver{ - dir = 4; - id = "router_out"; - name = "Router Driver" - }, -/turf/open/floor/plating, -/area/router) -"bNo" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "starboard_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"bNp" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"bNq" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bNr" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/bedsheetbin, -/obj/item/clothing/glasses/science, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bNs" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bNt" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bNu" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/grass, -/area/medical/virology) -"bNv" = ( -/obj/structure/sink{ - dir = 1; - pixel_y = 25 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bNw" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bNx" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bNy" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bNz" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bNA" = ( -/obj/machinery/smartfridge/chemistry/virology/preloaded, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bNB" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/item/clothing/gloves/color/latex, -/obj/item/healthanalyzer, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bNC" = ( -/obj/structure/table, -/obj/machinery/reagentgrinder, -/obj/machinery/light, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bND" = ( -/obj/machinery/computer/pandemic, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bNE" = ( -/obj/machinery/computer/station_alert{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/corner, -/area/engine/atmos) -"bNF" = ( -/turf/open/floor/plasteel/stairs, -/area/medical/medbay/central) -"bNG" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"bNH" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit) -"bNI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/departments/evac, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bNJ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/hallway/secondary/exit) -"bNK" = ( -/obj/machinery/power/solar{ - id = "aftstarboard"; - name = "Aft-Starboard Solar Array" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"bNL" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/solar/starboard/aft) -"bNM" = ( -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/oil, -/turf/open/floor/plasteel, -/area/maintenance/port/fore) -"bNN" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/router/eva) -"bNO" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"bNP" = ( -/obj/machinery/power/smes, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"bNQ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit) -"bNR" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"bNS" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/space/basic, -/area/solar/starboard/aft) -"bNT" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/port/fore) -"bNU" = ( -/obj/machinery/power/solar{ - id = "aftstarboard"; - name = "Aft-Starboard Solar Array" - }, -/obj/structure/cable, -/turf/open/floor/plasteel/airless/solarpanel, -/area/solar/starboard/aft) -"bNV" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bNW" = ( -/turf/open/floor/plasteel/stairs/left, -/area/hallway/secondary/exit) -"bNX" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/turf/open/floor/plasteel/stairs/right, -/area/hallway/secondary/exit) -"bNY" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/stairs/left, -/area/hallway/secondary/exit) -"bNZ" = ( -/turf/open/floor/plasteel/stairs/right, -/area/hallway/secondary/exit) -"bOa" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bOb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bOc" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/space/basic, -/area/solar/starboard/aft) -"bOd" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/space/basic, -/area/solar/starboard/aft) -"bOe" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external/glass{ - name = "Departures Shuttle Dock" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bOf" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/space/basic, -/area/solar/starboard/aft) -"bOg" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bOh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bOi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bOj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bOk" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space/basic, -/area/solar/starboard/aft) -"bOl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bOm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bOn" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Bathroom Maintenance"; - req_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/crew_quarters/toilet/restrooms) -"bOo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/docking, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"bOp" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bOq" = ( -/obj/machinery/power/tracker, -/obj/structure/cable, -/turf/open/floor/plating/airless, -/area/solar/starboard/aft) -"bOr" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"bOs" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister/bz, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bOt" = ( -/obj/structure/table, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/gateway) -"bOu" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/prox_sensor{ - pixel_x = 8 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 8 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 8 - }, -/obj/item/assembly/prox_sensor{ - pixel_x = 8 - }, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science RC"; - pixel_x = 30; - receive_ore_updates = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bOv" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"bOw" = ( -/obj/structure/lattice, -/obj/item/reagent_containers/food/drinks/bottle/grappa, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bOx" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/science/research{ - name = "Research Sector" - }) -"bOy" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#c1caff" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bOz" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"bOA" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"bOB" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/router/eva) -"bOC" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/closed/wall/r_wall, -/area/router/eva) -"bOD" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4 - }, -/obj/machinery/sparker/toxmix{ - pixel_x = 25 - }, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"bOE" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/item/hand_labeler, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bOF" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bOG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bOH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bOI" = ( -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/computer/security/telescreen{ - dir = 1; - name = "Test Chamber Monitor"; - network = list("xeno"); - pixel_y = 2 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bOJ" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/mob/living/simple_animal/pet/cat/space, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/captain) -"bOK" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/northright{ - name = "Secure Xenobiological Containment"; - req_one_access_txt = "55" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bOL" = ( -/obj/machinery/computer/card{ - dir = 8 - }, -/obj/machinery/keycard_auth{ - pixel_x = 8; - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/captain) -"bOM" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bON" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bOO" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bOP" = ( -/obj/machinery/shieldwallgen/xenobiologyaccess, -/turf/open/floor/plating, -/area/science/xenobiology) -"bOQ" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"bOR" = ( -/obj/structure/table/wood, -/obj/item/pinpointer/nuke, -/obj/item/card/id/captains_spare, -/obj/item/hand_tele, -/obj/item/disk/nuclear, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"bOS" = ( -/obj/structure/table/wood, -/obj/machinery/light, -/obj/item/storage/photo_album/Captain, -/obj/item/camera{ - pixel_y = -6 - }, -/obj/item/stamp/captain, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"bOT" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bOU" = ( -/obj/structure/disposaloutlet, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bOV" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"bOW" = ( -/obj/structure/bookcase/random/nonfiction, -/turf/open/floor/engine, -/area/science/xenobiology) -"bOX" = ( -/obj/structure/table/reinforced, -/obj/item/electropack, -/obj/item/assembly/signaler, -/turf/open/floor/engine, -/area/science/xenobiology) -"bOY" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/machinery/camera{ - c_tag = "Customs - Aft"; - dir = 4 - }, -/obj/structure/window/reinforced/spawner, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "HoPAft"; - name = "HoP Aft Desk Shutters" - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"bOZ" = ( -/obj/structure/bed, -/obj/item/bedsheet/purple, -/turf/open/floor/engine, -/area/science/xenobiology) -"bPa" = ( -/obj/item/beacon, -/turf/open/floor/engine, -/area/science/xenobiology) -"bPb" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/obj/item/assembly/igniter, -/turf/open/floor/engine, -/area/science/xenobiology) -"bPc" = ( -/obj/structure/chair/comfy/black, -/turf/open/floor/engine, -/area/science/xenobiology) -"bPd" = ( -/obj/structure/table/reinforced, -/obj/item/book/random/triple, -/turf/open/floor/engine, -/area/science/xenobiology) -"bPe" = ( -/obj/structure/table/reinforced, -/obj/item/modular_computer/laptop/preset/civilian, -/turf/open/floor/engine, -/area/science/xenobiology) -"bPf" = ( -/obj/machinery/light, -/turf/open/floor/engine, -/area/science/xenobiology) -"bPg" = ( -/obj/structure/chair{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bPh" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/violet/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/space/basic, -/area/space/nearstation) -"bPi" = ( -/obj/structure/chair{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"bPj" = ( -/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner, -/obj/machinery/light, -/turf/open/floor/engine, -/area/science/xenobiology) -"bPk" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/under/misc/staffassistant, -/obj/item/clothing/under/misc/staffassistant, -/obj/item/clothing/suit/apron/surgical, -/obj/item/clothing/suit/apron/surgical, -/turf/open/floor/engine, -/area/science/xenobiology) -"bPl" = ( -/obj/structure/chair/sofa/right, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/item/book/manual/wiki/research_and_development, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bPm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bPn" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bPo" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bPp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/window/reinforced/spawner/north, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bPq" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/mineral/stacking_machine{ - input_dir = 2 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bPr" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible, -/obj/machinery/atmospherics/pipe/simple/violet/hidden{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bPs" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bPt" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/bridge) -"bPu" = ( -/obj/effect/landmark/start/cook, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/cafeteria, -/area/crew_quarters/kitchen) -"bPv" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/yellow, -/obj/item/multitool, -/obj/item/multitool{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/t_scanner{ - pixel_x = -6; - pixel_y = 4 - }, -/obj/item/t_scanner{ - pixel_x = -4 - }, -/turf/open/floor/plasteel, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"bPw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bPx" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"bPy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"bPz" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bPA" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/violet/visible, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bPB" = ( -/obj/machinery/meter, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPC" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "Waste In" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPD" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/camera{ - c_tag = "Escape Hall - Fore"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bPE" = ( -/obj/structure/table/glass, -/obj/item/clipboard, -/obj/item/storage/crayons, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bPF" = ( -/obj/structure/table/glass, -/obj/item/storage/fancy/cigarettes, -/obj/item/lighter{ - pixel_x = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bPG" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bPH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bPI" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bPJ" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPK" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"bPL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bPM" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/storage/tech) -"bPN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bPO" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/effect/turf_decal/tile/red, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/hallway/secondary/exit) -"bPP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/medical/medbay/central) -"bPQ" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bPR" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bPS" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"bPT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white/corner{ - dir = 4 - }, -/area/hallway/secondary/exit) -"bPU" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/airlock/highsecurity{ - name = "AI Upload Access"; - req_access_txt = "16" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"bPV" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai) -"bPW" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/vehicle/ridden/atv, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bPX" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/violet/hidden{ - dir = 9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bPY" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bPZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/sorting/mail{ - sortType = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bQa" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bQb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/camera/motion{ - c_tag = "AI Foyer"; - network = list("minisat"); - pixel_x = 22 - }, -/obj/machinery/turretid{ - control_area = "/area/ai_monitored/turret_protected/ai"; - dir = 1; - name = "AI Chamber turret control"; - pixel_x = 5; - pixel_y = 24; - req_access_txt = "65" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"bQc" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"bQd" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bQe" = ( -/obj/structure/lattice, -/obj/structure/grille/broken, -/turf/open/space/basic, -/area/space/nearstation) -"bQf" = ( -/obj/structure/rack, -/obj/item/tank/jetpack/carbondioxide, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bQg" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=sci"; - location = "market" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bQh" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/conveyor{ - dir = 4; - id = "EngiCargoConveyer" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bQi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bQj" = ( -/obj/structure/bodycontainer/morgue{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"bQk" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bQl" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bQm" = ( -/obj/structure/bed/roller, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bQn" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bQo" = ( -/obj/structure/disposalpipe/junction/yjunction, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"bQp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"bQq" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/table/wood, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/item/modular_computer/laptop/preset/civilian, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/paper/guides/cogstation/letter_atmos, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bQr" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bQs" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit) -"bQt" = ( -/obj/machinery/conveyor/auto{ - dir = 5; - id = "router" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/router) -"bQu" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bQv" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 24 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bQw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bQx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bQy" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bQz" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bQA" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = -28 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"bQB" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/item/weldingtool, -/obj/item/wrench/medical, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bQC" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bQD" = ( -/obj/machinery/power/apc{ - name = "Tech Storage APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/storage/tech) -"bQE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bQF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bQG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bQH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bQI" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bQJ" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/power/apc{ - name = "Medbay Treatment Center APC"; - pixel_y = -24 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bQK" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start/atmospheric_technician, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bQL" = ( -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bQM" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bQN" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/space/basic, -/area/space/nearstation) -"bQO" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/space/basic, -/area/space/nearstation) -"bQP" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bQQ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/science/robotics/lab) -"bQR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/directions/evac{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"bQS" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/violet/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/space/basic, -/area/space/nearstation) -"bQT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/radio/intercom{ - frequency = 1447; - name = "Station Intercom (AI Private)"; - pixel_y = 24 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bQU" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"bQV" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/violet/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/space/basic, -/area/space/nearstation) -"bQW" = ( -/obj/machinery/conveyor/auto{ - dir = 4; - id = "router" - }, -/turf/open/floor/plating, -/area/router) -"bQX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bQY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bQZ" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/landmark/start/scientist, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bRa" = ( -/obj/item/cigbutt, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"bRb" = ( -/obj/machinery/door/window/southleft{ - name = "Captain's Equipment"; - req_access_txt = "20" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/captain) -"bRc" = ( -/obj/machinery/suit_storage_unit/captain, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"bRd" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/engine/storage"; - dir = 4; - name = "Canister Storage APC"; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/engine/storage{ - name = "Canister Storage" - }) -"bRe" = ( -/obj/machinery/computer/security/wooden_tv, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"bRf" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bRg" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bRh" = ( -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"bRi" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bRj" = ( -/obj/machinery/atmospherics/components/trinary/filter/flipped, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bRk" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bRl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/conveyor/auto{ - dir = 4; - id = "router" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/router) -"bRm" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bRn" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible, -/obj/machinery/atmospherics/pipe/simple/violet/hidden{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bRo" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/violet/hidden, -/turf/open/space/basic, -/area/space/nearstation) -"bRp" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/violet/hidden{ - dir = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bRq" = ( -/obj/machinery/portable_atmospherics/scrubber/huge/movable, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bRr" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bRs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bRt" = ( -/obj/structure/closet/wardrobe/miner, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/quartermaster/miningoffice"; - dir = 8; - name = "Mining Office APC"; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bRu" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bRv" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/violet/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space/basic, -/area/space/nearstation) -"bRw" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bRx" = ( -/obj/structure/table, -/obj/item/circuitboard/machine/cyborgrecharger, -/obj/item/disk/design_disk, -/obj/machinery/camera/motion{ - c_tag = "Computer Core"; - dir = 1; - network = list("minisat") - }, -/turf/open/floor/circuit/green, -/area/science/server{ - name = "Computer Core" - }) -"bRy" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bRz" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bRA" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/engine, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"bRB" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = 29 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bRC" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bRD" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = -6; - pixel_y = 2 - }, -/obj/item/reagent_containers/food/drinks/drinkingglass{ - pixel_x = 6; - pixel_y = 3 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"bRE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/conveyor/auto{ - dir = 4; - id = "router" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/router) -"bRF" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"bRG" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bRH" = ( -/obj/structure/chair/sofa/right, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = 29 - }, -/turf/open/floor/wood, -/area/medical/medbay/lobby) -"bRI" = ( -/turf/closed/wall/r_wall, -/area/medical/medbay/central) -"bRJ" = ( -/obj/structure/chair/sofa/left, -/obj/effect/landmark/start/assistant, -/obj/machinery/status_display{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Medbay - Waiting Room"; - network = list("ss13","rd") - }, -/turf/open/floor/wood, -/area/medical/medbay/lobby) -"bRK" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bRL" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bRM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/stairs/left, -/area/science/research{ - name = "Research Sector" - }) -"bRN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/stairs/medium, -/area/science/research{ - name = "Research Sector" - }) -"bRO" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bRP" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "E.V.A. Storage"; - req_access_txt = "18" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bRQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bRR" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bRS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bRT" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal/bin{ - name = "Lab Delivery" - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bRU" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bRV" = ( -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel/dark/side{ - dir = 9 - }, -/area/science/robotics/lab) -"bRW" = ( -/obj/effect/turf_decal/bot, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bRX" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bRY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bRZ" = ( -/obj/structure/bookcase/random/nonfiction, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"bSa" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/storage/belt/medolier, -/obj/item/clothing/neck/stethoscope, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bSb" = ( -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bSc" = ( -/obj/machinery/vending/wardrobe/medi_wardrobe, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bSd" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/loading_area, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/science/robotics/lab) -"bSe" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/landmark/start/roboticist, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/science/robotics/lab) -"bSf" = ( -/obj/structure/table, -/obj/item/analyzer, -/obj/item/healthanalyzer, -/obj/item/plant_analyzer, -/obj/item/aicard, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = 29 - }, -/turf/open/floor/plating, -/area/storage/tech) -"bSg" = ( -/obj/machinery/rnd/production/techfab/department/medical, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bSh" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/medbay/central) -"bSi" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bSj" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/xeno_spawn, -/obj/machinery/camera{ - c_tag = "Xenobiology - Kill Chamber"; - dir = 4 - }, -/turf/open/floor/circuit/telecomms, -/area/science/xenobiology) -"bSk" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/airlock/public/glass{ - name = "AI Access" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bSl" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bSm" = ( -/obj/machinery/modular_computer/console/preset/engineering, -/turf/open/floor/plasteel, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"bSn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/sign/warning/electricshock, -/turf/open/floor/plating, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"bSo" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"bSp" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"bSq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"bSr" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bSs" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bSt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/mineral/titanium/blue, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bSu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"bSv" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plating, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"bSw" = ( -/obj/machinery/power/port_gen/pacman, -/obj/machinery/light, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/turf/open/floor/plating, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"bSx" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/turf/open/floor/plasteel, -/area/engine/break_room) -"bSy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bSz" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/conveyor/auto{ - dir = 4; - id = "router" - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 11 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/router) -"bSA" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel/stairs/right, -/area/hallway/primary/central) -"bSB" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bSC" = ( -/turf/closed/wall, -/area/science/lab) -"bSD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/conveyor/auto{ - dir = 4; - id = "router" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/router) -"bSE" = ( -/turf/closed/wall/r_wall, -/area/science/lab) -"bSF" = ( -/obj/machinery/conveyor/auto{ - dir = 4; - id = "router" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/router) -"bSG" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/lab) -"bSH" = ( -/obj/structure/sign/departments/science, -/turf/closed/wall/r_wall, -/area/science/lab) -"bSI" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plating, -/area/router) -"bSJ" = ( -/obj/structure/closet/crate/science, -/obj/item/target, -/obj/item/target, -/obj/item/target/alien, -/obj/item/target/alien, -/obj/item/target/syndicate, -/obj/item/target/syndicate, -/obj/item/gun/energy/laser/practice, -/obj/item/gun/energy/laser/practice, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - areastring = "/area/science/circuit"; - dir = 1; - name = "Circuitry Lab APC"; - pixel_y = 24 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"bSK" = ( -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bSL" = ( -/turf/open/floor/plasteel/white, -/area/science/lab) -"bSM" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stack/cable_coil/red, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bSN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/light{ - dir = 1; - light_color = "#cee5d2" - }, -/obj/item/folder/white, -/obj/item/disk/design_disk, -/obj/item/disk/design_disk, -/obj/item/disk/tech_disk, -/obj/item/disk/tech_disk, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bSO" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/airlock/public/glass{ - name = "AI Access" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bSP" = ( -/obj/machinery/computer/rdconsole/core, -/turf/open/floor/plasteel, -/area/science/lab) -"bSQ" = ( -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bSR" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bSS" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bST" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bSU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bSV" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"bSW" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bSX" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/stripes/white/full, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medical)"; - pixel_x = 28; - pixel_y = 24 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"bSY" = ( -/obj/structure/table, -/obj/item/stock_parts/micro_laser{ - pixel_x = 4 - }, -/obj/item/stock_parts/micro_laser{ - pixel_x = 4 - }, -/obj/item/stock_parts/scanning_module{ - pixel_x = -6 - }, -/obj/item/stock_parts/scanning_module{ - pixel_x = -6 - }, -/obj/item/stock_parts/capacitor, -/obj/item/stock_parts/capacitor, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bSZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bTa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bTb" = ( -/turf/open/floor/plasteel, -/area/science/lab) -"bTc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/lab) -"bTd" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/matter_bin, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bTe" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/scientist, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bTf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bTg" = ( -/obj/machinery/power/apc/highcap/ten_k{ - areastring = "/area/science/robotics/mechbay"; - dir = 1; - name = "Mech Bay APC"; - pixel_y = 28 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"bTh" = ( -/obj/effect/turf_decal/bot, -/obj/effect/landmark/start/cyborg, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bTi" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark/side{ - dir = 5 - }, -/area/science/robotics/lab) -"bTj" = ( -/obj/structure/table, -/obj/item/reagent_containers/glass/beaker/large{ - pixel_x = -6 - }, -/obj/item/reagent_containers/glass/beaker{ - pixel_x = 4 - }, -/obj/item/reagent_containers/dropper, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bTk" = ( -/obj/item/rack_parts, -/obj/structure/table_frame, -/obj/item/flashlight, -/obj/item/flashlight, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/machinery/power/apc{ - areastring = "/area/quartermaster/warehouse"; - dir = 1; - name = "Warehouse APC"; - pixel_y = 24 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bTl" = ( -/obj/structure/table, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/item/clothing/glasses/welding, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bTm" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bTn" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bTo" = ( -/obj/structure/table/reinforced, -/obj/item/integrated_electronics/debugger, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"bTp" = ( -/obj/machinery/vending/wardrobe/law_wardrobe, -/obj/effect/turf_decal/bot, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"bTq" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/circuit) -"bTr" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"bTs" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/circuit) -"bTt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/closed/wall/r_wall, -/area/hallway/primary/central) -"bTu" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTv" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bTw" = ( -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTx" = ( -/obj/item/stack/tile/plasteel{ - pixel_x = 8; - pixel_y = 14 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bTy" = ( -/obj/item/kirbyplants, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bTz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bTA" = ( -/obj/structure/filingcabinet/medical, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bTB" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/medical/medbay/lobby) -"bTC" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bTD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bTE" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bTF" = ( -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/router) -"bTG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/circuit) -"bTH" = ( -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"bTI" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"bTJ" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/violet/hidden{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bTK" = ( -/turf/open/floor/engine/co2, -/area/engine/atmos) -"bTL" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"bTM" = ( -/obj/structure/table, -/obj/machinery/light, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 1; - pixel_y = 6 - }, -/obj/item/storage/toolbox/mechanical, -/obj/machinery/camera{ - c_tag = "Research - Development Lab"; - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science RC"; - pixel_y = -30; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bTN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/science/circuit) -"bTO" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"bTP" = ( -/obj/machinery/disposal/bin, -/obj/machinery/light, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"bTQ" = ( -/obj/machinery/vending/assist, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"bTR" = ( -/turf/closed/wall/r_wall, -/area/science/circuit) -"bTS" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/machinery/light/small{ - dir = 4; - light_color = "#d8b1b1" - }, -/obj/item/stock_parts/cell/high/plus, -/obj/item/radio/off{ - pixel_x = -3; - pixel_y = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bTT" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/hallway/primary/central) -"bTU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "recycler" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bTV" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "EngiCargoConveyer" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bTW" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space/basic, -/area/space/nearstation) -"bTX" = ( -/obj/effect/turf_decal/bot, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/status_display/ai{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bTY" = ( -/turf/open/floor/mineral/titanium/blue, -/area/hallway/primary/central) -"bTZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space/basic, -/area/space/nearstation) -"bUa" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Atmospherics - Entrance" - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bUb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/conveyor{ - dir = 4; - id = "EngiCargoConveyer" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bUc" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/router) -"bUd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bUe" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plating/airless, -/area/router/aux) -"bUf" = ( -/obj/structure/plasticflaps, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/conveyor{ - dir = 4; - id = "EngiCargoConveyer" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bUg" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/conveyor/auto{ - dir = 1; - id = "router" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/router) -"bUh" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bUi" = ( -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - locked = 0; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bUj" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bUk" = ( -/obj/structure/closet/crate, -/obj/effect/decal/cleanable/cobweb, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/window/reinforced/spawner/west, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bUl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bUm" = ( -/obj/structure/closet/crate/internals, -/obj/item/tank/internals/emergency_oxygen/double, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bUn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"bUo" = ( -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bUp" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor/auto{ - id = "router" - }, -/turf/open/floor/plating, -/area/router) -"bUq" = ( -/turf/closed/wall/r_wall, -/area/hallway/primary/aft) -"bUr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/hallway/primary/aft) -"bUs" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bUt" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/hallway/primary/central) -"bUu" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/gateway) -"bUv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/closed/wall/r_wall, -/area/hallway/primary/aft) -"bUw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUx" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"bUy" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUz" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"bUA" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"bUB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - areastring = "/area/engine/engine_smes"; - dir = 1; - name = "Power Monitoring APC"; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"bUC" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bUD" = ( -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bUE" = ( -/turf/open/floor/plasteel/stairs/right, -/area/hallway/primary/aft) -"bUF" = ( -/obj/machinery/doppler_array/research/science{ - dir = 8 - }, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bUG" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"bUH" = ( -/obj/machinery/shieldgen, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bUI" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bUJ" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/science/lab) -"bUK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Quartermaster's Office"; - req_access_txt = "31;41" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bUL" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/router) -"bUM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/quartermaster/qm) -"bUN" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/door/airlock/engineering{ - name = "Primary Tool Storage"; - req_access_txt = "11" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"bUO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/storage/primary"; - dir = 1; - name = "Primary Tool Storage APC"; - pixel_y = 24 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"bUP" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/closed/wall/r_wall, -/area/quartermaster/sorting) -"bUQ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "DeliveryDoor"; - name = "Cargo Delivery Door Control"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bUR" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/mob/living/simple_animal/bot/firebot, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bUS" = ( -/obj/structure/closet/secure_closet/quartermaster, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/item/clothing/suit/space/eva, -/obj/item/clothing/head/helmet/space/eva, -/obj/item/paper/fluff/cogstation/letter_qm, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"bUT" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/filingcabinet/filingcabinet, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bUU" = ( -/obj/item/beacon, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bUV" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/violet/hidden{ - dir = 10 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bUW" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/starboard/aft"; - dir = 1; - name = "Starboard Quarter Maintenance APC"; - pixel_y = 24 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bUX" = ( -/obj/structure/transit_tube/station/reverse/flipped{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"bUY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/item/grown/bananapeel, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/router) -"bUZ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/wirecutters, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bVa" = ( -/obj/machinery/light/small, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet/crate, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/router) -"bVb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/transit_tube/horizontal, -/turf/open/floor/plasteel, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"bVc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bVd" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bVe" = ( -/obj/machinery/photocopier, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bVf" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Power Monitoring"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"bVg" = ( -/obj/machinery/power/emitter, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner/west, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bVh" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bVi" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/chapel) -"bVj" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor/auto{ - id = "disposal" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bVk" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bVl" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bVm" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bVn" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"bVo" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bVp" = ( -/obj/machinery/computer/card/minor/rd{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"bVq" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bVr" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bVs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/start/cargo_technician, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bVt" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bVu" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_x = 26 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 1; - locked = 0; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/router) -"bVv" = ( -/obj/structure/sign/departments/xenobio{ - pixel_x = -32 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"bVw" = ( -/obj/machinery/conveyor/auto{ - dir = 1; - id = "cargo" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bVx" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/machinery/conveyor/auto{ - dir = 1; - id = "cargo" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bVy" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor/auto{ - dir = 1; - id = "cargo" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"bVz" = ( -/obj/structure/rack, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/head/hardhat/red{ - pixel_y = 6 - }, -/obj/item/clothing/mask/gas, -/obj/item/tank/internals/air, -/obj/item/extinguisher{ - pixel_x = -4 - }, -/obj/item/crowbar/red{ - pixel_x = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"bVA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall, -/area/router) -"bVB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bVC" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "AI SMES Access"; - req_one_access_txt = "10;24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bVD" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bVE" = ( -/obj/effect/landmark/start/atmospheric_technician, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bVF" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bVG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bVH" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/janitor) -"bVI" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVK" = ( -/obj/item/restraints/legcuffs/beartrap, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"bVL" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/noticeboard/rd{ - pixel_y = 28 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bVM" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bVN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "capblast"; - name = "blast door" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/captain) -"bVO" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bVP" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"bVQ" = ( -/obj/effect/turf_decal/bot, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bVR" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/sign/warning/securearea{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bVS" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#cee5d2" - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bVT" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bVU" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "38" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"bVV" = ( -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/lawoffice) -"bVW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"bVX" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bVY" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/southright{ - name = "Primary Tool Storage Desk"; - req_access_txt = "11" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"bVZ" = ( -/obj/machinery/power/apc{ - name = "Cargo Bay APC"; - pixel_y = -24 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"bWa" = ( -/turf/closed/wall/r_wall, -/area/science/research{ - name = "Research Sector" - }) -"bWb" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bWc" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light{ - dir = 1; - light_color = "#cee5d2" - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bWd" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/structure/sign/poster/official/wtf_is_co2{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"bWe" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Bridge" - }, -/turf/open/floor/plasteel, -/area/bridge) -"bWf" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWg" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Law Office"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/lawoffice) -"bWh" = ( -/obj/structure/table/wood, -/obj/item/flashlight/lamp/green, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/lawoffice) -"bWi" = ( -/obj/structure/table/wood, -/obj/item/cartridge/lawyer{ - pixel_x = 2; - pixel_y = 8 - }, -/obj/item/stamp/law, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/lawoffice) -"bWj" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/lawoffice) -"bWk" = ( -/obj/structure/table/wood, -/obj/item/modular_computer/laptop/preset/civilian, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/lawoffice) -"bWl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Toxins Storage"; - req_access_txt = "7;8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/science/mixing) -"bWm" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/engineering{ - name = "AI SMES Access"; - req_one_access_txt = "10;24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bWn" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bWo" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bWp" = ( -/obj/machinery/atmospherics/miner/n2o, -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bWq" = ( -/obj/structure/lattice, -/obj/machinery/camera{ - c_tag = "Routing Depot - Aft Exterior"; - pixel_x = 22 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bWr" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/camera{ - c_tag = "Research Entrance"; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bWs" = ( -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bWt" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bWu" = ( -/obj/machinery/vending/assist, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bWv" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bWw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/lawoffice) -"bWx" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bWy" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bWz" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bWA" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bWB" = ( -/obj/structure/rack, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/extinguisher, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bWC" = ( -/obj/machinery/shower{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bWD" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=2"; - freq = 1400; - location = "Medbay" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bWE" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWG" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"bWH" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel/stairs/medium, -/area/hallway/primary/central) -"bWI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bWJ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"bWK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/plating, -/area/engine/atmos) -"bWL" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bWM" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/camera{ - c_tag = "Central Hall - AI Access"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bWN" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/science/server{ - name = "Computer Core" - }) -"bWO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bWP" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/command{ - name = "Computer Core"; - req_access_txt = "30" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"bWQ" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bWR" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/science/research{ - name = "Research Sector" - }) -"bWS" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"bWT" = ( -/obj/structure/chair/sofa/left, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/landmark/start/scientist, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bWU" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bWV" = ( -/obj/machinery/vending/coffee, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bWW" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bWX" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bWY" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall/r_wall, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"bWZ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall, -/area/hallway/primary/aft) -"bXa" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/item/multitool{ - pixel_y = 4 - }, -/obj/item/book/manual/wiki/robotics_cyborgs, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"bXb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bXc" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/chapel) -"bXd" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"bXe" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/machinery/atmospherics/miner/toxins, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"bXf" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "EngiLockdown"; - name = "Engineering Emergency Lockdown"; - pixel_x = 24; - pixel_y = -6; - req_access_txt = "11" - }, -/obj/machinery/button/door{ - name = "Privacy Shutters"; - pixel_x = 24; - pixel_y = 6 - }, -/obj/item/kirbyplants/photosynthetic, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"bXg" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/science/mixing) -"bXh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bXi" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bXj" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXk" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"bXl" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bXm" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bXn" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bXo" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bXp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plating, -/area/router) -"bXq" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"bXr" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Research Fore"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bXs" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"bXt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXu" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXw" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bXx" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bXy" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/light, -/obj/item/kirbyplants{ - icon_state = "plant-16" - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bXz" = ( -/obj/machinery/power/apc{ - name = "Medbay Lobby APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bXA" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bXB" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/modular_computer/laptop/preset/civilian, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bXC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"bXD" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bXE" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bXF" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/closed/wall/r_wall, -/area/security/checkpoint/supply) -"bXG" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"bXH" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hydroponics) -"bXI" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "capblast"; - name = "blast door" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/captain) -"bXJ" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bXK" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/light, -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/stripes/white/full, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bXL" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/storage/belt/utility, -/turf/open/floor/plasteel, -/area/maintenance/aft) -"bXM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - dir = 8; - id = "router_off" - }, -/turf/open/floor/plating, -/area/router) -"bXN" = ( -/obj/machinery/smartfridge/organ/preloaded, -/turf/closed/wall, -/area/medical/morgue) -"bXO" = ( -/obj/structure/table/glass, -/obj/machinery/reagentgrinder, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology - Fore"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bXP" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bXQ" = ( -/obj/structure/closet/l3closet/scientist, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bXR" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/atmospherics/miner/carbon_dioxide, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"bXS" = ( -/obj/structure/closet/bombcloset, -/obj/machinery/camera{ - c_tag = "Toxins Lab - Access"; - network = list("ss13","rd") - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bXT" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bXU" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/research{ - name = "Research Sector" - }) -"bXV" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"bXW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bXX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bXY" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/recharge_station, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bXZ" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/item/paper_bin, -/obj/item/radio/headset/headset_sci, -/obj/item/radio/headset/headset_sci, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bYa" = ( -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bYb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bYc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/research{ - name = "Research Sector" - }) -"bYd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/closed/wall/r_wall, -/area/hallway/primary/central) -"bYe" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bYf" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor/auto{ - dir = 8; - id = "router" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/router) -"bYg" = ( -/obj/machinery/door/poddoor{ - id = "toxinsdriver"; - name = "toxins launcher bay door" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/science/mixing) -"bYh" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bYi" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/recharger, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bYj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bYk" = ( -/obj/machinery/vending/wardrobe/science_wardrobe, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bYl" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/sorting/mail/flip{ - sortType = 6 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bYm" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bYn" = ( -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bYo" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/computer/mech_bay_power_console, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"bYp" = ( -/turf/open/floor/plasteel/recharge_floor, -/area/science/robotics/mechbay) -"bYq" = ( -/obj/machinery/light/small{ - dir = 1 - }, -/obj/machinery/mech_bay_recharge_port{ - dir = 8 - }, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"bYr" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/photocopier, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bYs" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/research/glass{ - name = "Toxins Lab Access"; - req_access_txt = "7;8" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"bYt" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bYu" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bYv" = ( -/turf/closed/wall, -/area/science/robotics/mechbay) -"bYw" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bYx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"bYy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"bYz" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bYA" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bYB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"bYC" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"bYD" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bYE" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bYF" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/machinery/recharge_station, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"bYG" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/sleeper{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"bYH" = ( -/obj/structure/sign/poster/contraband/kss13{ - pixel_y = -32 - }, -/obj/structure/cable, -/obj/machinery/recharge_station, -/turf/open/floor/circuit/green, -/area/science/robotics/mechbay) -"bYI" = ( -/obj/effect/landmark/start/medical_doctor, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bYJ" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/item/storage/belt/medical, -/obj/item/clothing/neck/stethoscope, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"bYK" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"bYL" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bYM" = ( -/obj/machinery/vending/wardrobe/cargo_wardrobe, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"bYN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/storage) -"bYO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bYP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bYQ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space/basic, -/area/solar/starboard/aft) -"bYR" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space/basic, -/area/solar/starboard/aft) -"bYS" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/server{ - name = "Computer Core" - }) -"bYT" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"bYU" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"bYV" = ( -/obj/machinery/rnd/destructive_analyzer, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"bYW" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/light, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bYX" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"bYY" = ( -/turf/open/floor/circuit/green, -/area/science/server{ - name = "Computer Core" - }) -"bYZ" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/circuit/green, -/area/science/server{ - name = "Computer Core" - }) -"bZa" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/item/storage/box/disks, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"bZb" = ( -/obj/structure/table, -/obj/machinery/button/door{ - id = "RDServer"; - layer = 3.6; - name = "RD Server Lockup Control"; - pixel_x = -24 - }, -/obj/item/circuitboard/machine/rdserver, -/obj/item/disk/tech_disk, -/turf/open/floor/circuit/green, -/area/science/server{ - name = "Computer Core" - }) -"bZc" = ( -/obj/machinery/computer/robotics{ - dir = 1 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment, -/turf/open/floor/circuit/green, -/area/science/server{ - name = "Computer Core" - }) -"bZd" = ( -/obj/effect/landmark/blobstart, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bZe" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/science/server{ - name = "Computer Core" - }) -"bZf" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bZg" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bZh" = ( -/turf/closed/wall, -/area/crew_quarters/toilet/restrooms) -"bZi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"bZj" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 4; - node1_concentration = 0.8; - node2_concentration = 0.2; - on = 1; - target_pressure = 4500 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bZk" = ( -/obj/machinery/shower{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"bZl" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bZm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=upload"; - location = "med" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"bZn" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/door/window/eastright, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"bZo" = ( -/obj/effect/turf_decal/tile/brown, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bZp" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"bZq" = ( -/obj/structure/window/reinforced/tinted{ - dir = 1 - }, -/obj/structure/toilet{ - dir = 4 - }, -/obj/machinery/door/window/eastright, -/obj/effect/landmark/start/assistant, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"bZr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/hallway/primary/central) -"bZs" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"bZt" = ( -/turf/closed/wall, -/area/maintenance/starboard/aft) -"bZu" = ( -/obj/structure/rack, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/head/hardhat/red{ - pixel_y = 6 - }, -/obj/item/clothing/mask/gas, -/obj/item/tank/internals/air, -/obj/item/extinguisher, -/obj/item/crowbar, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bZv" = ( -/obj/structure/rack, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/clothing/head/hardhat/red{ - pixel_y = 6 - }, -/obj/item/clothing/mask/gas, -/obj/item/tank/internals/air, -/obj/item/extinguisher, -/obj/item/crowbar, -/obj/machinery/camera{ - c_tag = "Fire Suppression Storage"; - pixel_x = 22 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bZw" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"bZx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Fire Suppression Storage"; - req_access_txt = "12" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bZy" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"bZz" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Xenobiology Kill Room"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"bZA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/library) -"bZB" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bZC" = ( -/obj/machinery/computer/libraryconsole, -/obj/structure/table/wood, -/turf/open/floor/carpet, -/area/library) -"bZD" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"bZE" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bZF" = ( -/turf/open/floor/wood, -/area/library) -"bZG" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/sign/warning/fire{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"bZH" = ( -/turf/closed/wall, -/area/library) -"bZI" = ( -/obj/machinery/air_sensor/atmos/mix_tank, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"bZJ" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/photocopier, -/turf/open/floor/carpet, -/area/library) -"bZK" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"bZL" = ( -/obj/machinery/air_sensor/atmos/nitrous_tank, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"bZM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"bZN" = ( -/obj/structure/closet/crate/freezer, -/obj/item/rack_parts, -/obj/item/rack_parts, -/obj/item/wrench, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/kitchen/backroom) -"bZO" = ( -/obj/machinery/air_sensor/atmos/toxin_tank, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"bZP" = ( -/obj/machinery/air_sensor/atmos/carbon_tank, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"bZQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"bZR" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) -"bZS" = ( -/turf/closed/wall/r_wall, -/area/library) -"bZT" = ( -/obj/structure/table, -/obj/item/book/manual/wiki/robotics_cyborgs{ - pixel_x = -3; - pixel_y = -2 - }, -/obj/item/book/manual/ripley_build_and_repair{ - pixel_x = 3; - pixel_y = 2 - }, -/obj/item/mmi/posibrain, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"bZU" = ( -/obj/structure/table/wood, -/obj/machinery/door/window/northright{ - name = "Library Desk Window"; - req_access_txt = "37" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/library) -"bZV" = ( -/obj/structure/table/wood, -/obj/structure/window/reinforced/spawner/north, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/library) -"bZW" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/science/mixing) -"bZX" = ( -/obj/structure/table/wood, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/computer/libraryconsole/bookmanagement, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/library) -"bZY" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"bZZ" = ( -/obj/machinery/vending/wardrobe/curator_wardrobe, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/library) -"caa" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cab" = ( -/obj/structure/bookcase/random/adult{ - name = "Forbidden Knowledge" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/library) -"cac" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cad" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cae" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light, -/obj/item/storage/firstaid/toxin, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"caf" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/violet/hidden{ - dir = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cag" = ( -/obj/structure/table/reinforced, -/obj/item/integrated_electronics/analyzer, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cah" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cai" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"caj" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cak" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"cal" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 10 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engine/atmos) -"cam" = ( -/obj/machinery/door/poddoor/incinerator_atmos_main, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"can" = ( -/obj/machinery/power/turbine{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cao" = ( -/obj/machinery/power/compressor{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cap" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/air_sensor/atmos/incinerator_tank{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/machinery/igniter/incinerator_atmos, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"caq" = ( -/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, -/obj/effect/mapping_helpers/airlock/locked, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"car" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cas" = ( -/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, -/obj/effect/mapping_helpers/airlock/locked, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"cat" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"cau" = ( -/obj/machinery/door/poddoor/incinerator_atmos_aux, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cav" = ( -/turf/closed/wall/r_wall, -/area/science/explab) -"caw" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/explab) -"cax" = ( -/turf/closed/wall, -/area/science/explab) -"cay" = ( -/obj/machinery/air_sensor/atmos/nitrogen_tank, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"caz" = ( -/obj/machinery/door/airlock/research{ - name = "Mech Bay"; - req_access_txt = "29" - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"caA" = ( -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/science/explab) -"caB" = ( -/obj/structure/closet/bombcloset, -/turf/open/floor/plasteel, -/area/science/explab) -"caC" = ( -/obj/structure/table, -/obj/item/wrench, -/obj/item/clothing/suit/fire/firefighter, -/obj/item/extinguisher{ - pixel_x = -7; - pixel_y = 3 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/stack/cable_coil/red, -/turf/open/floor/plasteel, -/area/science/explab) -"caD" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/maintenance/disposal) -"caE" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"caF" = ( -/obj/machinery/air_sensor/atmos/oxygen_tank, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"caG" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"caH" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"caI" = ( -/obj/structure/table/reinforced, -/obj/item/integrated_electronics/analyzer, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science RC"; - pixel_x = 30; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"caJ" = ( -/obj/machinery/air_sensor/atmos/air_tank, -/turf/open/floor/engine/air, -/area/engine/atmos) -"caK" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/atmospherics/miner/nitrogen, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"caL" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/atmospherics/miner/oxygen, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"caM" = ( -/obj/machinery/light/small, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"caN" = ( -/obj/machinery/light/small, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"caO" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/science/robotics/lab) -"caP" = ( -/obj/structure/chair/office/light, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/explab) -"caQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Medbay Lobby" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white/side, -/area/medical/medbay/lobby) -"caR" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/kirbyplants{ - icon_state = "plant-06" - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"caS" = ( -/obj/machinery/light/small, -/turf/open/floor/engine/air, -/area/engine/atmos) -"caT" = ( -/obj/effect/spawner/structure/window/plasma/reinforced, -/turf/open/floor/plating, -/area/science/explab) -"caU" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/turf/closed/wall/r_wall, -/area/science/explab) -"caV" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology - Pen 1"; - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"caW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"caX" = ( -/turf/open/floor/engine, -/area/science/explab) -"caY" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/explab) -"caZ" = ( -/obj/machinery/light/small{ - dir = 4; - light_color = "#d8b1b1" - }, -/obj/machinery/camera{ - c_tag = "Xenobiology - Pen 2"; - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cba" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/science/explab) -"cbb" = ( -/turf/closed/wall/r_wall, -/area/science/storage) -"cbc" = ( -/obj/structure/table/reinforced, -/obj/machinery/light{ - dir = 4 - }, -/obj/item/stack/sheet/metal/ten, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science, -/obj/item/screwdriver, -/obj/item/screwdriver, -/obj/item/multitool, -/obj/item/multitool, -/obj/machinery/camera{ - c_tag = "Research - Circuitry Lab"; - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cbd" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/obj/item/clothing/ears/earmuffs, -/obj/item/radio, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cbe" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/mask/gas, -/turf/open/floor/engine, -/area/science/explab) -"cbf" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/sleeper{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"cbg" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/open/floor/engine, -/area/science/storage) -"cbh" = ( -/obj/machinery/rnd/experimentor, -/turf/open/floor/engine, -/area/science/explab) -"cbi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "capblast"; - name = "blast door" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/captain) -"cbj" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/closed/wall/r_wall, -/area/science/server{ - name = "Computer Core" - }) -"cbk" = ( -/obj/structure/table, -/obj/item/paper_bin, -/obj/item/pen, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/quartermaster/qm"; - dir = 8; - name = "Quartermaster's Office APC"; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"cbl" = ( -/obj/structure/table/reinforced, -/obj/item/healthanalyzer, -/turf/open/floor/engine, -/area/science/explab) -"cbm" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/door/airlock/maintenance{ - name = "Medbay Maintenance"; - req_access_txt = "5" - }, -/turf/open/floor/plating, -/area/medical/medbay/central) -"cbn" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/engine, -/area/science/storage) -"cbo" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cbp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable, -/obj/machinery/door/poddoor/preopen{ - id = "capblast"; - name = "blast door" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/captain) -"cbq" = ( -/obj/structure/table/reinforced, -/obj/item/clipboard, -/obj/item/pen, -/turf/open/floor/engine, -/area/science/explab) -"cbr" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"cbs" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"cbt" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/engine, -/area/science/explab) -"cbu" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine, -/area/science/storage) -"cbv" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/effect/turf_decal/stripes/line, -/obj/structure/sign/warning/biohazard{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cbw" = ( -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cbx" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/syringes, -/obj/item/pen/blue, -/turf/open/floor/engine, -/area/science/explab) -"cby" = ( -/obj/structure/closet/emcloset, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cbz" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/gloves/color/latex, -/obj/item/reagent_containers/dropper, -/obj/item/pen/red, -/turf/open/floor/engine, -/area/science/explab) -"cbA" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"cbB" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cbC" = ( -/obj/machinery/portable_atmospherics/canister/nitrous_oxide, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/science/storage) -"cbD" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cbE" = ( -/turf/closed/wall/r_wall, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cbF" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cbG" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cbH" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"cbI" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cbJ" = ( -/obj/structure/table/reinforced, -/obj/item/analyzer, -/obj/item/t_scanner, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/engine/supermatter"; - dir = 4; - name = "Thermo-Electric Generator APC"; - pixel_x = 24 - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"cbK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/sign/departments/chemistry{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"cbL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock"; - req_access_txt = "24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cbM" = ( -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/item/storage/box/lights/mixed, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/structure/cable{ - icon_state = "1-10" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cbN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cbO" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"cbP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cbQ" = ( -/obj/structure/closet/secure_closet/freezer/meat, -/obj/item/reagent_containers/food/snacks/meat/slab/spider, -/obj/item/reagent_containers/food/snacks/meat/slab/xeno, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/kitchen/backroom) -"cbR" = ( -/obj/structure/cable{ - icon_state = "1-10" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"cbS" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "starboard_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"cbT" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = -2; - pixel_y = -27 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cbU" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8; - name = "Air to Distro" - }, -/obj/machinery/power/apc/highcap/ten_k{ - areastring = "/area/engine/atmos"; - name = "Atmospherics APC"; - pixel_y = -28 - }, -/obj/structure/cable, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cbV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/window/reinforced/spawner, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/science/server{ - name = "Computer Core" - }) -"cbW" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"cbX" = ( -/obj/structure/table, -/obj/item/aicard, -/obj/item/disk/tech_disk, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/circuit, -/area/bridge) -"cbY" = ( -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/science/server{ - name = "Computer Core" - }) -"cbZ" = ( -/obj/machinery/computer/slot_machine, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/carpet/green, -/area/crew_quarters/bar) -"cca" = ( -/obj/machinery/computer/slot_machine, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/carpet/green, -/area/crew_quarters/bar) -"ccb" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/stairs/medium, -/area/crew_quarters/bar) -"ccc" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/router/aux) -"ccd" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Robotics Lab"; - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/science/robotics/lab) -"cce" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/science/circuit) -"ccf" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/conveyor{ - dir = 1; - id = "starboard_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"ccg" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cch" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/conveyor/auto{ - dir = 1; - id = "router" - }, -/turf/open/floor/plating, -/area/router) -"cci" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/mass_driver{ - id = "workshop_in"; - name = "Router Driver" - }, -/turf/open/floor/plating, -/area/router) -"ccj" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/external{ - name = "Routing Depot"; - req_one_access_txt = "10;31" - }, -/turf/open/floor/plating, -/area/router) -"cck" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/conveyor/auto{ - dir = 4; - id = "disposal" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ccl" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/stairs, -/area/maintenance/department/chapel) -"ccm" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/science/robotics/lab) -"ccn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor/auto{ - dir = 1; - id = "router" - }, -/turf/open/floor/plating, -/area/router) -"cco" = ( -/obj/machinery/conveyor/auto{ - id = "router" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/router) -"ccp" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ccq" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/sign/poster/official/nanomichi_ad{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"ccr" = ( -/obj/structure/disposalpipe/trunk, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"ccs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/conveyor{ - dir = 1; - id = "starboard_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"cct" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/science/robotics/mechbay) -"ccu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"ccv" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/door/airlock/mining{ - name = "Mining Office"; - req_one_access_txt = "10;24;48" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"ccw" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ccx" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"ccy" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor/auto{ - dir = 1; - id = "router" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/router) -"ccz" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"ccA" = ( -/obj/machinery/disposal/deliveryChute, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/router) -"ccB" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/folder/white, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 8; - icon_state = "left"; - name = "Robotics Desk"; - req_access_txt = "29" - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"ccC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ccD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ccE" = ( -/obj/machinery/mass_driver{ - id = "eng_in"; - name = "Router Driver" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/router) -"ccF" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/item/flashlight, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"ccG" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/camera{ - c_tag = "Atmospherics East"; - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"ccH" = ( -/obj/machinery/mass_driver{ - dir = 8; - id = "disposal_in"; - name = "Router Driver" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"ccI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/machinery/conveyor/auto{ - dir = 4; - id = "disposal" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ccJ" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "starboard_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"ccK" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"ccL" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/machinery/rnd/bepis, -/turf/open/floor/engine, -/area/science/explab) -"ccM" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/main) -"ccN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ccO" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/sorting/mail{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"ccP" = ( -/obj/structure/disposalpipe/junction/yjunction{ - dir = 8 - }, -/obj/structure/grille, -/turf/open/floor/plating/airless, -/area/router/aux) -"ccQ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ccR" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ccS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/courtroom) -"ccT" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/light, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"ccU" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"ccV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Starboard Quarter Maintenance"; - req_one_access_txt = "12;48" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"ccW" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"ccX" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"ccY" = ( -/obj/structure/cable, -/obj/effect/landmark/start/librarian, -/obj/machinery/power/apc{ - areastring = "/area/library"; - dir = 4; - name = "Library APC"; - pixel_x = 24 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/library) -"ccZ" = ( -/obj/structure/closet/cardboard, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cda" = ( -/obj/structure/table, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cdb" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/turf/open/floor/plating/airless, -/area/router/aux) -"cdc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/hallway/secondary/entry) -"cdd" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"cde" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/mineral/titanium/blue, -/area/hallway/primary/central) -"cdf" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"cdg" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cdh" = ( -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"cdi" = ( -/obj/machinery/disposal/deliveryChute, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"cdj" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/machinery/microwave, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cdk" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cdl" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cdm" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/photocopier, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/paper/guides/cogstation/disposals, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cdn" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"cdo" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cdp" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible, -/obj/machinery/atmospherics/pipe/simple/violet/hidden{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cdq" = ( -/obj/machinery/mass_driver{ - id = "sq_in"; - name = "Router Driver" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"cdr" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cds" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cdt" = ( -/turf/closed/wall/r_wall, -/area/router/eng) -"cdu" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cdv" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = -29 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cdw" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cdx" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 1 - }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"cdy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/closed/wall, -/area/engine/break_room) -"cdz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cdA" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cdB" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/obj/structure/sign/warning/enginesafety, -/turf/closed/wall, -/area/engine/break_room) -"cdC" = ( -/turf/closed/wall, -/area/engine/break_room) -"cdD" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line, -/obj/item/storage/box/monkeycubes, -/obj/item/storage/box/monkeycubes, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science RC"; - pixel_y = 30; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cdE" = ( -/obj/structure/table/wood, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/item/tape, -/obj/item/taperecorder{ - pixel_x = -4 - }, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/lawoffice) -"cdF" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"cdG" = ( -/obj/structure/plasticflaps, -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor/preopen{ - id = "engblock"; - name = "Engineering Router" - }, -/turf/open/floor/plating, -/area/router/eng) -"cdH" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/closed/wall, -/area/engine/break_room) -"cdI" = ( -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"cdJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cdK" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cdL" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cdM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cdN" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/door/airlock/command{ - name = "Chief Engineer's Office"; - req_access_txt = "56" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"cdO" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "EngiLockdown"; - name = "Engineering Emergency Lockdown" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cdP" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Aft Hall - Primary Tool Storage"; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cdQ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/poddoor/preopen{ - id = "EngiLockdown"; - name = "Engineering Emergency Lockdown" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cdR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/sign/poster/contraband/hacking_guide{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"cdS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/engine/break_room) -"cdT" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/airlock/external/glass{ - name = "Asteroid Mining Access"; - req_access_txt = "10;24" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cdU" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor/auto{ - id = "eng" - }, -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor/preopen{ - id = "engblock"; - name = "Engineering Router" - }, -/turf/open/floor/plating, -/area/router/eng) -"cdV" = ( -/turf/closed/wall/r_wall, -/area/engine/teg_hot) -"cdW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"cdX" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/chemist, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medical)"; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cdY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cdZ" = ( -/turf/closed/wall/r_wall, -/area/medical/medbay/lobby) -"cea" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/photocopier, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Cargo Bay"; - departmentType = 2; - name = "Cargo RC"; - pixel_y = 30 - }, -/obj/machinery/camera{ - c_tag = "Supply - Delivery Office Aft"; - network = list("ss13","rd") - }, -/obj/item/paper/guides/cogstation/disposals, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"ceb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics3"; - name = "robotics lab shutters" - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"cec" = ( -/obj/structure/table/glass, -/obj/item/paicard, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/medical/medbay/lobby) -"ced" = ( -/obj/machinery/computer/med_data{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"cee" = ( -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"cef" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"ceg" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/medical/medbay/lobby) -"ceh" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/storage/tech) -"cei" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cej" = ( -/obj/machinery/vending/medical, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"cek" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/medical/medbay/lobby) -"cel" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"cem" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/door/window/eastright{ - name = "Medbay Desk"; - req_access_txt = "5" - }, -/obj/item/folder/white, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"cen" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/circuit, -/area/bridge) -"ceo" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/bridge) -"cep" = ( -/obj/machinery/camera/motion{ - c_tag = "Telecomms Satellite Exterior - Starboard Bow"; - dir = 1; - network = list("tcomms"); - pixel_x = 22 - }, -/turf/open/space/basic, -/area/space) -"ceq" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall/rust, -/area/engine/teg_hot) -"cer" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/mass_driver{ - dir = 1; - id = "eng_out"; - name = "Router Driver" - }, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/plating, -/area/router/eng) -"ces" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/conveyor/auto{ - id = "eng" - }, -/obj/structure/window/reinforced/spawner/east, -/turf/open/floor/plating, -/area/router/eng) -"cet" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/engine/teg_hot) -"ceu" = ( -/obj/machinery/vending/snack/random, -/turf/open/floor/carpet/blue, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"cev" = ( -/obj/machinery/vending/games, -/turf/open/floor/carpet/blue, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"cew" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/conveyor/auto{ - dir = 1; - id = "service" - }, -/obj/structure/window/reinforced/spawner/west, -/turf/open/floor/plating, -/area/router/eng) -"cex" = ( -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"cey" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Arcade" - }, -/turf/open/floor/carpet/blue, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"cez" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/firstaid/fire{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/brute, -/obj/item/storage/firstaid/brute, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"ceA" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/firstaid/toxin{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/o2, -/obj/item/storage/firstaid/o2, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"ceB" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"ceC" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/solars/port) -"ceD" = ( -/obj/docking_port/stationary{ - dir = 8; - dwidth = 2; - height = 13; - id = "ferry_home"; - name = "port bay 2"; - width = 5 - }, -/turf/open/space/basic, -/area/space) -"ceE" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/external{ - name = "Ferry Docking Bay" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ceF" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/external{ - name = "Ferry Docking Bay" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ceG" = ( -/obj/machinery/mass_driver{ - dir = 4; - id = "trash"; - name = "Disposal Driver" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ceH" = ( -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor{ - id = "trash"; - name = "Disposal Bay Door" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ceI" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"ceJ" = ( -/obj/machinery/power/solar_control{ - dir = 4; - name = "Starboard Quarter Solar Control" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"ceK" = ( -/obj/structure/grille, -/turf/open/floor/plating, -/area/router/eng) -"ceL" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/table, -/obj/item/destTagger, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/router/eng) -"ceM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/button/massdriver{ - id = "eng_out"; - pixel_x = -24; - pixel_y = 24 - }, -/obj/machinery/button/door{ - id = "engblock"; - name = "Router Access Control"; - pixel_x = -24; - pixel_y = 32; - req_access_txt = "31" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/router/eng) -"ceN" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/router/eng) -"ceO" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = 29 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/router/eng) -"ceP" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/router/eng) -"ceQ" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = -32 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/cable{ - icon_state = "2-5" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"ceR" = ( -/obj/machinery/door/poddoor{ - id = "TEGMixVent"; - name = "Mixing Chamber Vent" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/engine/vacuum, -/area/engine/teg_hot) -"ceS" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance{ - lootcount = 3; - name = "3maintenance loot spawner" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"ceT" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/computer/cargo/request{ - dir = 4 - }, -/obj/machinery/light/small, -/obj/machinery/requests_console{ - department = "Engineering Router"; - name = "Engineering Router RC"; - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/router/eng) -"ceU" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 9 - }, -/obj/structure/fireaxecabinet{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"ceV" = ( -/turf/open/floor/plasteel, -/area/router/eng) -"ceW" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/router/eng) -"ceX" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/power/apc{ - name = "Engineering Router APC"; - pixel_y = -24 - }, -/obj/machinery/light/small, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/router/eng) -"ceY" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"ceZ" = ( -/obj/machinery/door/firedoor, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/door/airlock/external/glass{ - name = "Asteroid Mining Access"; - req_access_txt = "10;24" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cfa" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 6 - }, -/turf/open/floor/engine/vacuum, -/area/engine/teg_hot) -"cfb" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/photocopier, -/turf/open/floor/carpet/blue, -/area/medical/medbay/central) -"cfc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"cfd" = ( -/obj/structure/closet/crate/wooden, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cfe" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Port Bow Hall - Starboard"; - network = list("ss13","rd") - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cff" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 10 - }, -/turf/open/floor/engine/vacuum, -/area/engine/teg_hot) -"cfg" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/effect/landmark/start/research_director, -/obj/machinery/camera{ - c_tag = "Research Director's Office - Port"; - network = list("ss13","rd") - }, -/obj/machinery/keycard_auth{ - pixel_x = -8; - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"cfh" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"cfi" = ( -/turf/open/floor/plasteel, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"cfj" = ( -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"cfk" = ( -/obj/structure/closet/secure_closet/engineering_electrical, -/turf/open/floor/plasteel, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"cfl" = ( -/turf/closed/wall, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"cfm" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"cfn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"cfo" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple, -/turf/open/floor/engine/vacuum, -/area/engine/teg_hot) -"cfp" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/engine/teg_hot) -"cfq" = ( -/obj/structure/lattice/catwalk, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cfr" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/door/airlock/external/glass{ - name = "Mixing Chamber Access"; - req_one_access_txt = "10;24" - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plating, -/area/engine/teg_hot) -"cfs" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"cft" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/camera{ - c_tag = "Engineering - Mixing Chamber"; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/teg_hot) -"cfu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/teg_hot) -"cfv" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel, -/area/engine/storage{ - name = "Canister Storage" - }) -"cfw" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Engineering Construction Area"; - dir = 4 - }, -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/plasteel, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"cfx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"cfy" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/terminal{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/storage_shared{ - name = "Electrical Substation" - }) -"cfz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cfA" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 5 - }, -/turf/open/floor/engine/vacuum, -/area/engine/teg_hot) -"cfB" = ( -/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ - dir = 9 - }, -/turf/open/floor/engine/vacuum, -/area/engine/teg_hot) -"cfC" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/floor/engine/vacuum, -/area/engine/teg_hot) -"cfD" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/space/basic, -/area/space/nearstation) -"cfE" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/teg_hot) -"cfF" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/teg_hot) -"cfG" = ( -/obj/machinery/door/airlock/highsecurity{ - name = "Secure Tech Storage"; - req_access_txt = "19;23" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/storage/tech) -"cfH" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/outlet_injector/on, -/turf/open/floor/engine/vacuum, -/area/engine/teg_hot) -"cfI" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/sparker{ - id = "TEGMixIgniter"; - pixel_x = 24 - }, -/obj/effect/decal/cleanable/ash, -/obj/effect/decal/remains/human, -/turf/open/floor/engine/vacuum, -/area/engine/teg_hot) -"cfJ" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/teg_hot) -"cfK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/teg_hot) -"cfL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics Access"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engine/storage{ - name = "Canister Storage" - }) -"cfM" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cfN" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cfO" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cfP" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cfQ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Library Access" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/library) -"cfR" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/vending/cigarette, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cfS" = ( -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cfT" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/visible, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cfU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/item/beacon, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cfV" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock"; - req_access_txt = "24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cfW" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/window/plasma/reinforced/spawner/north, -/obj/structure/window/plasma/reinforced/spawner, -/obj/structure/lattice, -/turf/open/space/basic, -/area/engine/teg_hot) -"cfX" = ( -/obj/item/pipe, -/obj/structure/cable{ - icon_state = "2-5" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"cfY" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/metal, -/obj/item/stack/sheet/metal, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"cfZ" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/turf/open/floor/plasteel/stairs/right, -/area/science/research{ - name = "Research Sector" - }) -"cga" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cgb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external/glass{ - name = "Mixing Chamber Access"; - req_one_access_txt = "10;24" - }, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plating, -/area/engine/teg_hot) -"cgc" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"cgd" = ( -/obj/structure/fans/tiny, -/obj/structure/plasticflaps, -/obj/machinery/conveyor/auto{ - dir = 4; - id = "disposal" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cge" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock"; - req_access_txt = "24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cgf" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cgg" = ( -/obj/effect/landmark/start/atmospheric_technician, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cgh" = ( -/obj/machinery/pipedispenser, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/end{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"cgi" = ( -/obj/machinery/atmospherics/pipe/simple/violet/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/closed/wall/r_wall, -/area/engine/teg_hot) -"cgj" = ( -/obj/machinery/conveyor/auto{ - id = "cargo" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"cgk" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/conveyor/auto{ - id = "cargo" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"cgl" = ( -/obj/machinery/button/door{ - id = "TEGMixVent"; - name = "Mixing Chamber Vent"; - pixel_y = 24; - req_access_txt = "10" - }, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - name = "atmos mix to burn" - }, -/turf/open/floor/plasteel/dark, -/area/engine/teg_hot) -"cgm" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"cgn" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"cgo" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, -/turf/open/floor/plasteel/dark, -/area/engine/teg_hot) -"cgp" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 - }, -/obj/machinery/button/ignition{ - id = "TEGMixIgniter"; - name = "Mix Igniter"; - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/engine/teg_hot) -"cgq" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cgr" = ( -/obj/machinery/vending/wardrobe/robo_wardrobe, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cgs" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cgt" = ( -/obj/structure/rack, -/obj/item/caution, -/obj/item/caution, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cgu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/turf/open/floor/plasteel/dark, -/area/engine/teg_hot) -"cgv" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cgw" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/engine/teg_hot) -"cgx" = ( -/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cgy" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/rust, -/area/maintenance/solars/starboard/aft) -"cgz" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cgA" = ( -/obj/machinery/pipedispenser/disposal, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"cgB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cgC" = ( -/obj/structure/grille, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/hallway/primary/central) -"cgD" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/teg_hot) -"cgE" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"cgF" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/spawner/north, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/science/server{ - name = "Computer Core" - }) -"cgG" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/spawner/north, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/science/server{ - name = "Computer Core" - }) -"cgH" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/closed/wall/r_wall, -/area/science/server{ - name = "Computer Core" - }) -"cgI" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/closed/wall/r_wall, -/area/science/server{ - name = "Computer Core" - }) -"cgJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/closed/wall/r_wall, -/area/science/server{ - name = "Computer Core" - }) -"cgK" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/closed/wall/r_wall, -/area/science/server{ - name = "Computer Core" - }) -"cgL" = ( -/obj/machinery/computer/rdservercontrol{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plasteel/dark, -/area/science/server{ - name = "Computer Core" - }) -"cgM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"cgN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/science/server{ - name = "Computer Core" - }) -"cgO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/science/server{ - name = "Computer Core" - }) -"cgP" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/closed/wall/r_wall, -/area/science/server{ - name = "Computer Core" - }) -"cgQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/science/server{ - name = "Computer Core" - }) -"cgR" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 6 - }, -/turf/open/floor/plasteel/dark, -/area/engine/teg_hot) -"cgS" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 4; - node1_concentration = 0.8; - node2_concentration = 0.2; - on = 1; - target_pressure = 4500 - }, -/turf/open/floor/plasteel/dark, -/area/engine/teg_hot) -"cgT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cgU" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4; - name = "manual mix to burn" - }, -/turf/open/floor/plasteel/dark, -/area/engine/teg_hot) -"cgV" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cgW" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 3; - height = 5; - id = "mining_home"; - name = "mining shuttle bay"; - roundstart_template = /datum/map_template/shuttle/mining/delta; - width = 7 - }, -/turf/open/space/basic, -/area/space) -"cgX" = ( -/obj/machinery/conveyor/auto{ - dir = 4; - id = "disposal" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cgY" = ( -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/disposal/deliveryChute{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cgZ" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cha" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/sorting/mail{ - dir = 4; - sortType = 1 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"chb" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/engine/teg_hot) -"chc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"chd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/landmark/start/cargo_technician, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"che" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"chf" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"chg" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/engine/teg_hot) -"chh" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plating, -/area/tcommsat/computer) -"chi" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"chj" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 1 - }, -/obj/machinery/meter, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark, -/area/engine/teg_hot) -"chk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engine/teg_hot) -"chl" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/storage{ - name = "Canister Storage" - }) -"chm" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/closed/wall/r_wall/rust, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"chn" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/disposal/incinerator"; - dir = 8; - name = "Incinerator APC"; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cho" = ( -/turf/closed/wall/r_wall/rust, -/area/maintenance/department/eva) -"chp" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"chq" = ( -/obj/machinery/pipedispenser/disposal/transit_tube, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"chr" = ( -/obj/machinery/atmospherics/components/binary/valve/digital, -/turf/open/floor/plasteel/dark, -/area/engine/teg_hot) -"chs" = ( -/turf/open/floor/plasteel/dark, -/area/engine/teg_hot) -"cht" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/engine/teg_hot) -"chu" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engine/teg_hot) -"chv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"chw" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"chx" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"chy" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engine/teg_hot) -"chz" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"chA" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"chB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"chC" = ( -/turf/closed/wall/r_wall/rust, -/area/space/nearstation) -"chD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"chE" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engine/teg_cold) -"chF" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 4 - }, -/obj/structure/table, -/obj/item/analyzer, -/obj/item/pipe_dispenser, -/obj/item/wrench, -/turf/open/floor/plasteel/dark, -/area/engine/teg_cold) -"chG" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/engine/teg_cold) -"chH" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/closed/wall/r_wall/rust, -/area/maintenance/fore) -"chI" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 4 - }, -/obj/machinery/meter, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/engine/teg_cold) -"chJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/security) -"chK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/teg_cold) -"chL" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"chM" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"chN" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall/r_wall, -/area/engine/teg_hot) -"chO" = ( -/obj/structure/table, -/obj/machinery/requests_console{ - department = "Atmospherics"; - departmentType = 4; - name = "Atmos RC"; - pixel_x = 30 - }, -/obj/item/clothing/head/welding{ - pixel_x = -5; - pixel_y = 3 - }, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/clothing/glasses/welding, -/obj/item/multitool, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"chP" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock{ - name = "Law Office"; - req_access_txt = "38" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"chQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"chR" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/science/mixing"; - dir = 1; - name = "Toxins Lab APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/engine, -/area/science/storage) -"chS" = ( -/obj/machinery/suit_storage_unit/atmos, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"chT" = ( -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/turf/open/floor/engine, -/area/science/storage) -"chU" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/wood, -/area/library) -"chV" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"chW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"chX" = ( -/obj/structure/sign/warning/nosmoking, -/turf/closed/wall/r_wall, -/area/engine/teg_hot) -"chY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/light{ - dir = 8 - }, -/obj/item/storage/hypospraykit/fire, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/grenade/chem_grenade/smart_metal_foam, -/obj/item/wrench, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"chZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"cia" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"cib" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"cic" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"cid" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/table, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/item/analyzer, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"cie" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/teg_cold) -"cif" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cig" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/disposaloutlet, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cih" = ( -/obj/machinery/disposal/deliveryChute{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cii" = ( -/obj/machinery/disposal/deliveryChute, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cij" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/westleft{ - name = "Science Desk"; - req_one_access_txt = "29;47" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cik" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/mass_driver{ - dir = 8; - id = "router_in"; - name = "Router Driver" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cil" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cim" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 11 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cin" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/conveyor/auto{ - dir = 4; - id = "disposal" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cio" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/turf/closed/wall, -/area/science/robotics/mechbay) -"cip" = ( -/obj/machinery/mass_driver{ - id = "cargo_in"; - name = "Router Driver" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ciq" = ( -/obj/machinery/conveyor/auto{ - dir = 4; - id = "disposal" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cir" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/engine/teg_cold) -"cis" = ( -/obj/structure/sign/warning/vacuum{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cit" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ciu" = ( -/obj/structure/barricade/wooden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/sign/poster/ripped{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"civ" = ( -/obj/structure/girder/displaced, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ciw" = ( -/obj/structure/cable, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cix" = ( -/obj/structure/girder, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ciy" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ciz" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/item/reagent_containers/food/drinks/trophy, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"ciA" = ( -/obj/effect/turf_decal/tile/brown, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"ciB" = ( -/obj/structure/frame/computer, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating/airless, -/area/maintenance/port/fore) -"ciC" = ( -/obj/structure/table, -/obj/item/paper/pamphlet/gateway, -/turf/open/floor/plasteel/white, -/area/gateway) -"ciD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/engine/teg_cold) -"ciE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"ciF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ciG" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "disposal_off" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ciH" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 6 - }, -/obj/machinery/meter, -/obj/structure/disposalpipe/junction/flip{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/engine/teg_cold) -"ciI" = ( -/turf/closed/wall/r_wall/rust, -/area/quartermaster/warehouse) -"ciJ" = ( -/turf/closed/wall/rust, -/area/quartermaster/warehouse) -"ciK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"ciL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"ciM" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/conveyor/auto{ - dir = 4; - id = "disposal" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ciN" = ( -/obj/structure/table/reinforced, -/obj/item/storage/box/donkpockets{ - pixel_y = 4 - }, -/obj/machinery/door/poddoor/preopen{ - id = "kitchenlock"; - name = "Kitchen Lockup" - }, -/obj/machinery/door/window/northleft{ - name = "Kitchen Slider"; - req_access_txt = "28" - }, -/obj/machinery/door/window/southleft{ - name = "Bar Slider"; - req_access_txt = "25" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/kitchen) -"ciO" = ( -/obj/machinery/mass_driver{ - dir = 4; - id = "disposal_out"; - name = "Router Driver" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ciP" = ( -/obj/effect/turf_decal/delivery, -/obj/item/weldingtool, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"ciQ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"ciR" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/door/airlock/security{ - name = "Cargo Security Checkpoint"; - req_access_txt = "63" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"ciS" = ( -/obj/machinery/conveyor/auto{ - dir = 9; - id = "disposal" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ciT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/structure/closet/radiation, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28; - pixel_y = -4 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"ciU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/structure/closet/radiation, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"ciV" = ( -/obj/machinery/conveyor/auto{ - dir = 8; - id = "disposal" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ciW" = ( -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 8; - sortType = 11 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"ciX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/conveyor/auto{ - dir = 8; - id = "disposal" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"ciY" = ( -/obj/structure/table, -/obj/item/storage/toolbox/emergency, -/obj/item/wrench, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/machinery/power/apc{ - areastring = "/area/engine/teg_hot"; - dir = 8; - name = "Hot Loop APC"; - pixel_x = -24 - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"ciZ" = ( -/obj/machinery/atmospherics/components/binary/valve/digital, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"cja" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cjb" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cjc" = ( -/obj/structure/fans/tiny, -/obj/structure/plasticflaps, -/obj/machinery/door/poddoor{ - name = "Disposal Router" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cjd" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"cje" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"cjf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security/glass{ - name = "Cargo Detainment Cell"; - req_access_txt = "63" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"cjg" = ( -/obj/machinery/conveyor/auto{ - dir = 1; - id = "disposal" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cjh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"cji" = ( -/obj/structure/fans/tiny, -/obj/structure/plasticflaps, -/obj/machinery/conveyor/auto{ - dir = 1; - id = "disposal" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cjj" = ( -/turf/closed/wall, -/area/crew_quarters/theatre/mime) -"cjk" = ( -/obj/machinery/vending/autodrobe, -/turf/open/floor/plasteel/checker, -/area/crew_quarters/theatre/mime) -"cjl" = ( -/obj/structure/closet/crate/wooden/toy, -/obj/item/toy/figure/mime, -/turf/open/floor/plasteel/checker, -/area/crew_quarters/theatre/mime) -"cjm" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/hallway/secondary/service) -"cjn" = ( -/obj/structure/reagent_dispensers/cooking_oil, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/kitchen/backroom) -"cjo" = ( -/obj/structure/table, -/obj/item/flashlight/seclite, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cjp" = ( -/turf/closed/wall/r_wall, -/area/crew_quarters/theatre/mime) -"cjq" = ( -/turf/closed/wall/rust, -/area/maintenance/port/central) -"cjr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/server{ - name = "Computer Core" - }) -"cjs" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"cjt" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - areastring = "/area/quartermaster/office"; - dir = 1; - name = "Cargo Office APC"; - pixel_y = 24 - }, -/obj/structure/sign/poster/contraband/scum{ - pixel_x = 32 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cju" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/table, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/obj/item/clothing/ears/earmuffs, -/obj/item/extinguisher{ - pixel_x = -12; - pixel_y = -2 - }, -/obj/machinery/camera{ - c_tag = "Engineering - Hot Loop"; - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"cjv" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/carpet, -/area/library) -"cjw" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/wood, -/area/library) -"cjx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/wood, -/area/library) -"cjy" = ( -/obj/machinery/recharge_station, -/turf/open/floor/plating, -/area/maintenance/port/central) -"cjz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/kirbyplants/photosynthetic, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cjA" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/item/kirbyplants/random, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cjB" = ( -/obj/item/stack/cable_coil/cut/red, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"cjC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/clothing/mask/cigarette, -/obj/structure/sign/poster/official/twelve_gauge{ - pixel_x = 32 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cjD" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall, -/area/maintenance/department/eva) -"cjE" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/sign/warning{ - name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; - pixel_y = 32 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cjF" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/warning{ - name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; - pixel_y = 32 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cjG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cjH" = ( -/obj/structure/lattice, -/obj/structure/sign/warning/electricshock{ - pixel_x = -32 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cjI" = ( -/obj/structure/sign/warning{ - name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES" - }, -/turf/closed/wall/r_wall, -/area/ai_monitored/turret_protected/ai_upload_foyer) -"cjJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "E.V.A. Storage"; - req_access_txt = "18" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cjK" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/teg_cold) -"cjL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/engine/teg_cold) -"cjM" = ( -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/obj/item/storage/toolbox/mechanical, -/obj/item/radio/off, -/obj/item/multitool{ - pixel_x = -6 - }, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"cjN" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Security - Visitation Area"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"cjO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/decal/cleanable/dirt{ - desc = "A thin layer of dust coating the floor."; - name = "dust" - }, -/turf/open/floor/plating, -/area/maintenance/port/fore) -"cjP" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cjQ" = ( -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/captain) -"cjR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Head of Security's Office"; - req_one_access_txt = "58" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/hos) -"cjS" = ( -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"cjT" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/landmark/start/security_officer, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"cjU" = ( -/obj/machinery/atmospherics/pipe/manifold/supply/visible{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/engine/teg_cold) -"cjV" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Engineering Sector" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cjW" = ( -/obj/structure/bed, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/item/bedsheet/hos, -/obj/effect/landmark/start/head_of_security, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "hos"; - name = "HoS Office Shutters"; - pixel_y = -32; - pixel_x = -5 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"cjX" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 9 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark, -/area/engine/teg_cold) -"cjY" = ( -/obj/machinery/computer/station_alert{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/machinery/keycard_auth{ - pixel_x = 8; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"cjZ" = ( -/obj/item/beacon, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/ai_monitored/storage/eva) -"cka" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"ckb" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/science/robotics/lab) -"ckc" = ( -/obj/machinery/portable_atmospherics/canister/air, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/aft/secondary"; - dir = 8; - name = "Aft Air Hookup APC"; - pixel_x = -24 - }, -/turf/open/floor/plating, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"ckd" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cke" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/wood, -/area/library) -"ckf" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"ckg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark/corner, -/area/ai_monitored/storage/eva) -"ckh" = ( -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/cafeteria, -/area/medical/medbay/central) -"cki" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"ckj" = ( -/turf/open/floor/plasteel/cafeteria, -/area/medical/medbay/central) -"ckk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/camera{ - c_tag = "Research Maintenance"; - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"ckl" = ( -/turf/open/space/basic, -/area/space/station_ruins) -"ckm" = ( -/turf/closed/wall/r_wall, -/area/engine/teg_cold) -"ckn" = ( -/obj/machinery/door/airlock/external/glass{ - name = "External Solar Access"; - req_access_txt = "10;13" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cko" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/engine/engineering"; - dir = 4; - name = "Engine Room APC"; - pixel_x = 24 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"ckp" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/landmark/start/chemist, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"ckq" = ( -/obj/structure/closet/crate/hydroponics, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"ckr" = ( -/obj/effect/landmark/start/cargo_technician, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"cks" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"ckt" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"cku" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"ckv" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Warehouse"; - req_one_access_txt = "10;31" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"ckw" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"ckx" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"cky" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"ckz" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/table, -/obj/item/pipe_dispenser, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"ckA" = ( -/obj/structure/sign/warning/fire, -/turf/closed/wall/r_wall, -/area/engine/teg_hot) -"ckB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/closet/crate/engineering, -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/item/rcl/pre_loaded, -/obj/item/rcl/pre_loaded, -/obj/item/stack/cable_coil/red, -/obj/item/stack/cable_coil/red, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stock_parts/cell/high/plus, -/obj/machinery/camera{ - c_tag = "Engineering - Cold Loop"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"ckC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/binary/valve/digital{ - name = "gas to cold loop" - }, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"ckD" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/sign/warning/fire{ - pixel_x = 32; - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"ckE" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"ckF" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/engine/teg_cold"; - dir = 4; - name = "Cold Loop APC"; - pixel_x = 24 - }, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"ckG" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"ckH" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"ckI" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"ckJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/engine/teg_hot) -"ckK" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/clothing/under/rank/cargo/miner, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"ckL" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/clothing/under/rank/cargo/miner, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"ckM" = ( -/obj/structure/closet/secure_closet/miner, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/item/clothing/under/rank/cargo/miner, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"ckN" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/north, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"ckO" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"ckP" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"ckQ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"ckR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/science/lab) -"ckS" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ckT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"ckU" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"ckV" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"ckW" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"ckX" = ( -/obj/machinery/atmospherics/components/binary/valve, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ckY" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/checker, -/area/ai_monitored/storage/eva) -"ckZ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/ai_monitored/storage/eva) -"cla" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"clb" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"clc" = ( -/obj/machinery/vending/wardrobe/chem_wardrobe, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cld" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cle" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/science/misc_lab"; - dir = 1; - name = "Research Observatory APC"; - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"clf" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology - Pen 3"; - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"clg" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"clh" = ( -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cli" = ( -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"clj" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"clk" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cll" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"clm" = ( -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cln" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"clo" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"clp" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/science/xenobiology) -"clq" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"clr" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/science/xenobiology) -"cls" = ( -/obj/structure/window/reinforced/spawner, -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"clt" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/sign/warning/electricshock, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"clu" = ( -/obj/machinery/door/window/northleft{ - name = "Library Desk Door"; - req_access_txt = "37" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/library) -"clv" = ( -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"clw" = ( -/obj/effect/landmark/start/librarian, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/library) -"clx" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/storage{ - name = "Canister Storage" - }) -"cly" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"clz" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"clA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"clB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/closed/wall/r_wall, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"clC" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"clD" = ( -/obj/machinery/telecomms/server/presets/medical, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"clE" = ( -/obj/machinery/ntnet_relay, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"clF" = ( -/obj/machinery/telecomms/server/presets/supply, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"clG" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"clH" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engine/storage_shared{ - name = "Electrical Substation" - }) -"clI" = ( -/obj/machinery/telecomms/bus/preset_four, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"clJ" = ( -/obj/machinery/telecomms/broadcaster/preset_left, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"clK" = ( -/obj/machinery/telecomms/processor/preset_four, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"clL" = ( -/obj/machinery/telecomms/bus/preset_two, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"clM" = ( -/obj/machinery/telecomms/broadcaster/preset_right, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"clN" = ( -/obj/machinery/telecomms/processor/preset_two, -/turf/open/floor/circuit/telecomms/mainframe, -/area/tcommsat/server) -"clO" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"clP" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/amplifier, -/obj/item/stock_parts/subspace/analyzer, -/obj/item/stock_parts/subspace/analyzer, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"clQ" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/ansible, -/obj/item/stock_parts/subspace/crystal, -/obj/item/stock_parts/subspace/crystal, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"clR" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/filter, -/obj/item/stock_parts/subspace/transmitter, -/obj/item/stock_parts/subspace/transmitter, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"clS" = ( -/obj/structure/table, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/subspace/treatment, -/obj/item/stock_parts/manipulator, -/obj/item/stock_parts/manipulator, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"clT" = ( -/obj/structure/table, -/obj/item/stack/sheet/glass, -/obj/item/stack/sheet/glass, -/obj/item/stock_parts/micro_laser, -/obj/item/stock_parts/micro_laser, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"clU" = ( -/obj/structure/table, -/obj/item/stock_parts/scanning_module, -/obj/item/stock_parts/scanning_module, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"clV" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Supply - Security Post"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"clW" = ( -/turf/closed/wall/rust, -/area/storage/tech) -"clX" = ( -/turf/closed/wall/rust, -/area/maintenance/starboard/aft) -"clY" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/closet/firecloset, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"clZ" = ( -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Escape Hall - Port"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cma" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Escape Hall - Starboard"; - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cmb" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Supply - Mining Dock"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cmc" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Starboard Quarter Solar Maintenance"; - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cmd" = ( -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cme" = ( -/obj/structure/bed, -/obj/item/clothing/glasses/sunglasses/blindfold, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"cmf" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"cmg" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"cmh" = ( -/obj/structure/sign/warning/radiation, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cmi" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cmj" = ( -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cmk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cml" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cmm" = ( -/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cmn" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cmo" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cmp" = ( -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator"; - req_access_txt = "11" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cmq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cmr" = ( -/obj/machinery/gravity_generator/main/station, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cms" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cmt" = ( -/obj/structure/disposalpipe/segment, -/turf/closed/wall/r_wall, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"cmu" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/structure/cable, -/obj/machinery/power/smes, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cmv" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cmw" = ( -/obj/machinery/camera{ - c_tag = "Engineering - Gravity Generator"; - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/gravity_generator) -"cmx" = ( -/obj/machinery/light, -/turf/open/floor/engine, -/area/engine/gravity_generator) -"cmy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Starboard Quarter Maintenance"; - req_one_access_txt = "12;48" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"cmz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Starboard Quarter Maintenance"; - req_one_access_txt = "12;48" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"cmA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Bar Backroom"; - req_access_txt = "25" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"cmB" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/window/northright{ - name = "Emergency Shower" - }, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"cmC" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"cmD" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/machinery/disposal/deliveryChute, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cmE" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"cmF" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/mineral/titanium/blue, -/area/hallway/primary/central) -"cmG" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"cmH" = ( -/obj/structure/plasticflaps, -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor/preopen{ - id = "cargoblock"; - name = "Cargo Router" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"cmI" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/item/radio/off{ - pixel_x = -3; - pixel_y = 1 - }, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"cmJ" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/machinery/door/airlock/external/glass{ - name = "Mining Dock"; - req_one_access_txt = "10;24;48" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cmK" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cmL" = ( -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/aft) -"cmM" = ( -/obj/structure/sign/poster/official/safety_internals{ - pixel_x = -32 - }, -/obj/effect/landmark/blobstart, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cmN" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/item/radio/intercom{ - frequency = 1359; - name = "Station Intercom (Security)"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"cmO" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Engineering" - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cmP" = ( -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/library) -"cmQ" = ( -/obj/machinery/light/small{ - dir = 4; - light_color = "#d8b1b1" - }, -/obj/machinery/camera{ - c_tag = "Xenobiology - Pen 4"; - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cmR" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"cmS" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cmT" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/folder/red, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/door/window/northright{ - name = "Security Checkpoint"; - req_access_txt = "1" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"cmU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cmV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cmW" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/requests_console{ - department = "Cargo"; - name = "Cargo RC"; - pixel_x = -30 - }, -/obj/machinery/camera{ - c_tag = "Supply - Quartermaster's Office"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"cmX" = ( -/obj/machinery/light/small, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"cmY" = ( -/obj/machinery/door/airlock/engineering{ - name = "Hot Loop"; - req_one_access_txt = "10;24" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"cmZ" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/atmospherics/components/unary/cryo_cell{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"cna" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/atmospherics/components/unary/cryo_cell{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"cnb" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/stripes/line, -/obj/item/storage/box/beakers{ - pixel_x = -4 - }, -/obj/item/storage/box/syringes{ - pixel_x = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cnc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cnd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cne" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cnf" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cng" = ( -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"cnh" = ( -/obj/machinery/door/airlock/engineering{ - name = "Cold Loop"; - req_access_txt = "10" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cni" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cnj" = ( -/obj/machinery/camera{ - c_tag = "Research - Observatory"; - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cnk" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cnl" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1; - pixel_x = 5 - }, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cnm" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/gateway) -"cnn" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cno" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cnp" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/bridge) -"cnq" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/mob/living/simple_animal/cockroach, -/turf/open/floor/plating, -/area/maintenance/port/central) -"cnr" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cns" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cnt" = ( -/obj/structure/fans/tiny, -/obj/structure/plasticflaps, -/obj/machinery/conveyor/auto{ - dir = 8; - id = "disposal" - }, -/obj/machinery/door/poddoor{ - name = "Disposal Router" - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cnu" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/gateway) -"cnv" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/bot, -/obj/effect/decal/cleanable/dirt, -/obj/structure/frame/computer, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cnw" = ( -/obj/effect/turf_decal/bot, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"cnx" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"cny" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"cnz" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/obj/structure/sign/departments/chemistry{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cnA" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cnB" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/chair{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"cnC" = ( -/obj/structure/disposaloutlet{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/turf/open/floor/engine, -/area/science/explab) -"cnD" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/engine, -/area/science/xenobiology) -"cnE" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 9; - height = 22; - id = "emergency_home"; - name = "CogStation Escape Dock"; - width = 29 - }, -/turf/open/space/basic, -/area/space) -"cnF" = ( -/obj/structure/disposalpipe/segment, -/obj/item/reagent_containers/food/drinks/bottle/kahlua/empty, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/maintenance/port/fore) -"cnG" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Shuttle Maintenance Access" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cnH" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Departures Shuttle Dock" - }, -/obj/structure/fans/tiny, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cnI" = ( -/turf/open/floor/plating{ - icon_state = "platingdmg3" - }, -/area/space/nearstation) -"cnJ" = ( -/obj/structure/girder, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cnK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"cnL" = ( -/obj/structure/closet/crate/science, -/obj/item/stack/sheet/metal/ten, -/obj/item/stack/sheet/glass/five, -/obj/item/stack/rods/twentyfive, -/obj/item/target/syndicate, -/obj/item/target/alien, -/obj/item/target, -/obj/item/target/clown, -/turf/open/floor/plasteel, -/area/science/mixing) -"cnM" = ( -/obj/machinery/mass_driver{ - dir = 8; - id = "pb_in"; - name = "Router Driver" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"cnN" = ( -/obj/structure/bookcase/random/fiction, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/library) -"cnO" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/engine, -/area/science/storage) -"cnP" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/item/kirbyplants{ - icon_state = "plant-21"; - pixel_y = 3 - }, -/turf/open/floor/wood, -/area/library) -"cnS" = ( -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/highcap/fifteen_k{ - areastring = /area/maintenance/solars/starboard/aft; - dir = 1; - name = "Starboard Quarter Solars APC"; - pixel_y = 26 - }, -/turf/open/floor/plating, -/area/maintenance/solars/starboard/aft) -"cnT" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/plasteel, -/area/science/mixing) -"cnU" = ( -/obj/machinery/door/poddoor/incinerator_toxmix, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cnV" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/turf/open/floor/engine, -/area/science/storage) -"cnW" = ( -/obj/structure/chair/office/dark{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/library) -"cnX" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/vehicle/ridden/wheelchair, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cnY" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/vehicle/ridden/wheelchair, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cnZ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/holopad, -/obj/machinery/requests_console{ - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_y = -32 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"coa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cob" = ( -/obj/structure/closet/l3closet/virology, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/sign/warning/biohazard{ - pixel_y = -32 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"coc" = ( -/obj/machinery/camera{ - c_tag = "Medbay - Reception"; - dir = 4 - }, -/turf/open/floor/plasteel/stairs, -/area/medical/medbay/central) -"cod" = ( -/obj/structure/chair/comfy/brown{ - dir = 8 - }, -/obj/machinery/light, -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/wood, -/area/medical/medbay/lobby) -"coe" = ( -/obj/structure/bodycontainer/morgue, -/obj/machinery/camera{ - c_tag = "Medbay Morgue"; - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"cof" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"cog" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plating, -/area/engine/storage_shared{ - name = "Electrical Substation" - }) -"coh" = ( -/obj/machinery/power/smes, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/engine/storage_shared{ - name = "Electrical Substation" - }) -"coi" = ( -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"coj" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cok" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"col" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"com" = ( -/obj/machinery/chem_master, -/obj/effect/turf_decal/stripes/end{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"con" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/station_engineer, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/storage/primary) -"coo" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/storage/primary) -"cop" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "CEPrivacy"; - name = "CE Privacy Shutters" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/chief) -"coq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departures" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cor" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departures" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cos" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Workshop"; - req_access_txt = "11" - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"cot" = ( -/obj/machinery/computer/apc_control{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"cou" = ( -/obj/structure/chair/office/dark{ - dir = 8 - }, -/obj/effect/landmark/start/chief_engineer, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"cov" = ( -/obj/structure/sign/warning/nosmoking{ - pixel_y = -32 - }, -/turf/closed/wall, -/area/medical/medbay/central) -"cow" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Asteroid Mining Access"; - req_one_access_txt = "10;48" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cox" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"coy" = ( -/obj/structure/sign/poster/official/safety_internals{ - pixel_x = -32 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/cobweb, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"coz" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"coA" = ( -/obj/structure/closet/emcloset, -/obj/machinery/camera{ - c_tag = "Aft Maintenance - Starboard Quarter"; - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"coB" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Aft Hallway - MedSci Port"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"coC" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/machinery/camera{ - c_tag = "Aft Maintenance - Starboard Bow"; - pixel_x = 22 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"coD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"coE" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Aft Hall - MedSci Starboard"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"coF" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/landmark/start/assistant, -/obj/machinery/camera{ - c_tag = "Aft Hall - Workshop"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"coG" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Research - Experimentation Lab"; - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/engine, -/area/science/explab) -"coH" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"coI" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/gateway) -"coJ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Virology Access"; - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"coK" = ( -/obj/machinery/camera{ - c_tag = "Medbay - Monkey Pen"; - dir = 4 - }, -/mob/living/carbon/monkey, -/turf/open/floor/grass, -/area/medical/virology) -"coL" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=cargo"; - location = "eng2" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"coM" = ( -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"coN" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"coO" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Central Hall"; - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/hallway/primary/central) -"coP" = ( -/obj/structure/table/glass, -/obj/item/paper_bin, -/obj/machinery/camera{ - c_tag = "Central Plaza - Port"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"coQ" = ( -/obj/machinery/camera{ - c_tag = "Central Docking Bay" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"coR" = ( -/obj/machinery/camera{ - c_tag = "Ferry Docking Bay"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"coS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Ferry Docking Bay - Starboard"; - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"coT" = ( -/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"coU" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Security - Front Desk"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/main) -"coV" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/camera{ - c_tag = "Medbay Entrance"; - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"coW" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/structure/rack, -/obj/effect/spawner/lootdrop/techstorage/engineering, -/obj/machinery/camera{ - c_tag = "Technical Storage"; - dir = 4 - }, -/turf/open/floor/plating, -/area/storage/tech) -"coX" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Medbay - Operating Theatre"; - dir = 8; - network = list("ss13","medbay"); - pixel_y = -22 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"coY" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/machinery/camera{ - c_tag = "Medbay - Cryogenics"; - dir = 1 - }, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/obj/item/reagent_containers/glass/beaker/cryoxadone, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"coZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpa" = ( -/obj/structure/closet/crate/radiation, -/obj/item/storage/firstaid/radbgone, -/obj/item/clothing/suit/radiation, -/obj/item/clothing/head/radiation, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cpb" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/sign/warning/biohazard{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/medical/virology) -"cpc" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpd" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/crew_quarters/fitness) -"cpe" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/full, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/turf/open/floor/engine, -/area/science/explab) -"cpf" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"cpg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cph" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"cpi" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/visible{ - dir = 5 - }, -/obj/machinery/light/small, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"cpj" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"cpk" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cpl" = ( -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpm" = ( -/obj/structure/chair/stool, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/turf/open/floor/plasteel/dark, -/area/lawoffice) -"cpn" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpo" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cpp" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor/auto{ - id = "cargo" - }, -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor/preopen{ - id = "cargoblock"; - name = "Cargo Router" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"cpq" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet/blue, -/area/crew_quarters/abandoned_gambling_den{ - name = "Arcade" - }) -"cpr" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/public/glass, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cps" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/captain) -"cpt" = ( -/obj/machinery/newscaster{ - pixel_x = -30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"cpu" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/holopad, -/turf/open/floor/wood, -/area/library) -"cpv" = ( -/obj/structure/table, -/obj/machinery/newscaster{ - pixel_x = 30 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cpw" = ( -/obj/machinery/computer/operating, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/sign/poster/official/space_cops{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/science/robotics/lab) -"cpx" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/mineral/titanium/blue, -/area/hallway/primary/central) -"cpy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cpz" = ( -/turf/closed/wall/r_wall, -/area/medical/virology) -"cpA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cpB" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space/basic, -/area/space) -"cpC" = ( -/obj/effect/landmark/carpspawn, -/turf/open/space/basic, -/area/space/station_ruins) -"cpD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/engine, -/area/science/storage) -"cpE" = ( -/obj/structure/fans/tiny, -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cpF" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cpG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/external, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/department/eva) -"cpH" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/sign/directions/engineering{ - dir = 4; - pixel_y = -24 - }, -/obj/structure/sign/directions/supply{ - dir = 4; - pixel_y = -32 - }, -/obj/structure/sign/directions/evac{ - dir = 4; - pixel_y = -40 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cpI" = ( -/obj/machinery/chem_dispenser, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"cpJ" = ( -/turf/closed/wall/r_wall/rust, -/area/quartermaster/office) -"cpK" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"cpL" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"cpM" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/bot, -/obj/machinery/light{ - dir = 1; - light_color = "#e8eaff" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cpN" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/item/cartridge/atmos, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"cpO" = ( -/obj/structure/closet/secure_closet/atmospherics, -/obj/item/cartridge/atmos, -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"cpP" = ( -/obj/machinery/camera{ - c_tag = "Research - Gateway Atrium"; - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/gateway) -"cpQ" = ( -/obj/machinery/vending/wardrobe/atmos_wardrobe, -/obj/effect/turf_decal/stripes/line{ - dir = 6; - layer = 2.03 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/dark, -/area/engine/atmos) -"cpR" = ( -/obj/structure/closet/crate/engineering/electrical, -/obj/item/electronics/apc, -/obj/item/electronics/apc, -/obj/item/electronics/airalarm, -/obj/item/electronics/airalarm, -/obj/item/electronics/firelock, -/obj/item/electronics/firelock, -/obj/item/electronics/firealarm, -/obj/item/electronics/firealarm, -/obj/item/electronics/airlock, -/obj/item/electronics/airlock, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cpS" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cpT" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cpU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cpV" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cpW" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/landmark/start/cargo_technician, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cpX" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cpY" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/engine/teg_hot) -"cpZ" = ( -/obj/structure/table, -/obj/item/tank/internals/air, -/obj/item/clothing/mask/gas, -/turf/open/floor/plasteel/dark, -/area/engine/teg_hot) -"cqa" = ( -/obj/machinery/autolathe, -/obj/effect/turf_decal/delivery, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cqb" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqc" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cqd" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/mob/living/simple_animal/hostile/retaliate/goose{ - check_friendly_fire = 1; - desc = "It may not be as wise as an owl, but the Head of Security's pet is far more dangerous."; - faction = list("neutral","silicon","turret","station"); - name = "Officer Snooty" - }, -/turf/open/floor/plasteel, -/area/security/main) -"cqe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=eng1"; - location = "sci" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqf" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"cqg" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqh" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"cqi" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/crew_quarters/fitness) -"cqj" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cqk" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=med"; - location = "cargo" - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cql" = ( -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=eng2"; - location = "evac" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cqm" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/obj/item/storage/box/disks_nanite, -/obj/item/book/manual/wiki/research_and_development{ - pixel_x = 4; - pixel_y = -8 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"cqn" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cqo" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cqp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cqq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Warehouse"; - req_one_access_txt = "10;24" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cqr" = ( -/obj/machinery/power/apc{ - areastring = "/area/maintenance/starboard/central"; - name = "Central Starboard Maintenance APC"; - pixel_y = -26 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/maintenance/starboard/central) -"cqs" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/table/wood, -/obj/item/clipboard, -/obj/item/paper/guides/jobs/engi/solars, -/obj/item/pen, -/obj/machinery/camera{ - c_tag = "Engineering Foyer - Port"; - network = list("ss13","rd") - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cqt" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/structure/noticeboard/qm{ - dir = 4; - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"cqu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/computer/atmos_alert, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cqv" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cqw" = ( -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/obj/machinery/disposal/bin, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/white/full, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cqx" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/modular_computer/console/preset/engineering, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cqy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/table/wood, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/obj/structure/disposalpipe/segment, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cqz" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cqA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cqB" = ( -/obj/structure/table/wood, -/obj/item/reagent_containers/food/drinks/bottle/absinthe, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"cqC" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cqD" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cqE" = ( -/obj/machinery/conveyor_switch{ - id = "EngiCargoConveyer" - }, -/obj/machinery/button/door{ - id = "EngiDeliverDoor"; - name = "Engineering Delivery Door Control"; - pixel_x = 24 - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cqF" = ( -/obj/effect/turf_decal/delivery, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"cqG" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cqH" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"cqI" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/atmospheric_technician, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cqJ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cqK" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/sign/plaques/atmos{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cqL" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cqM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cqN" = ( -/turf/closed/wall/rust, -/area/maintenance/department/security) -"cqO" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cqP" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"cqQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqR" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqS" = ( -/obj/machinery/computer/rdconsole/experiment{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/requests_console{ - department = "Science"; - departmentType = 2; - name = "Science RC"; - pixel_x = -30; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cqT" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cqU" = ( -/obj/machinery/door/airlock/external{ - name = "Escape Pod" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cqV" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"cqW" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cqX" = ( -/obj/docking_port/stationary{ - dir = 4; - dwidth = 5; - height = 7; - id = "supply_home"; - name = "Cargo Shuttle"; - width = 12 - }, -/turf/open/space/basic, -/area/space) -"cqY" = ( -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/status_display{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cqZ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/requests_console{ - department = "Medbay"; - departmentType = 1; - name = "Medbay RC"; - pixel_y = -32 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cra" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance{ - name = "Auxiliary Tool Storage" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/storage/tools) -"crb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/conveyor{ - dir = 4; - id = "EngiCargoConveyer" - }, -/turf/open/floor/plating, -/area/engine/teg_cold) -"crc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"crd" = ( -/obj/effect/turf_decal/bot, -/obj/structure/table/reinforced, -/obj/item/destTagger, -/obj/item/destTagger, -/obj/item/destTagger, -/obj/structure/sign/warning{ - name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; - pixel_y = 32 - }, -/obj/machinery/button/massdriver{ - id = "cargo_out"; - pixel_x = -8; - pixel_y = -4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"cre" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Asteroid Mining Access"; - req_one_access_txt = "10;48" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"crf" = ( -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"crg" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/door/airlock/medical/glass{ - name = "Chemistry Lab"; - req_access_txt = "5; 33" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"crh" = ( -/obj/machinery/mass_driver{ - dir = 1; - id = "cargo_out"; - name = "Router Driver" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"cri" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"crj" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit) -"crk" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/mineral/titanium/blue, -/area/hallway/primary/central) -"crl" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"crm" = ( -/obj/machinery/door/firedoor, -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "EngiCargoConveyer" - }, -/obj/machinery/door/poddoor{ - id = "EngiDeliverDoor"; - name = "Engineering Delivery Door" - }, -/turf/open/floor/plating, -/area/engine/teg_cold) -"crn" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chem1"; - name = "chem lab shutters" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/medical/chemistry) -"cro" = ( -/turf/closed/wall/r_wall/rust, -/area/maintenance/starboard/aft) -"crp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plating, -/area/storage/tech) -"crq" = ( -/obj/structure/closet/crate/freezer, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - areastring = "/area/medical/morgue"; - dir = 4; - name = "Morgue APC"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"crr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Central Hall - Fore"; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"crs" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = -29 - }, -/turf/open/floor/engine, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"crt" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cru" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"crv" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"crw" = ( -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"crx" = ( -/obj/machinery/camera{ - c_tag = "Engine Room - Port Quarter"; - dir = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"cry" = ( -/obj/structure/table, -/obj/item/stack/sheet/plasteel{ - amount = 10; - pixel_x = -5 - }, -/obj/item/stack/cable_coil/random, -/obj/item/stack/cable_coil/random{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/item/stack/cable_coil/random{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Robotics - Surgery"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"crz" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/camera/motion{ - c_tag = "Telecomms Satellite"; - dir = 1; - network = list("tcomms") - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"crA" = ( -/obj/machinery/aug_manipulator, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"crB" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "Telecomms Satellite Exterior - Port"; - dir = 8; - network = list("tcomms") - }, -/turf/open/space/basic, -/area/space/nearstation) -"crC" = ( -/obj/structure/lattice, -/obj/machinery/camera/motion{ - c_tag = "Telecomms Satellite Exterior Starboard"; - dir = 4; - network = list("tcomms") - }, -/turf/open/space/basic, -/area/space/nearstation) -"crD" = ( -/obj/machinery/camera/motion{ - c_tag = "Telecomms Server Room"; - dir = 1; - network = list("tcomms") - }, -/turf/open/floor/plasteel/dark/telecomms, -/area/tcommsat/server) -"crE" = ( -/obj/machinery/camera/motion{ - c_tag = "Telecomms Satellite Exterior - Port Quarter"; - network = list("tcomms") - }, -/turf/open/space/basic, -/area/space) -"crF" = ( -/obj/machinery/camera/motion{ - c_tag = "Telecomms Satellite Exterior - Starboard Quarter"; - network = list("tcomms"); - pixel_x = 22 - }, -/turf/open/space/basic, -/area/space) -"crG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"crH" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"crI" = ( -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1; - pixel_y = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plating, -/area/science/mixing) -"crJ" = ( -/obj/structure/window/reinforced, -/obj/machinery/mass_driver{ - dir = 8; - id = "toxinsdriver" - }, -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/mixing) -"crK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"crL" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plating/airless, -/area/science/test_area) -"crM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/plating/airless, -/area/science/test_area) -"crN" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/atmospherics/components/unary/tank/air{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"crO" = ( -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/end, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"crP" = ( -/obj/structure/lattice, -/turf/closed/wall, -/area/hallway/secondary/entry) -"crQ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/poster/official/safety_internals{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"crR" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"crS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/airlock/external{ - name = "Escape Pod" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"crT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/poster/official/safety_internals{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"crU" = ( -/obj/effect/turf_decal/stripes/line, -/obj/item/crowbar, -/obj/structure/sign/poster/official/safety_internals{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"crV" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"crW" = ( -/obj/machinery/computer/rdconsole/robotics{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"crX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/landmark/start/medical_doctor, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"crY" = ( -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"crZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/stairs/left, -/area/hallway/primary/aft) -"csa" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/sign/warning/pods{ - pixel_x = -32; - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/entry) -"csb" = ( -/obj/structure/sign/warning/pods{ - pixel_x = 32; - pixel_y = 32 - }, -/turf/open/floor/plasteel/dark/corner{ - dir = 1 - }, -/area/hallway/secondary/entry) -"csc" = ( -/obj/structure/fans/tiny/invisible, -/obj/docking_port/stationary{ - dir = 2; - dwidth = 1; - height = 4; - name = "escape pod loader"; - roundstart_template = /datum/map_template/shuttle/escape_pod/default; - width = 3 - }, -/turf/open/space/basic, -/area/space) -"csd" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"cse" = ( -/obj/structure/table/wood, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/item/clipboard, -/obj/item/paper/monitorkey, -/obj/item/pen/fountain, -/obj/item/stamp/ce, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Engineer's Desk"; - departmentType = 5; - name = "Chief Engineer's RC"; - pixel_y = -32 - }, -/mob/living/simple_animal/parrot/Poly, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"csf" = ( -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Research Director's Desk"; - departmentType = 5; - name = "Research Director's RC"; - pixel_y = -32; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"csg" = ( -/obj/machinery/holopad, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"csh" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"csi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "chem1"; - name = "chem lab shutters" - }, -/turf/open/floor/plating, -/area/medical/chemistry) -"csj" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"csk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"csl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"csm" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"csn" = ( -/obj/machinery/computer/security{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - name = "Security RC"; - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/security/main) -"cso" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/holopad, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"csp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medical)"; - pixel_x = 28 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"csq" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Cold Loop"; - req_access_txt = "10" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"csr" = ( -/obj/structure/table, -/obj/machinery/computer/libraryconsole/bookmanagement, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Bridge"; - departmentType = 5; - name = "Bridge RC"; - pixel_x = 30 - }, -/turf/open/floor/plasteel, -/area/bridge) -"css" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"cst" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/teg_cold) -"csu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/gateway) -"csv" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/item/storage/toolbox/mechanical, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/paper/guides/cogstation/letter_supp, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"csw" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"csx" = ( -/obj/structure/closet/secure_closet/RD, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/item/paper/fluff/cogstation/letter_rd, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"csy" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/landmark/xmastree, -/turf/open/floor/plasteel{ - dir = 1; - icon_state = "chapel" - }, -/area/chapel/main) -"csz" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"csA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Visitation" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/main) -"csB" = ( -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"csC" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating/asteroid, -/area/hydroponics/garden{ - name = "Nature Preserve" - }) -"csD" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/bridge) -"csE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hop) -"csF" = ( -/obj/structure/bed, -/obj/effect/landmark/start/research_director, -/obj/item/bedsheet/rd, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/hor) -"csG" = ( -/obj/machinery/holopad, -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/lawoffice) -"csH" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/wood, -/area/library) -"csI" = ( -/obj/structure/table/wood, -/obj/machinery/light_switch{ - pixel_x = 4; - pixel_y = -24 - }, -/obj/item/flashlight/lamp/green, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -6; - pixel_y = -32 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/hor) -"csJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"csK" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/door/window/northright{ - name = "Medbay Desk"; - req_access_txt = "5" - }, -/obj/item/clipboard, -/obj/item/clothing/glasses/hud/health, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/item/pen, -/obj/item/clothing/glasses/hud/health, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"csL" = ( -/obj/effect/landmark/xmastree/rdrod, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/hor) -"csM" = ( -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"csN" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/hor) -"csO" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"csP" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"csQ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering{ - name = "Engine Room" - }) -"csR" = ( -/turf/open/floor/engine, -/area/science/storage) -"csS" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"csT" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/science/circuit) -"csU" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/storage/tech) -"csV" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/button/door{ - id = "robotics"; - name = "Shutters Control Button"; - pixel_y = 8; - req_access_txt = "29"; - pixel_x = -24 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/science/robotics/lab) -"csW" = ( -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"csX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"csY" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"csZ" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cta" = ( -/obj/effect/landmark/blobstart, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine, -/area/science/xenobiology) -"ctb" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/landmark/blobstart, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/engine, -/area/science/explab) -"ctc" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"ctd" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"cte" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"ctf" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"ctg" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"cth" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"cti" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"ctj" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/science/mixing) -"ctk" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_x = 32 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"ctl" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/full, -/obj/structure/window/reinforced/spawner/north, -/turf/open/floor/plasteel, -/area/engine/workshop) -"ctm" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/disposalpipe/sorting/mail/flip{ - sortType = 2 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"ctn" = ( -/obj/structure/closet/secure_closet/engineering_chief, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 1; - locked = 0; - pixel_y = -22 - }, -/obj/item/paper/guides/cogstation/letter_chief, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"cto" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/white/full, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"ctp" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"ctq" = ( -/obj/structure/closet/crate, -/obj/effect/spawner/lootdrop/maintenance, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"ctr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plating, -/area/quartermaster/office) -"cts" = ( -/obj/structure/rack, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = -29 - }, -/turf/open/floor/plasteel/white, -/area/gateway) -"ctt" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"ctu" = ( -/obj/structure/table, -/obj/effect/turf_decal/bot, -/obj/machinery/camera{ - c_tag = "Supply - Cargo Office"; - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/item/storage/box/disks, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"ctv" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"ctw" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"ctx" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"cty" = ( -/obj/effect/landmark/start/shaft_miner, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"ctz" = ( -/obj/structure/table, -/obj/item/stamp/qm, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/item/coin/silver{ - pixel_x = -12 - }, -/obj/item/key{ - pixel_x = 8; - pixel_y = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"ctA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Cargo Bay"; - req_one_access_txt = "31;48" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"ctB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"ctC" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"ctD" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/medical/virology) -"ctE" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/modular_computer/console/preset/engineering, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/window/reinforced/spawner/north, -/turf/open/floor/plasteel, -/area/engine/workshop) -"ctF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/medical/virology) -"ctG" = ( -/turf/closed/wall, -/area/engine/workshop) -"ctH" = ( -/obj/effect/turf_decal/stripes/line, -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"ctI" = ( -/obj/structure/table/reinforced, -/obj/item/paper_bin, -/obj/item/pen, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/engine, -/area/science/explab) -"ctJ" = ( -/obj/structure/plasticflaps, -/turf/open/floor/plating, -/area/engine/workshop) -"ctK" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - id = "workshop_off" - }, -/turf/open/floor/plating, -/area/engine/workshop) -"ctL" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Xenobiology - Pen 5"; - dir = 4 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"ctM" = ( -/obj/machinery/light/small{ - dir = 4; - light_color = "#d8b1b1" - }, -/obj/machinery/camera{ - c_tag = "Xenobiology - Pen 6"; - dir = 8; - pixel_y = -22 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"ctN" = ( -/obj/machinery/light/small{ - dir = 4; - light_color = "#d8b1b1" - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"ctO" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/sign/warning/biohazard{ - pixel_x = -32 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"ctP" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"ctQ" = ( -/obj/structure/grille, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating/airless, -/area/science/xenobiology) -"ctR" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ctS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/sign/warning/biohazard{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"ctT" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#c1caff" - }, -/obj/machinery/camera{ - c_tag = "Xenobiology - Aft"; - network = list("ss13","rd") - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ctU" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 10 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"ctV" = ( -/obj/structure/chair{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/hallway/secondary/exit"; - name = "Escape Shuttle Hallway APC"; - pixel_y = -28 - }, -/turf/open/floor/plasteel/white/corner, -/area/hallway/secondary/exit) -"ctW" = ( -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"ctX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/closet/toolcloset, -/turf/open/floor/plasteel, -/area/engine/workshop) -"ctY" = ( -/obj/structure/sign/departments/xenobio{ - pixel_x = -32; - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"ctZ" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cua" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cub" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cuc" = ( -/obj/machinery/door/airlock/virology/glass{ - name = "Monkey Pen"; - req_access_txt = "39" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cud" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/camera{ - c_tag = "Xenobiology - Aft Access"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cue" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "8;55" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cuf" = ( -/obj/machinery/light, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cug" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cuh" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cui" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cuj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cuk" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cul" = ( -/obj/structure/chair/comfy/black, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cum" = ( -/obj/structure/rack, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/storage/firstaid/regular{ - empty = 1; - name = "First-Aid (empty)" - }, -/obj/item/healthanalyzer{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/healthanalyzer{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/healthanalyzer{ - pixel_x = 4; - pixel_y = -4 - }, -/obj/item/assembly/prox_sensor, -/obj/item/assembly/prox_sensor, -/obj/item/assembly/prox_sensor, -/obj/item/assembly/prox_sensor, -/obj/item/assembly/prox_sensor, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cun" = ( -/obj/structure/table/reinforced, -/obj/item/reagent_containers/food/snacks/meat/steak, -/obj/machinery/camera{ - c_tag = "Xenobiology - Test Chamber"; - dir = 1 - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cuo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"cup" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cuq" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cur" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cus" = ( -/obj/machinery/light/small, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cut" = ( -/obj/docking_port/stationary{ - dir = 2; - dwidth = 7; - height = 9; - id = "whiteship_home"; - name = "SS13: Merchant Dock"; - width = 13 - }, -/turf/open/space/basic, -/area/space) -"cuu" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/closet/toolcloset, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cuv" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cuw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/kirbyplants/photosynthetic, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cux" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"cuy" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/space/basic, -/area/space/nearstation) -"cuz" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cuA" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cuB" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cuC" = ( -/obj/structure/lattice/catwalk, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 10 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cuD" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/space/basic, -/area/space/nearstation) -"cuE" = ( -/obj/structure/lattice, -/obj/structure/sign/warning{ - name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/space/basic, -/area/space/nearstation) -"cuF" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cuG" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/space/basic, -/area/space/nearstation) -"cuH" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cuI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/screwdriver, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cuJ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/light{ - dir = 1 - }, -/obj/item/storage/toolbox/mechanical, -/obj/item/screwdriver, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cuK" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/closet/secure_closet/engineering_welding, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/engine/workshop"; - dir = 1; - name = "Engineering Workshop APC"; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cuL" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cuM" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/chair{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cuN" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/turf/closed/wall, -/area/engine/workshop) -"cuO" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/storage/primary) -"cuP" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/start/atmospheric_technician, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cuQ" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/gateway) -"cuR" = ( -/turf/closed/wall, -/area/router/air) -"cuS" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/mass_driver{ - dir = 1; - id = "workshop_out"; - name = "Router Driver" - }, -/turf/open/floor/plating, -/area/engine/workshop) -"cuT" = ( -/obj/structure/window/reinforced/spawner/west, -/obj/machinery/conveyor{ - id = "workshop_off" - }, -/turf/open/floor/plating, -/area/engine/workshop) -"cuU" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/sign/poster/official/build{ - pixel_x = -32 - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cuV" = ( -/turf/open/floor/plasteel, -/area/engine/workshop) -"cuW" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cuX" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay"; - req_access_txt = "5" - }, -/obj/effect/mapping_helpers/airlock/unres, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cuY" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"cuZ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/science/robotics/lab) -"cva" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cvb" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cvc" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cvd" = ( -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cve" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/hor) -"cvf" = ( -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cvg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cvh" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/computer/rdconsole/production{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cvi" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/floor/plating, -/area/engine/workshop) -"cvj" = ( -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/obj/machinery/conveyor{ - id = "DeliveryConveyer" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"cvk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/conveyor{ - dir = 1; - id = "DeliveryConveyer" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"cvl" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/router/air) -"cvm" = ( -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/central"; - dir = 1; - name = "Airbridge Router APC"; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/router/air) -"cvn" = ( -/obj/structure/table, -/obj/item/destTagger, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/router/air) -"cvo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cvp" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/computer/cargo/request, -/obj/machinery/camera{ - c_tag = "Airbridge Router"; - pixel_x = 22 - }, -/obj/machinery/requests_console{ - department = "Airbridge Router"; - name = "Airbridge Router RC"; - pixel_y = 28 - }, -/turf/open/floor/plasteel, -/area/router/air) -"cvq" = ( -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/conveyor{ - dir = 1; - id = "workshop_off" - }, -/turf/open/floor/plating, -/area/engine/workshop) -"cvr" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/workshop) -"cvs" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/medical/virology) -"cvt" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 10 - }, -/area/science/robotics/lab) -"cvu" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cvv" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/requests_console{ - department = "Genetics"; - name = "Genetics RC"; - pixel_x = 30 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cvw" = ( -/obj/structure/closet, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/item/wrench/medical, -/obj/item/screwdriver, -/obj/item/stock_parts/cell/high/plus, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medical)"; - pixel_y = -30 - }, -/turf/open/floor/plasteel/cafeteria, -/area/medical/medbay/central) -"cvx" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/firstaid/regular{ - pixel_x = 2; - pixel_y = 4 - }, -/obj/item/storage/toolbox/emergency, -/obj/item/hypospray/mkii/tricord, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medical)"; - pixel_y = -30 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"cvy" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cvz" = ( -/obj/machinery/atmospherics/components/trinary/mixer{ - dir = 4; - node1_concentration = 0.8; - node2_concentration = 0.2; - on = 1; - target_pressure = 4500 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cvA" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/sign/warning/securearea{ - pixel_x = -32; - pixel_y = -32 - }, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cvB" = ( -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment, -/obj/machinery/porta_turret/ai{ - dir = 1; - req_access = list(16) - }, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"cvC" = ( -/obj/machinery/computer/nanite_cloud_controller, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/structure/window/reinforced/spawner, -/turf/open/floor/plasteel/dark, -/area/science/server{ - name = "Computer Core" - }) -"cvD" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/rnd/server, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"cvE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/door/poddoor{ - id = "RDServer"; - name = "RD Server Lockup" - }, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"cvF" = ( -/obj/item/caution, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"cvG" = ( -/obj/machinery/door/airlock/research/glass{ - name = "Xenobiology Lab Access"; - req_access_txt = "55" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cvH" = ( -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/research{ - name = "Toxins Mixing Lab"; - req_access_txt = "7;8" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor/heavy, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cvI" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/computer/telecomms/server{ - dir = 1; - network = "tcommsat" - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cvJ" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"cvK" = ( -/obj/structure/chair/sofa/right, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/bridge) -"cvL" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cvM" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/gateway) -"cvN" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cvO" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/valve{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cvP" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/camera{ - c_tag = "Custodial Closet"; - dir = 1 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/janitor) -"cvQ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side, -/area/science/robotics/lab) -"cvR" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - sortType = 23 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cvS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/holopad, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"cvT" = ( -/obj/structure/extinguisher_cabinet, -/turf/closed/wall, -/area/medical/medbay/central) -"cvU" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/reagent_dispensers/virusfood{ - pixel_x = -32 - }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 32 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cvV" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 26 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cvW" = ( -/obj/structure/chair/comfy/black, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cvX" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "8;55" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cvY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/research/glass{ - name = "Xenobiology Lab Access"; - req_access_txt = "55" - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cvZ" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/clipboard, -/obj/item/stamp/denied{ - pixel_x = 4; - pixel_y = 4 - }, -/obj/item/stamp, -/obj/machinery/door/window/southright{ - name = "Customs Desk"; - req_access_txt = "57" - }, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "HoPAft"; - name = "HoP Aft Desk Shutters" - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"cwa" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/item/flashlight/lamp, -/obj/structure/window/reinforced/spawner, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "HoPAft"; - name = "HoP Aft Desk Shutters" - }, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"cwb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/research{ - name = "Mech Bay"; - req_access_txt = "29" - }, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"cwc" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/button/door{ - id = "cargoblock"; - name = "Router Access Control"; - pixel_x = -24; - pixel_y = 24; - req_access_txt = "31" - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"cwd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment, -/obj/machinery/holopad, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"cwe" = ( -/obj/structure/closet/secure_closet/exile, -/turf/open/floor/plasteel/white, -/area/gateway) -"cwf" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cwg" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cwh" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/item/stack/sheet/mineral/plasma, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cwi" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cwj" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/medical/virology) -"cwk" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/lounge) -"cwl" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/item/book/manual/wiki/infections, -/obj/item/folder/white, -/obj/machinery/requests_console{ - department = "Virology"; - name = "Virology RC"; - pixel_x = -32 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cwm" = ( -/obj/machinery/atmospherics/components/binary/valve, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cwn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cwo" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/table, -/obj/machinery/microwave, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cwp" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/medical/virology) -"cwq" = ( -/obj/machinery/door/airlock/engineering{ - name = "Hot Loop"; - req_one_access_txt = "10;24" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"cwr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cws" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = -24 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cwt" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"cwu" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cwv" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/structure/sign/warning/vacuum/external, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cww" = ( -/turf/closed/wall/r_wall, -/area/engine/atmos) -"cwx" = ( -/obj/machinery/disposal/bin, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/white/full, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cwy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/transit_tube/horizontal, -/turf/open/floor/plating, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"cwz" = ( -/obj/structure/transit_tube/curved{ - dir = 8 - }, -/turf/open/space/basic, -/area/space) -"cwA" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) -"cwB" = ( -/turf/open/floor/plasteel, -/area/engine/atmos) -"cwC" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"cwD" = ( -/obj/structure/transit_tube/diagonal/topleft, -/turf/open/space/basic, -/area/space) -"cwE" = ( -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cwF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cwG" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/effect/landmark/event_spawn, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cwH" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall, -/area/crew_quarters/toilet/restrooms) -"cwI" = ( -/obj/structure/transit_tube/horizontal, -/turf/open/space/basic, -/area/space) -"cwJ" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/horizontal, -/turf/open/space/basic, -/area/space/nearstation) -"cwK" = ( -/obj/structure/transit_tube/crossing/horizontal, -/turf/open/space/basic, -/area/space) -"cwL" = ( -/obj/structure/transit_tube/horizontal, -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/engine/atmos) -"cwM" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/structure/transit_tube/station/reverse/flipped, -/obj/structure/transit_tube_pod{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cwN" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"cwO" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cwP" = ( -/obj/structure/bed, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/landmark/start/chief_engineer, -/obj/item/bedsheet/ce, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/crew_quarters/heads/chief"; - dir = 4; - name = "Chief Engineer's Office APC"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/heads/chief) -"cwQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/storage/primary) -"cwR" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"cwS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Warehouse"; - req_access_txt = "11" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"cwT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/medical/virology) -"cwU" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/mineral/titanium/blue, -/area/hallway/primary/central) -"cwV" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"cwW" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/door/airlock/public/glass, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cwX" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/machinery/door/airlock/public/glass, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cwY" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/air_sensor/atmos/toxins_mixing_tank, -/turf/open/floor/engine/vacuum, -/area/science/mixing) -"cwZ" = ( -/obj/structure/table, -/obj/item/storage/box/beanbag, -/obj/item/gun/ballistic/revolver/doublebarrel, -/obj/item/storage/hypospraykit/toxin, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/bar) -"cxa" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 6 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cxb" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cxc" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cxd" = ( -/obj/machinery/computer/monitor, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"cxe" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cxf" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cxg" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cxh" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cxi" = ( -/obj/structure/rack, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/item/extinguisher, -/obj/item/extinguisher, -/obj/item/extinguisher, -/obj/item/extinguisher, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Engineering - Primary Tool Storage"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"cxj" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/reagent_dispensers/foamtank, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"cxk" = ( -/obj/structure/tank_dispenser, -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"cxl" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/closed/wall, -/area/storage/primary) -"cxm" = ( -/obj/structure/closet, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"cxn" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/item/t_scanner{ - pixel_x = -4 - }, -/obj/item/pipe, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "platingdmg2" - }, -/area/quartermaster/warehouse) -"cxo" = ( -/obj/structure/reagent_dispensers/fueltank, -/obj/machinery/light/small, -/obj/machinery/camera{ - c_tag = "Supply - Warehouse Aft"; - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cxp" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/mob/living/simple_animal/bot/floorbot, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cxq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cxr" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cxs" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -23 - }, -/obj/item/storage/toolbox/electrical, -/obj/item/hand_labeler, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"cxt" = ( -/obj/effect/landmark/start/cargo_technician, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"cxu" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/storage) -"cxv" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cxw" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cxx" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining/glass{ - name = "Warehouse"; - req_one_access_txt = "10;31" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/warehouse) -"cxy" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/stairs, -/area/quartermaster/storage) -"cxz" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cxA" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/mining{ - name = "Mining Office"; - req_access_txt = "48" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cxB" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Cargo Office" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cxC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cxD" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cxE" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cxF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cxG" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cxH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cxI" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cxJ" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cxK" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cxL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cxM" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cxN" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cxO" = ( -/obj/structure/table, -/obj/item/storage/firstaid/regular, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cxP" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cxQ" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cxR" = ( -/obj/effect/landmark/start/shaft_miner, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cxS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cxT" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/item/paper/guides/cogstation/letter_supp, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cxU" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cxV" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cxW" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Starboard Quarter Maintenance"; - req_one_access_txt = "12;48" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/quartermaster/office) -"cxX" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cxY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cxZ" = ( -/obj/effect/turf_decal/delivery, -/obj/machinery/button/door{ - id = "MiningConveyorBlastDoor"; - name = "Mining Conveyor Access"; - pixel_x = 8; - pixel_y = -24; - req_one_access_txt = "10;24;48" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cya" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cyb" = ( -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cyc" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/door/airlock/external/glass{ - name = "Mining Dock"; - req_one_access_txt = "10;24;48" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cye" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cyf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cyg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cyh" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Mining Office Maintenance"; - req_one_access_txt = "10;24;48" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/miningoffice) -"cyi" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cyj" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cyk" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cyl" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cym" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cyn" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cyo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Aft Maintenance"; - req_access_txt = "12" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"cyp" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cyq" = ( -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/machinery/power/apc{ - dir = 4; - name = "Restrooms APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"cyr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cys" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cyt" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/power/apc{ - areastring = "/area/science/robotics/lab"; - dir = 8; - name = "Robotics Lab APC"; - pixel_x = -25 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cyu" = ( -/obj/structure/closet/wardrobe/chemistry_white{ - anchored = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cyv" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cyw" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_x = 32 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"cyx" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cyy" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Medbay Lobby" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white/side, -/area/medical/medbay/lobby) -"cyz" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cyA" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"cyB" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/official/medical_green_cross{ - pixel_y = 32 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cyC" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cyD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Departures" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cyE" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"cyF" = ( -/obj/structure/closet/secure_closet/chemical, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"cyG" = ( -/obj/machinery/chem_master, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"cyH" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cyI" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cyJ" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"cyK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"cyL" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cyM" = ( -/obj/structure/closet/secure_closet/personal/patient, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cyN" = ( -/obj/machinery/chem_dispenser/apothecary, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"cyO" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyR" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyS" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyT" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyU" = ( -/obj/machinery/camera{ - c_tag = "Aft Maintenance - Central Starboard"; - dir = 8; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cyV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"cyW" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cyX" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cyY" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"cyZ" = ( -/obj/machinery/computer/arcade, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"cza" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"czb" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/item/paicard, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/hallway/secondary/exit) -"czc" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/cafeteria, -/area/hallway/secondary/exit) -"czd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cze" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"czf" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark/side{ - dir = 4 - }, -/area/gateway) -"czg" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/mob/living/simple_animal/hostile/retaliate/bat, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"czh" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"czi" = ( -/obj/structure/bed, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/obj/effect/landmark/start/chief_medical_officer, -/obj/item/bedsheet/cmo, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"czj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"czl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Aft Maintenance"; - req_access_txt = "12" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/secondary/exit) -"czm" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"czn" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"czo" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"czp" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"czq" = ( -/obj/structure/table/glass, -/obj/item/reagent_containers/food/drinks/coffee, -/obj/item/pen/blue, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"czr" = ( -/obj/structure/table/glass, -/obj/item/storage/toolbox/emergency, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"czs" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"czt" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"czu" = ( -/obj/machinery/suit_storage_unit/cmo, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"czv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"czw" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"czx" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"czy" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"czz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Gateway Chamber"; - req_access_txt = "62" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/engine, -/area/gateway) -"czA" = ( -/obj/machinery/modular_computer/console/preset/research{ - dir = 8 - }, -/obj/item/reagent_containers/food/drinks/coffee, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"czB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"czC" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"czD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"czE" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"czF" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"czG" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"czH" = ( -/obj/machinery/button/door{ - id = "robotics2"; - name = "Shutters Control Button"; - pixel_x = 24; - pixel_y = -24; - req_access_txt = "29" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"czI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"czJ" = ( -/obj/item/beacon, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"czK" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"czL" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"czM" = ( -/obj/machinery/requests_console{ - department = "Chemistry"; - departmentType = 2; - name = "Chemistry RC"; - pixel_x = 30; - receive_ore_updates = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/chemistry) -"czN" = ( -/obj/structure/closet/crate/trashcart, -/obj/structure/sign/departments/custodian{ - pixel_x = 32 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/department/chapel) -"czO" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Waste Disposal"; - req_one_access_txt = "12;50" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"czP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/obj/machinery/light/small{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"czQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/maintenance/department/chapel) -"czR" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/sorting/mail, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/maintenance/department/chapel) -"czS" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock{ - name = "Custodial Closet"; - req_access_txt = "26" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/janitor) -"czT" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/janitor) -"czU" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/janitor) -"czV" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"czW" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/chair/office/light{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"czX" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall/rust, -/area/maintenance/disposal) -"czY" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/janitor) -"czZ" = ( -/obj/effect/landmark/start/janitor, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/janitor) -"cAa" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/structure/chair/sofa/right, -/obj/item/reagent_containers/food/drinks/bottle/vermouth/empty, -/obj/item/reagent_containers/food/snacks/grown/cannabis{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/glass{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"cAb" = ( -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/structure/chair/sofa/left, -/obj/item/storage/box/hug/medical, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/glass{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"cAc" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/effect/spawner/structure/window, -/turf/open/floor/plating, -/area/medical/medbay/central) -"cAd" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cAe" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/janitor) -"cAf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/janitor) -"cAg" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/janitor) -"cAh" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance_hatch{ - name = "Custodial Closet"; - req_access_txt = "12;26" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/janitor) -"cAi" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"cAj" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"cAk" = ( -/obj/effect/turf_decal/stripes/line, -/obj/item/reagent_containers/pill/floorpill, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/glass, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/glass{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"cAl" = ( -/obj/effect/turf_decal/stripes/line, -/obj/item/stack/tile/plasteel{ - pixel_x = 10; - pixel_y = 4 - }, -/obj/item/camera, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/glass{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"cAm" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cAn" = ( -/obj/structure/disposalpipe/junction/flip, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cAo" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cAp" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cAq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"cAr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/maintenance/disposal) -"cAs" = ( -/obj/structure/mopbucket, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/janitor) -"cAt" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/window/southleft{ - name = "Cloning Access"; - req_one_access_txt = "9;45" - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cAu" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cAv" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/stairs, -/area/medical/medbay/central) -"cAw" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/item/soap, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/grenade/chem_grenade/cleaner, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = 4; - pixel_y = -1 - }, -/obj/structure/disposalpipe/segment, -/obj/item/reagent_containers/spray/cleaner{ - pixel_x = -8; - pixel_y = 4 - }, -/obj/machinery/requests_console{ - department = "Custodial Closet"; - name = "Custodial RC"; - pixel_x = -32 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/janitor) -"cAx" = ( -/obj/structure/chair{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/landmark/start/janitor, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/janitor) -"cAy" = ( -/obj/item/cigbutt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cAz" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/structure/grille/broken, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cAA" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/closed/wall, -/area/storage/primary) -"cAB" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cAC" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cAD" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation Room A"; - req_access_txt = "39" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cAE" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/item/caution, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cAF" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/security{ - name = "Detective's Office"; - req_access_txt = "4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"cAG" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/landmark/start/virologist, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cAH" = ( -/obj/structure/table, -/obj/item/storage/box/beakers, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cAI" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cAJ" = ( -/obj/structure/table/wood, -/obj/item/storage/book/bible/booze, -/obj/item/beacon{ - pixel_y = -8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/office) -"cAK" = ( -/obj/machinery/computer/med_data, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cAL" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/security{ - name = "Detective's Office"; - req_access_txt = "4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/security/detectives_office) -"cAM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"cAN" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"cAO" = ( -/obj/effect/landmark/start/detective, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"cAP" = ( -/obj/structure/table/wood, -/obj/item/storage/fancy/cigarettes, -/obj/item/lighter{ - pixel_x = -4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/newscaster/security_unit{ - pixel_y = -30 - }, -/obj/machinery/camera{ - c_tag = "Detective's Office"; - dir = 1 - }, -/obj/item/reagent_containers/food/drinks/bottle/hcider{ - pixel_x = 3; - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"cAQ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"cAR" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/office) -"cAS" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/gateway) -"cAT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/hallway/primary/aft) -"cAU" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"cAV" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cAW" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cAX" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cAY" = ( -/obj/machinery/door/airlock{ - name = "Catering"; - req_one_access_txt = "25;28" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/bar) -"cAZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cBa" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cBb" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/main) -"cBc" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cBd" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"cBe" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cBf" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cBg" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/neutral, -/obj/effect/landmark/start/assistant, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cBh" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cBi" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cBj" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cBk" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/start/station_engineer, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"cBl" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Power Monitoring"; - req_access_txt = "10" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/engine_smes{ - name = "Power Monitoring" - }) -"cBm" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/rnd/production/techfab/department/engineering, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cBn" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cBo" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cBp" = ( -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cBq" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"cBr" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"cBs" = ( -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 1 - }, -/turf/closed/wall/r_wall, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"cBt" = ( -/obj/structure/closet/l3closet/scientist, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"cBu" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/sign/departments/security{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cBv" = ( -/obj/structure/table/glass, -/obj/effect/turf_decal/tile/neutral, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cBw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Central Maintenance"; - req_one_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/hallway/primary/port/fore) -"cBx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cBy" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cBz" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/effect/turf_decal/tile/brown, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plasteel, -/area/quartermaster/qm) -"cBA" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/sign/warning/vacuum/external{ - pixel_y = 32 - }, -/obj/machinery/camera{ - c_tag = "Aft Hall - Fore"; - pixel_x = 22 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cBB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/workshop) -"cBC" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/maintenance/aft/secondary{ - name = "Aft Air Hookup" - }) -"cBD" = ( -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cBE" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cBF" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/central) -"cBG" = ( -/obj/machinery/light, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cBH" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cBI" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/machinery/recharger, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cBJ" = ( -/obj/effect/turf_decal/tile/yellow, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/structure/table/wood, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/machinery/power/apc{ - name = "Engineering Foyer APC"; - pixel_y = -24 - }, -/obj/item/storage/firstaid/regular, -/obj/structure/cable, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cBK" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cBL" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cBM" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"cBN" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"cBO" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"cBP" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"cBQ" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"cBR" = ( -/obj/structure/window/reinforced, -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/machinery/light, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"cBS" = ( -/obj/effect/turf_decal/tile/bar, -/obj/effect/turf_decal/tile/bar{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, -/turf/open/floor/plasteel, -/area/crew_quarters/bar) -"cBT" = ( -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cBU" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/stairs, -/area/crew_quarters/bar) -"cBV" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/carpet/green, -/area/crew_quarters/bar) -"cBW" = ( -/obj/structure/sign/plaques/golden{ - pixel_y = -32 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/carpet/green, -/area/crew_quarters/bar) -"cBX" = ( -/obj/structure/chair/stool/bar, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/carpet/green, -/area/crew_quarters/bar) -"cBY" = ( -/obj/machinery/newscaster{ - pixel_y = -28 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/carpet/green, -/area/crew_quarters/bar) -"cBZ" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cCa" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cCb" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/sign/departments/security{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cCc" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cCd" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/sleeper{ - dir = 8 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/white, -/area/medical{ - name = "Medical Booth" - }) -"cCe" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cCf" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Central Maintenance - Fore"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/central) -"cCg" = ( -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cCh" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cCi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Monkey Pen"; - req_access_txt = "39" - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cCj" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cCk" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cCl" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/turf/open/floor/plating, -/area/medical/virology) -"cCm" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cCn" = ( -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/hallway/primary/port/fore) -"cCo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cCp" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/hallway/primary/port/fore) -"cCq" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark/side{ - dir = 8 - }, -/area/hallway/primary/central) -"cCr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cCs" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/office) -"cCt" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Chapel Confessions"; - dir = 8; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 8; - pixel_x = 23 - }, -/turf/open/floor/plasteel/dark, -/area/chapel/main) -"cCu" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/medical/virology) -"cCv" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cCw" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/medical/virology) -"cCx" = ( -/obj/structure/chair/office/light, -/obj/effect/landmark/start/virologist, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cCy" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/item/caution, -/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cCz" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Isolation Room B"; - req_access_txt = "39" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cCA" = ( -/obj/machinery/computer/security/wooden_tv, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/grimy, -/area/security/detectives_office) -"cCB" = ( -/obj/machinery/light, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/office) -"cCC" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/chapel/main) -"cCD" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cCE" = ( -/obj/machinery/portable_atmospherics/canister/water_vapor, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/junction/flip, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/janitor) -"cCF" = ( -/obj/machinery/conveyor_switch/oneway{ - id = "recycler"; - name = "Recycler Conveyor Control" - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plating, -/area/maintenance/disposal) -"cCG" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cCH" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cCI" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cCJ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/wood, -/area/library) -"cCK" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/public/glass{ - name = "Library Access" - }, -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/library) -"cCL" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cCM" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/junction, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=bridge1"; - location = "router" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cCN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/stairs/left, -/area/hallway/primary/central) -"cCO" = ( -/obj/structure/table, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/obj/item/hand_labeler, -/obj/item/reagent_containers/glass/bottle/formaldehyde, -/obj/item/paper/guides/jobs/medical/morgue, -/obj/item/paper/guides/cogstation/cdn_med{ - pixel_x = -6; - pixel_y = 1 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"cCP" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/effect/landmark/start/depsec/engineering, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/security/brig) -"cCQ" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/light, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cCR" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cCS" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cCT" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel/stairs/medium, -/area/hallway/primary/aft) -"cCU" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cCV" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plating, -/area/maintenance/department/security) -"cCW" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"cCX" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/grimy, -/area/crew_quarters/heads/hos) -"cCY" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cCZ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cDa" = ( -/obj/effect/turf_decal/bot, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cDb" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/item/storage/toolbox/mechanical, -/obj/item/clothing/glasses/science, -/obj/item/pen, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cDc" = ( -/obj/structure/table, -/obj/machinery/light, -/obj/structure/bedsheetbin, -/obj/item/clothing/glasses/hud/health, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cDd" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cDe" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cDf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/medical/virology) -"cDg" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - id = "DeliveryConveyer" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"cDh" = ( -/obj/machinery/computer/card/minor/cmo{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/keycard_auth{ - pixel_x = -24 - }, -/obj/item/paper/guides/cogstation/letter_cmo, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"cDi" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/closet/crate/solarpanel_small, -/obj/machinery/airalarm{ - dir = 1; - locked = 0; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/storage/primary) -"cDj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/hor) -"cDk" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/maintenance{ - name = "Security Maintenance"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/hallway/primary/port/fore) -"cDl" = ( -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cDm" = ( -/obj/structure/plasticflaps, -/obj/structure/disposalpipe/segment, -/obj/machinery/conveyor{ - dir = 1; - id = "DeliveryConveyer" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"cDn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/router/air) -"cDo" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/router/air) -"cDp" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/security/courtroom) -"cDq" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/security/courtroom) -"cDr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/security/courtroom) -"cDs" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/sign/warning/securearea{ - pixel_x = -32 - }, -/obj/item/kirbyplants{ - icon_state = "applebush" - }, -/obj/machinery/airalarm{ - dir = 1; - pixel_y = -22 - }, -/turf/open/floor/plasteel/dark/side, -/area/bridge) -"cDt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Captain's Quarters"; - req_access_txt = "20" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/captain) -"cDu" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall/r_wall, -/area/crew_quarters/heads/captain) -"cDv" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"cDw" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/captain) -"cDx" = ( -/obj/machinery/light_switch{ - pixel_x = -4; - pixel_y = 24 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 6; - pixel_y = 32 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet/blue, -/area/crew_quarters/heads/captain) -"cDy" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/turf/open/floor/plating, -/area/crew_quarters/heads/hor) -"cDz" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/security/checkpoint/supply) -"cDA" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/computer/secure_data{ - dir = 8 - }, -/obj/machinery/newscaster/security_unit{ - pixel_x = 30 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"cDB" = ( -/obj/item/storage/secure/safe{ - pixel_x = -24 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/dresser, -/obj/item/storage/lockbox/medal, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/captain) -"cDC" = ( -/obj/structure/chair/office/dark{ - dir = 4 - }, -/obj/effect/landmark/start/captain, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/captain) -"cDD" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/computer/security{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/security/checkpoint/supply"; - dir = 4; - name = "Cargo Security Checkpoint APC"; - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"cDE" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"cDF" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"cDG" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"cDH" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cDI" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cDJ" = ( -/obj/machinery/computer/crew, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"cDK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "Gateway Chamber"; - req_access_txt = "62" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/engine, -/area/gateway) -"cDL" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Medbay - Apothecary"; - dir = 8; - network = list("ss13","medbay"); - pixel_y = -22 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cDM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/table/glass, -/obj/item/book/manual/wiki/chemistry, -/obj/item/book/manual/wiki/chemistry{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/clothing/glasses/science, -/obj/item/clothing/glasses/science{ - pixel_x = 2; - pixel_y = 4 - }, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"cDN" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/engine, -/area/gateway) -"cDO" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cDP" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cDQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cDR" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cDS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/hor) -"cDT" = ( -/obj/structure/table, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/item/stack/cable_coil/red, -/obj/item/stack/cable_coil/red{ - pixel_x = 3 - }, -/turf/open/floor/plasteel, -/area/gateway) -"cDU" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/hor) -"cDV" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/command{ - name = "Gateway Atrium"; - req_access_txt = "62" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/gateway) -"cDW" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/hor) -"cDX" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cDY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = -29 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/crew_quarters/heads/hor) -"cDZ" = ( -/obj/structure/table, -/obj/machinery/computer/med_data/laptop, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Chief Medical Officer's Desk"; - departmentType = 5; - name = "Chief Medical Officer RC"; - pixel_y = 32 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"cEa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"cEb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command{ - name = "Research Director's Office"; - req_access_txt = "30" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/crew_quarters/heads/hor) -"cEc" = ( -/obj/effect/turf_decal/bot, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/navbeacon{ - codes_txt = "delivery;dir=1"; - dir = 1; - freq = 1400; - location = "Bridge" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEd" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEe" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEg" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEj" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEk" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/research/glass{ - name = "Research Sector"; - req_one_access_txt = "29;47" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEl" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEm" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEn" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/research/glass{ - name = "Research Sector"; - req_one_access_txt = "29;47" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEo" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cEp" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cEq" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cEr" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cEs" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEt" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEv" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research/glass{ - name = "Research Sector"; - req_one_access_txt = "29;47" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cEx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEy" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cEz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cEA" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/disposalpipe/sorting/mail/flip{ - dir = 1; - sortType = 24 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cEC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cED" = ( -/obj/structure/chair/stool, -/obj/effect/landmark/start/scientist, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cEE" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/maintenance/aft"; - dir = 8; - name = "Aft Maintenance APC"; - pixel_x = -26 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cEF" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/junction{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cEG" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cEH" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cEI" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cEJ" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEK" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/lab) -"cEL" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/lab) -"cEM" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEN" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cEO" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/door/airlock/research{ - name = "Robotics Lab"; - req_access_txt = "29" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"cEP" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side, -/area/science/robotics/lab) -"cEQ" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cER" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Locker Room"; - req_access_txt = "5" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cES" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cET" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cEU" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Locker Room"; - req_access_txt = "5" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cEV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cEW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/landmark/start/paramedic, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cEX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cEY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cEZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFb" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFd" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFe" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFf" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFg" = ( -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cFh" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFi" = ( -/obj/effect/landmark/start/paramedic, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFj" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFk" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFl" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"cFm" = ( -/obj/structure/closet/crate/freezer/blood, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"cFn" = ( -/obj/structure/closet/l3closet, -/obj/structure/disposalpipe/segment, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFo" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFp" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"cFq" = ( -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"cFr" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFs" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/item/storage/backpack/duffelbag/med/surgery, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"cFt" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/camera{ - c_tag = "Medbay - Port"; - dir = 4 - }, -/obj/machinery/power/apc{ - areastring = "/area/medical/medbay/central"; - dir = 8; - name = "Medbay APC"; - pixel_x = -24 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFv" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFw" = ( -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/door/window/westright{ - name = "Treatment Center"; - req_access_txt = "5" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"cFx" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"cFy" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"cFz" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/item/clothing/gloves/color/latex, -/obj/item/clothing/suit/apron/surgical, -/obj/item/clothing/mask/surgical, -/obj/item/healthanalyzer, -/obj/item/clothing/neck/stethoscope, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"cFA" = ( -/obj/structure/table, -/obj/item/storage/box/beakers{ - pixel_x = 5 - }, -/obj/item/storage/box/syringes{ - pixel_x = -4 - }, -/obj/item/reagent_containers/dropper, -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cFB" = ( -/obj/machinery/vending/snack/teal, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/cafeteria, -/area/medical/medbay/central) -"cFC" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/medical/medbay/central) -"cFD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/landmark/start/paramedic, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFF" = ( -/obj/effect/landmark/start/paramedic, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/cafeteria, -/area/medical/medbay/central) -"cFG" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/cafeteria, -/area/medical/medbay/central) -"cFH" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Medbay Break Room"; - req_access_txt = "5" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFI" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFJ" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFK" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/carpet/blue, -/area/medical/medbay/central) -"cFL" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/medical/medbay/central) -"cFM" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/cafeteria, -/area/medical/medbay/central) -"cFN" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/cafeteria, -/area/medical/medbay/central) -"cFO" = ( -/obj/structure/closet/crate/medical, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFP" = ( -/obj/structure/table/wood, -/obj/item/modular_computer/laptop/preset/civilian, -/obj/item/reagent_containers/pill/patch/styptic, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/carpet/blue, -/area/medical/medbay/central) -"cFQ" = ( -/obj/structure/chair/office/light{ - dir = 8 - }, -/obj/effect/landmark/start/medical_doctor, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/carpet/blue, -/area/medical/medbay/central) -"cFR" = ( -/obj/structure/closet/crate/medical, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cFT" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/virology/glass{ - name = "Virology Exterior Airlock"; - req_access_txt = "39" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cFU" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cFV" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/storage/belt/utility, -/obj/item/multitool{ - pixel_x = 3 - }, -/obj/item/multitool{ - pixel_x = 3 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = -1 - }, -/obj/item/storage/toolbox/mechanical{ - pixel_x = 2; - pixel_y = -1 - }, -/obj/item/storage/toolbox/electrical{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/storage/toolbox/electrical{ - pixel_x = -1; - pixel_y = 4 - }, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/item/clothing/head/welding{ - pixel_x = -3; - pixel_y = 5 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cFW" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/door/poddoor/shutters/preopen{ - id = "robotics2"; - name = "robotics lab shutters" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plating, -/area/science/robotics/lab) -"cFX" = ( -/obj/machinery/chem_heater, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = 26 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"cFY" = ( -/turf/open/floor/plasteel, -/area/router/air) -"cFZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#cee5d2" - }, -/obj/machinery/button/massdriver{ - id = "airbridge_out"; - pixel_x = -8; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/router/air) -"cGa" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "airbridge_off" - }, -/turf/open/floor/plating, -/area/router/air) -"cGb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "MedSci Router"; - req_access_txt = "5" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cGc" = ( -/obj/effect/turf_decal/tile/blue, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cGd" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera{ - c_tag = "Medbay Locker Room"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cGe" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light, -/obj/item/reagent_containers/blood/OMinus{ - pixel_x = 4; - pixel_y = 3 - }, -/obj/item/reagent_containers/food/drinks/coffee{ - pixel_x = 6 - }, -/obj/item/storage/box/masks{ - pixel_x = -4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medical)"; - pixel_y = -30 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cGf" = ( -/obj/structure/window/reinforced/spawner, -/obj/machinery/conveyor{ - dir = 4; - id = "airbridge_off" - }, -/turf/open/floor/plating, -/area/router/air) -"cGg" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner, -/obj/machinery/conveyor{ - dir = 4; - id = "airbridge_off" - }, -/turf/open/floor/plating, -/area/router/air) -"cGh" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/window/reinforced/spawner, -/obj/machinery/mass_driver{ - dir = 4; - id = "airbridge_in"; - name = "Router Driver" - }, -/turf/open/floor/plating, -/area/router/air) -"cGi" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cGj" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cGk" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cGl" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cGm" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cGn" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = -29 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cGo" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/stairs, -/area/science/research{ - name = "Research Sector" - }) -"cGp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cGq" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cGr" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/airlock/research/glass{ - name = "Xenobiology Lab Access"; - req_access_txt = "55" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cGs" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cGt" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cGu" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/science/research{ - name = "Research Sector" - }) -"cGv" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cGw" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Xenobiology Lab"; - req_access_txt = "8;55" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cGx" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/research{ - name = "Experimentation Lab"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cGy" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cGz" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cGA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cGB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cGC" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cGD" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cGE" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cGF" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/engine, -/area/science/storage) -"cGG" = ( -/obj/machinery/power/apc{ - areastring = "/area/science/storage"; - dir = 4; - name = "Toxins Storage APC"; - pixel_x = 24 - }, -/obj/structure/cable, -/turf/open/floor/engine, -/area/science/storage) -"cGH" = ( -/obj/machinery/camera{ - c_tag = "Toxins Lab - Storage"; - dir = 1 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/portable_atmospherics/pump, -/turf/open/floor/engine, -/area/science/storage) -"cGI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/chair/office/light, -/obj/effect/landmark/start/chemist, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"cGJ" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/turf/open/floor/engine, -/area/science/storage) -"cGK" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine, -/area/science/storage) -"cGL" = ( -/obj/structure/table, -/obj/item/extinguisher, -/obj/item/storage/toolbox/mechanical, -/obj/item/wrench, -/obj/item/clothing/mask/gas, -/obj/item/extinguisher{ - pixel_x = -7; - pixel_y = 3 - }, -/turf/open/floor/engine, -/area/science/storage) -"cGM" = ( -/obj/structure/tank_dispenser, -/turf/open/floor/engine, -/area/science/storage) -"cGN" = ( -/obj/structure/closet/l3closet, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cGO" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cGP" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/science/storage) -"cGQ" = ( -/obj/machinery/door/airlock/research{ - name = "Plasma Canister Storage"; - req_access_txt = "7;8" - }, -/turf/open/floor/engine, -/area/science/storage) -"cGR" = ( -/obj/effect/landmark/start/scientist, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cGS" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cGT" = ( -/obj/item/radio/intercom{ - dir = 8; - name = "Station Intercom (Common)"; - pixel_x = 28 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cGU" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_access_txt = "5;6" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"cGV" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/effect/turf_decal/delivery, -/turf/open/floor/engine, -/area/science/storage) -"cGW" = ( -/obj/effect/landmark/blobstart, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/storage) -"cGX" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cGY" = ( -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cGZ" = ( -/turf/open/floor/plating/airless, -/area/science/storage) -"cHa" = ( -/obj/machinery/portable_atmospherics/canister/toxins, -/obj/structure/sign/warning/fire{ - pixel_x = -32 - }, -/obj/machinery/camera{ - c_tag = "Toxins Lab - Plasma Storage"; - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/engine, -/area/science/storage) -"cHb" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cHc" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cHd" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cHe" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cHf" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stock_parts/cell/high/plus, -/obj/item/stock_parts/cell/high/plus, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/item/stack/cable_coil/red, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cHg" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cHh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cHi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/science/circuit) -"cHj" = ( -/obj/structure/table, -/obj/item/storage/hypospraykit/toxin{ - pixel_x = -5 - }, -/obj/item/storage/hypospraykit/fire{ - pixel_x = 5 - }, -/obj/item/clothing/glasses/sunglasses, -/obj/item/clothing/glasses/sunglasses, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cHk" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cHl" = ( -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cHm" = ( -/obj/machinery/atmospherics/components/binary/pump, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cHn" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/explab) -"cHo" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cHp" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cHq" = ( -/obj/structure/closet/firecloset, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cHr" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cHs" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cHt" = ( -/obj/structure/disposalpipe/junction, -/obj/machinery/light{ - dir = 4; - light_color = "#e8eaff" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cHu" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cHv" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Research - Experimentation Hall"; - dir = 8; - network = list("ss13","medbay") - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cHw" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/sign/warning/biohazard{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cHx" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/explab) -"cHy" = ( -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/explab) -"cHz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/explab) -"cHA" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/airlock/research{ - name = "Experimentation Lab"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cHB" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/effect/landmark/blobstart, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cHC" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/science/explab"; - dir = 4; - name = "Experimentation Lab APC"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cHD" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/obj/item/beacon, -/turf/open/floor/engine, -/area/science/explab) -"cHE" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/explab) -"cHF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/engine, -/area/science/explab) -"cHG" = ( -/obj/machinery/door/firedoor, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/research{ - name = "Experimentation Lab"; - req_access_txt = "47" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cHH" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cHI" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/explab) -"cHJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/science/explab) -"cHK" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cHL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cHM" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cHN" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cHO" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cHP" = ( -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/effect/landmark/start/geneticist, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cHQ" = ( -/obj/machinery/light, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cHR" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical{ - name = "Morgue"; - req_one_access_txt = "9;45" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"cHS" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Genetics Lab"; - req_access_txt = "9" - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cHT" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall/rust, -/area/medical/morgue) -"cHU" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cHV" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/holopad, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"cHW" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/structure/table/reinforced, -/obj/machinery/door/window/eastright{ - base_state = "left"; - dir = 2; - icon_state = "left"; - name = "Chemistry Desk"; - req_access_txt = "33" - }, -/turf/open/floor/plasteel, -/area/medical/chemistry) -"cHX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cHY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/recharge_station, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cHZ" = ( -/obj/structure/plasticflaps, -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor{ - name = "Airbridge Router" - }, -/turf/open/floor/plating, -/area/router/air) -"cIa" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cIb" = ( -/obj/structure/table, -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/item/storage/firstaid/radbgone, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medical)"; - pixel_x = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cIc" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cId" = ( -/obj/effect/landmark/xeno_spawn, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cIe" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/maintenance/aft) -"cIf" = ( -/obj/structure/closet/crate/trashcart, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/maintenance, -/obj/effect/spawner/lootdrop/maintenance, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cIg" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cIh" = ( -/obj/structure/plasticflaps, -/obj/machinery/conveyor{ - dir = 4; - id = "workshop_off" - }, -/turf/open/floor/plating, -/area/engine/workshop) -"cIi" = ( -/obj/structure/window/reinforced/spawner, -/obj/machinery/conveyor{ - dir = 4; - id = "workshop_off" - }, -/turf/open/floor/plating, -/area/engine/workshop) -"cIj" = ( -/obj/structure/chair, -/obj/effect/landmark/start/geneticist, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cIk" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cIl" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple, -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cIm" = ( -/obj/structure/chair, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/start/geneticist, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cIn" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/genetics) -"cIo" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/medical/glass{ - name = "Genetics Lab Maintenance"; - req_access_txt = "9" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plating, -/area/medical/genetics) -"cIp" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cIq" = ( -/obj/structure/window/reinforced/spawner, -/obj/structure/window/reinforced/spawner/east, -/obj/machinery/conveyor{ - dir = 1; - id = "workshop_off" - }, -/turf/open/floor/plating, -/area/engine/workshop) -"cIr" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = -28; - pixel_y = -4 - }, -/obj/machinery/light_switch{ - pixel_x = -24; - pixel_y = 10 - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cIs" = ( -/obj/machinery/door/airlock/atmos{ - name = "Atmospherics"; - req_access_txt = "24" - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cIt" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cIu" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cIv" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIw" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIx" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Aft Hall"; - network = list("ss13","rd") - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIz" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIA" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIB" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/item/kirbyplants/photosynthetic, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIC" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cID" = ( -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIE" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIF" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIG" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1; - light_color = "#cee5d2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIH" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/firealarm{ - pixel_y = 26 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cII" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIJ" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIK" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIL" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIM" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIN" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/public/glass{ - name = "Engineering Sector" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/delivery, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIP" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIQ" = ( -/obj/structure/disposalpipe/junction/yjunction{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIR" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIS" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIT" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIU" = ( -/obj/structure/disposalpipe/junction/flip{ - dir = 8 - }, -/obj/machinery/navbeacon{ - codes_txt = "patrol;next_patrol=evac"; - location = "eng1" - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIV" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIW" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIX" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/obj/machinery/airalarm{ - dir = 1; - locked = 0; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIY" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cIZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cJa" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cJb" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cJc" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cJd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cJe" = ( -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/airalarm{ - dir = 1; - locked = 0; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cJf" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Unisex Restrooms" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"cJh" = ( -/obj/structure/table, -/obj/structure/bedsheetbin/towel, -/obj/machinery/camera{ - c_tag = "Aft Restrooms"; - dir = 8; - pixel_y = -22 - }, -/obj/machinery/airalarm{ - dir = 1; - locked = 0; - pixel_y = -22 - }, -/turf/open/floor/plasteel/freezer, -/area/crew_quarters/toilet/restrooms) -"cJi" = ( -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/brown{ - dir = 8 - }, -/obj/machinery/airalarm{ - dir = 1; - locked = 0; - pixel_y = -22 - }, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cJj" = ( -/obj/machinery/computer/security/mining, -/obj/effect/turf_decal/tile/brown{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cJk" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cJl" = ( -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/camera{ - c_tag = "Engine Room - Starboard Quarter"; - dir = 8; - pixel_y = -22 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"cJm" = ( -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cJn" = ( -/obj/machinery/door/airlock/external{ - name = "Atmospherics External Airlock"; - req_access_txt = "24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cJo" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/turf/open/floor/plasteel/white/corner, -/area/engine/atmos) -"cJp" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering{ - name = "Engine Room" - }) -"cJr" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 5 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cJs" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cJt" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cJu" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cJv" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Router"; - req_access_txt = "11" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"cJw" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"cJx" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{ - dir = 1 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cJy" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/rnd/production/circuit_imprinter, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cJz" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - dir = 8; - id = "DeliveryConveyor" - }, -/turf/open/floor/plating, -/area/quartermaster/warehouse) -"cJA" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"cJB" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/visible, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/engineering{ - name = "Engine Room" - }) -"cJC" = ( -/obj/machinery/door/airlock/engineering{ - name = "Gravity Generator"; - req_access_txt = "11" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/firedoor/heavy, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cJD" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/power/terminal, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cJE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cJF" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/closed/wall/r_wall, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"cJG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/table, -/obj/machinery/light/small, -/obj/machinery/power/apc/highcap/five_k{ - areastring = "/area/engine/gravity_generator"; - dir = 4; - name = "Gravity Generator APC"; - pixel_x = 26 - }, -/obj/structure/cable{ - icon_state = "0-2"; - pixel_y = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/engine/gravity_generator) -"cJH" = ( -/obj/machinery/atmospherics/components/unary/portables_connector/visible{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/effect/turf_decal/bot, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cJI" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall/r_wall, -/area/engine/gravity_generator) -"cJJ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/engine, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"cJK" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/components/binary/valve/digital{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"cJL" = ( -/obj/machinery/atmospherics/pipe/simple/supply/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"cJM" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/landmark/start/atmospheric_technician, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on, -/turf/open/floor/plasteel, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"cJN" = ( -/obj/machinery/light/small, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"cJO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/engine/supermatter{ - name = "Thermo-Electric Generator" - }) -"cJP" = ( -/obj/machinery/portable_atmospherics/scrubber, -/obj/machinery/light/small, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"cJQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"cJR" = ( -/obj/machinery/door/airlock/engineering{ - name = "Canister Storage"; - req_one_access_txt = "10;24" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/door/firedoor/heavy, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/storage{ - name = "Canister Storage" - }) -"cJS" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/storage{ - name = "Canister Storage" - }) -"cJT" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/corner, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/storage{ - name = "Canister Storage" - }) -"cJU" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/storage{ - name = "Canister Storage" - }) -"cJV" = ( -/obj/structure/plasticflaps, -/obj/machinery/door/poddoor{ - id = "DeliveryDoor"; - name = "Delivery Door" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/conveyor{ - dir = 8; - id = "DeliveryConveyor" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"cJW" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"cJX" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"cJY" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"cJZ" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/engine/storage{ - name = "Canister Storage" - }) -"cKa" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/engine/storage{ - name = "Canister Storage" - }) -"cKb" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/engine/storage{ - name = "Canister Storage" - }) -"cKc" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Canister Storage"; - req_access_txt = "10" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/engine/storage{ - name = "Canister Storage" - }) -"cKd" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "DeliveryConveyor" - }, -/turf/open/floor/plating, -/area/quartermaster/sorting) -"cKe" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/airlock/public/glass{ - name = "Airbridge Router" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/router/air) -"cKf" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/router/air) -"cKg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/machinery/vending/engivend, -/turf/open/floor/plasteel, -/area/storage/primary) -"cKh" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"cKi" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/door/airlock/medical{ - name = "Apothecary"; - req_access_txt = "5" - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/medbay/central) -"cKj" = ( -/obj/structure/closet/secure_closet/CMO, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/item/paper/guides/cogstation/letter_cmo, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"cKk" = ( -/obj/structure/chair/office/light{ - dir = 1; - pixel_y = 3 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/landmark/start/medical_doctor, -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"cKl" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/lobby) -"cKm" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/stairs, -/area/medical/medbay/central) -"cKn" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cKo" = ( -/obj/structure/disposalpipe/sorting/mail{ - dir = 8; - sortType = 9 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cKp" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cKq" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel/showroomfloor, -/area/medical/morgue) -"cKr" = ( -/obj/effect/turf_decal/tile/neutral, -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cKs" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cKt" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cKu" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cKv" = ( -/obj/effect/turf_decal/tile/neutral{ - dir = 4 - }, -/obj/effect/turf_decal/tile/neutral, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cKw" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/science/xenobiology) -"cKx" = ( -/obj/structure/grille, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plating/airless, -/area/science/xenobiology) -"cKy" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/science/xenobiology) -"cKz" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cKA" = ( -/obj/machinery/atmospherics/components/binary/valve, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cKB" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cKC" = ( -/obj/structure/chair/office/light{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/landmark/start/chief_medical_officer, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"cKD" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cKE" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/port/fore) -"cKF" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/reagent_dispensers/fueltank, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cKG" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/closet/wardrobe/yellow, -/turf/open/floor/plasteel, -/area/hallway/primary/central) -"cKH" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/machinery/airalarm{ - pixel_y = 24 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cKI" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cKJ" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cKK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"cKL" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cKM" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cKN" = ( -/obj/structure/table/reinforced, -/obj/item/assembly/signaler{ - pixel_x = -4 - }, -/obj/item/assembly/signaler, -/obj/item/assembly/signaler{ - pixel_y = 8 - }, -/obj/item/assembly/signaler{ - pixel_x = 8; - pixel_y = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel/white, -/area/science/mixing) -"cKO" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/structure/sign/departments/restroom{ - pixel_y = -32 - }, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cKP" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/structure/sign/departments/custodian{ - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cKQ" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output, -/turf/open/floor/engine/vacuum, -/area/engine/atmos) -"cKR" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"cKS" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output, -/turf/open/floor/engine/n2o, -/area/engine/atmos) -"cKT" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"cKU" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output, -/turf/open/floor/engine/plasma, -/area/engine/atmos) -"cKV" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"cKW" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output, -/turf/open/floor/engine/co2, -/area/engine/atmos) -"cKX" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"cKY" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"cKZ" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/space/basic, -/area/space/nearstation) -"cLa" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/space/basic, -/area/space/nearstation) -"cLb" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plating, -/area/engine/atmos) -"cLc" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plating, -/area/engine/atmos) -"cLd" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cLe" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/engine/atmos) -"cLf" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/engine/atmos) -"cLg" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/violet/visible, -/obj/structure/extinguisher_cabinet{ - pixel_y = 29 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cLh" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cLi" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cLj" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ - dir = 8 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engine/atmos) -"cLk" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "CO2 Outlet Pump" - }, -/turf/open/floor/plasteel/dark/side{ - dir = 1 - }, -/area/engine/atmos) -"cLl" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cLm" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"cLn" = ( -/obj/effect/turf_decal/bot, -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/under/misc/overalls, -/turf/open/floor/plasteel, -/area/storage/primary) -"cLo" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cLp" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cLq" = ( -/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cLr" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/storage/primary) -"cLs" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cLt" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"cLu" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ - dir = 1 - }, -/turf/open/floor/engine/n2, -/area/engine/atmos) -"cLv" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"cLw" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ - dir = 1 - }, -/turf/open/floor/engine/o2, -/area/engine/atmos) -"cLx" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cLy" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ - dir = 1 - }, -/turf/open/floor/engine/air, -/area/engine/atmos) -"cLz" = ( -/obj/effect/turf_decal/bot, -/obj/structure/closet/secure_closet/engineering_personal, -/obj/item/clothing/under/misc/overalls, -/turf/open/floor/plasteel, -/area/storage/primary) -"cLA" = ( -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/camera{ - c_tag = "Virology - Starboard"; - dir = 8; - pixel_y = -22 - }, -/obj/machinery/power/apc{ - areastring = "/area/medical/virology"; - dir = 4; - name = "Virology Lab APC"; - pixel_x = 24 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLB" = ( -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/router/air) -"cLC" = ( -/obj/structure/bed, -/obj/item/bedsheet/medical, -/obj/machinery/camera{ - c_tag = "Virology - Port"; - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cLD" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cLE" = ( -/obj/structure/closet/crate/medical, -/turf/open/floor/plasteel, -/area/router/air) -"cLF" = ( -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLG" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLH" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLI" = ( -/obj/structure/chair/office/light, -/obj/effect/landmark/start/virologist, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLJ" = ( -/obj/structure/table, -/obj/item/stack/packageWrap, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/item/wirecutters, -/turf/open/floor/plasteel, -/area/router/air) -"cLK" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/machinery/conveyor{ - id = "airbridge_off" - }, -/turf/open/floor/plating, -/area/router/air) -"cLL" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cLM" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cLN" = ( -/obj/structure/sink{ - dir = 4; - pixel_x = 11 - }, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cLO" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/machinery/conveyor{ - dir = 8; - id = "airbridge_off" - }, -/turf/open/floor/plating, -/area/router/air) -"cLP" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/green{ - dir = 8 - }, -/obj/effect/turf_decal/tile/green, -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/item/storage/box/syringes, -/obj/item/hand_labeler, -/obj/item/radio/headset/headset_med, -/obj/structure/sign/warning/biohazard{ - pixel_x = 32 - }, -/obj/item/radio/intercom{ - broadcasting = 1; - frequency = 1485; - listening = 0; - name = "Station Intercom (Medical)"; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cLQ" = ( -/obj/structure/plasticflaps, -/obj/structure/fans/tiny, -/obj/machinery/conveyor{ - dir = 8; - id = "airbridge_off" - }, -/obj/machinery/door/poddoor{ - name = "Airbridge Router" - }, -/turf/open/floor/plating, -/area/router/air) -"cLR" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/mass_driver{ - dir = 8; - id = "workshop_in"; - name = "Router Driver" - }, -/turf/open/floor/plating, -/area/engine/workshop) -"cLS" = ( -/obj/machinery/light, -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel/freezer, -/area/medical/virology) -"cLT" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall/r_wall, -/area/medical/virology) -"cLU" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 1; - frequency = 1441; - id = "inc_in" - }, -/turf/open/floor/plating/airless, -/area/medical/virology) -"cLV" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cLW" = ( -/obj/machinery/light{ - dir = 4; - light_color = "#c1caff" - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cLX" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"cLY" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/incinerator_output{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cLZ" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"cMa" = ( -/obj/machinery/light/small{ - dir = 1; - light_color = "#ffc1c1" - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cMb" = ( -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"cMc" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMd" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 4; - name = "N2 to Airmix" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMe" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMf" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"cMg" = ( -/obj/machinery/atmospherics/components/trinary/mixer/airmix{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMh" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMi" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMj" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ - dir = 1 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cMk" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMl" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMm" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMn" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "N2 to Pure" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMo" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMp" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"cMq" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMr" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMs" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMt" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ - dir = 4 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cMu" = ( -/obj/machinery/light/small, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 8 - }, -/turf/open/floor/engine/vacuum, -/area/maintenance/disposal/incinerator) -"cMv" = ( -/obj/machinery/button/door/incinerator_vent_atmos_main{ - pixel_x = -24; - pixel_y = 8 - }, -/obj/machinery/button/door/incinerator_vent_atmos_aux{ - pixel_x = -40; - pixel_y = 8 - }, -/obj/machinery/atmospherics/pipe/simple/general/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMw" = ( -/obj/machinery/atmospherics/components/binary/valve/digital{ - name = "Waste Release" - }, -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMx" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 5 - }, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -30 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMy" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "Nitrogen Outlet" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMz" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/light, -/obj/machinery/camera{ - c_tag = "Atmospherics - Starboard Aft"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMA" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMB" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1; - name = "O2 to Airmix" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMC" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "O2 to Pure" - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cMD" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/turf/open/floor/plasteel/white/corner, -/area/engine/atmos) -"cME" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 9 - }, -/turf/open/floor/plasteel/white/corner, -/area/engine/atmos) -"cMF" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Air to Pure" - }, -/turf/open/floor/plasteel/white/corner, -/area/engine/atmos) -"cMG" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/maintenance/disposal/incinerator) -"cMH" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"cMI" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 9 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"cMJ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"cMK" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/tcommsat/computer) -"cML" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"cMM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"cMN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"cMO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"cMP" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/engine/atmos) -"cMQ" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cMR" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cMS" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/open/space/basic, -/area/space/nearstation) -"cMT" = ( -/obj/structure/grille, -/obj/machinery/atmospherics/pipe/simple/cyan/visible, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"cMU" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/effect/turf_decal/stripes/line, -/obj/machinery/conveyor{ - dir = 8; - id = "workshop_off" - }, -/turf/open/floor/plating, -/area/engine/workshop) -"cMV" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "workshop_off" - }, -/turf/open/floor/plating, -/area/engine/workshop) -"cMW" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/vending/tool, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cMX" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/table, -/obj/item/storage/box/lights/mixed, -/obj/item/multitool{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/multitool{ - pixel_x = 5; - pixel_y = 3 - }, -/obj/item/multitool, -/obj/item/multitool, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cMY" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/table, -/obj/machinery/camera{ - c_tag = "Engineering - Workshop"; - dir = 1 - }, -/obj/item/clothing/gloves/color/yellow, -/obj/item/t_scanner, -/obj/item/t_scanner, -/obj/item/t_scanner, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cMZ" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high/plus, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cNa" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/chair, -/obj/effect/landmark/start/station_engineer, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cNb" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/chair, -/obj/effect/landmark/start/station_engineer, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cNc" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/table, -/obj/item/storage/toolbox/electrical, -/obj/item/stack/cable_coil/red, -/obj/item/stack/cable_coil/red, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cNd" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/closet/crate/engineering, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cNe" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/disposalpipe/segment, -/obj/item/radio/intercom{ - name = "Station Intercom (Common)"; - pixel_y = -29 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cNf" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cNg" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 8 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow, -/obj/machinery/vending/assist, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cNh" = ( -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/delivery, -/obj/machinery/door/airlock/public/glass{ - name = "Airbridge Router" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/router/air) -"cNi" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/router/air) -"cNj" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/router/air) -"cNk" = ( -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/router/air) -"cNl" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/machinery/light, -/turf/open/floor/plasteel, -/area/router/air) -"cNm" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "airbridge_off" - }, -/turf/open/floor/plating, -/area/router/air) -"cNn" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "airbridge_off" - }, -/turf/open/floor/plating, -/area/router/air) -"cNo" = ( -/turf/closed/wall/rust, -/area/engine/workshop) -"cNp" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/southleft{ - name = "Workshop Desk"; - req_access_txt = "11" - }, -/obj/item/paper_bin, -/obj/item/pen, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cNq" = ( -/obj/structure/table/reinforced, -/obj/machinery/door/firedoor, -/obj/machinery/door/window/southright{ - name = "Workshop Desk"; - req_access_txt = "11" - }, -/obj/item/folder/yellow, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cNr" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/engine/workshop) -"cNs" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/turf/closed/wall, -/area/engine/workshop) -"cNt" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/turf/closed/wall, -/area/engine/workshop) -"cNu" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 4 - }, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Workshop"; - req_access_txt = "11" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/turf_decal/delivery, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/engine/workshop) -"cNv" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/turf/closed/wall, -/area/engine/workshop) -"cNw" = ( -/turf/closed/wall/r_wall, -/area/router/air) -"cNx" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/primary/aft) -"cNy" = ( -/turf/closed/wall/r_wall, -/area/quartermaster/miningdock/airless) -"cNz" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/quartermaster/miningdock/airless) -"cNA" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/quartermaster/office) -"cNB" = ( -/turf/open/floor/plating, -/area/quartermaster/miningdock/airless) -"cND" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/quartermaster/miningoffice) -"cNE" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - brightness = 3; - dir = 8 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock/airless) -"cNF" = ( -/obj/item/shovel, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock/airless) -"cNG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock/airless) -"cNH" = ( -/obj/effect/turf_decal/stripes/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/sign/warning/electricshock{ - pixel_y = 32 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock/airless) -"cNI" = ( -/turf/open/floor/plating/airless, -/area/router/aux) -"cNJ" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/obj/machinery/camera{ - c_tag = "Medbay - Starboard"; - network = list("ss13","rd") - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cNK" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 4 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/engine/teg_hot) -"cNL" = ( -/obj/machinery/atmospherics/components/unary/outlet_injector/on{ - dir = 8 - }, -/turf/open/floor/plating{ - icon_state = "panelscorched" - }, -/area/engine/teg_cold) -"cNM" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/rack, -/obj/item/circuitboard/machine, -/obj/item/circuitboard/machine, -/obj/item/circuitboard/machine, -/obj/item/circuitboard/machine, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/wallframe/camera, -/obj/item/stack/cable_coil, -/obj/item/stack/cable_coil, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock/airless) -"cNN" = ( -/turf/open/floor/plasteel, -/area/quartermaster/miningdock/airless) -"cNO" = ( -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock/airless) -"cNP" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/frame/computer{ - dir = 8 - }, -/turf/open/floor/plating, -/area/quartermaster/miningdock/airless) -"cNQ" = ( -/obj/structure/sign/warning{ - name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES" - }, -/turf/closed/wall/r_wall, -/area/router/aux) -"cNR" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock/airless) -"cNS" = ( -/obj/machinery/power/apc{ - name = "Mining Dock APC"; - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock/airless) -"cNT" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/light_switch{ - pixel_y = -24 - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock/airless) -"cNU" = ( -/obj/structure/table, -/obj/effect/decal/cleanable/dirt, -/obj/item/stack/sheet/plasteel/fifty, -/turf/open/floor/plating, -/area/quartermaster/miningdock/airless) -"cNV" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cNW" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/camera{ - c_tag = "Supply - Mining Exterior"; - dir = 4 - }, -/turf/open/space/basic, -/area/quartermaster/miningdock/airless/no_grav) -"cNX" = ( -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/quartermaster/miningdock/airless/no_grav) -"cNY" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/airlock/external/glass{ - name = "Refinery"; - req_access_txt = "48" - }, -/obj/effect/decal/cleanable/dirt, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock/airless) -"cNZ" = ( -/obj/machinery/door/airlock/external/glass{ - name = "Refinery"; - req_access_txt = "48" - }, -/turf/open/floor/plasteel, -/area/quartermaster/miningdock/airless) -"cOa" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 9 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOb" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space/basic, -/area/quartermaster/miningdock/airless/no_grav) -"cOc" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/camera{ - c_tag = "Supply - Refinery Exterior"; - pixel_x = 22 - }, -/turf/open/space/basic, -/area/quartermaster/miningdock/airless/no_grav) -"cOd" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/carpet{ - icon_state = "carpetsymbol" - }, -/area/medical/medbay/lobby) -"cOe" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cOf" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/space/basic, -/area/quartermaster/miningdock/airless/no_grav) -"cOg" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/space/basic, -/area/quartermaster/miningdock/airless/no_grav) -"cOh" = ( -/obj/structure/lattice, -/turf/open/space/basic, -/area/quartermaster/miningdock/airless/no_grav) -"cOi" = ( -/obj/machinery/conveyor_switch{ - id = "MiningConveyer" - }, -/turf/open/floor/plating/airless, -/area/quartermaster/miningdock/airless/no_grav) -"cOj" = ( -/turf/open/floor/plating/airless, -/area/quartermaster/miningdock/airless/no_grav) -"cOk" = ( -/obj/machinery/light/small{ - dir = 4 - }, -/obj/structure/closet/toolcloset, -/turf/open/floor/plating/airless, -/area/quartermaster/miningdock/airless/no_grav) -"cOl" = ( -/turf/closed/wall/r_wall, -/area/quartermaster/miningdock/airless/no_grav) -"cOm" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "MiningConveyer" - }, -/obj/structure/lattice/catwalk, -/turf/open/space/basic, -/area/quartermaster/miningdock/airless/no_grav) -"cOn" = ( -/obj/effect/turf_decal/loading_area{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/quartermaster/miningdock/airless/no_grav) -"cOo" = ( -/obj/structure/table, -/turf/open/floor/plating/airless, -/area/quartermaster/miningdock/airless/no_grav) -"cOp" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating/airless, -/area/quartermaster/miningdock/airless/no_grav) -"cOq" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cOr" = ( -/obj/machinery/light/small, -/turf/open/floor/plating/airless, -/area/quartermaster/miningdock/airless/no_grav) -"cOs" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/glass/fifty, -/turf/open/floor/plating/airless, -/area/quartermaster/miningdock/airless/no_grav) -"cOt" = ( -/obj/structure/closet/crate, -/obj/item/stack/rods/fifty, -/turf/open/floor/plating/airless, -/area/quartermaster/miningdock/airless/no_grav) -"cOu" = ( -/obj/structure/closet/crate, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/metal/fifty, -/turf/open/floor/plating/airless, -/area/quartermaster/miningdock/airless/no_grav) -"cOv" = ( -/obj/item/storage/toolbox/emergency, -/obj/structure/table, -/turf/open/floor/plating/airless, -/area/quartermaster/miningdock/airless/no_grav) -"cOw" = ( -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hallway/secondary/exit) -"cOx" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - areastring = "/area/router/medsci"; - dir = 1; - name = "MedSci Router APC"; - pixel_y = 24 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/router/medsci) -"cOy" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/router/medsci) -"cOz" = ( -/obj/effect/turf_decal/delivery, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/turf/open/floor/plasteel/white, -/area/router/medsci) -"cOA" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 9 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/router/medsci) -"cOB" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/router/medsci) -"cOC" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 5 - }, -/obj/machinery/light_switch{ - pixel_x = 24 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/router/medsci) -"cOD" = ( -/obj/structure/disposalpipe/segment{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 1 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plating, -/area/maintenance/aft) -"cOE" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 10 - }, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/router/medsci) -"cOF" = ( -/obj/effect/turf_decal/stripes/line, -/turf/open/floor/plasteel, -/area/router/medsci) -"cOG" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel, -/area/router/medsci) -"cOH" = ( -/obj/machinery/computer/cargo/request{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/router/medsci) -"cOI" = ( -/turf/closed/wall/r_wall, -/area/router/medsci) -"cOJ" = ( -/obj/machinery/conveyor{ - id = "medsci_off" - }, -/turf/open/floor/plating, -/area/router/medsci) -"cOK" = ( -/obj/structure/table/reinforced, -/obj/item/stack/packageWrap, -/obj/item/hand_labeler, -/obj/item/destTagger, -/obj/machinery/light, -/obj/machinery/button/massdriver{ - id = "medsci_out"; - pixel_x = -8; - pixel_y = 8 - }, -/obj/machinery/requests_console{ - department = "MedSci Router"; - name = "MedSci Router RC"; - pixel_y = -32 - }, -/turf/open/floor/plating, -/area/router/medsci) -"cOL" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "medsci_off" - }, -/turf/open/floor/plating, -/area/router/medsci) -"cOM" = ( -/turf/closed/wall/r_wall, -/area/janitor/aux) -"cON" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock{ - name = "Auxiliary Custodial Closet"; - req_access_txt = "12" - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plating, -/area/janitor/aux) -"cOO" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall/r_wall, -/area/janitor/aux) -"cOP" = ( -/obj/machinery/mass_driver{ - id = "medsci_out"; - name = "Router Driver" - }, -/turf/open/floor/plating, -/area/router/medsci) -"cOQ" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/janitor/aux"; - dir = 1; - name = "Auxiliary Custodial Closet APC"; - pixel_y = 24 - }, -/turf/open/floor/plasteel, -/area/janitor/aux) -"cOR" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/turf/open/floor/plasteel, -/area/janitor/aux) -"cOS" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/light_switch{ - pixel_y = 24 - }, -/obj/machinery/light/small{ - dir = 4 - }, -/obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/item/storage/box/lights/mixed, -/obj/item/light/tube, -/obj/item/radio/off, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/janitor/aux) -"cOT" = ( -/obj/structure/plasticflaps, -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor{ - name = "MedSci Router" - }, -/turf/open/floor/plating, -/area/router/medsci) -"cOU" = ( -/obj/structure/plasticflaps, -/obj/structure/fans/tiny, -/obj/machinery/door/poddoor{ - name = "MedSci Router" - }, -/obj/machinery/conveyor{ - dir = 1; - id = "medsci_off" - }, -/turf/open/floor/plating, -/area/router/medsci) -"cOV" = ( -/obj/structure/closet/crate, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/item/storage/box/mousetraps, -/obj/item/reagent_containers/glass/bucket, -/obj/item/mop, -/obj/machinery/airalarm{ - dir = 4; - pixel_x = -22 - }, -/turf/open/floor/plasteel, -/area/janitor/aux) -"cOW" = ( -/obj/structure/chair{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/landmark/event_spawn, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/janitor/aux) -"cOX" = ( -/obj/structure/table, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/item/modular_computer/laptop/preset/civilian, -/turf/open/floor/plasteel, -/area/janitor/aux) -"cOY" = ( -/obj/effect/spawner/structure/window/reinforced, -/turf/open/floor/plating, -/area/janitor/aux) -"cOZ" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera{ - c_tag = "Custodial Closet - Auxiliary"; - dir = 1 - }, -/turf/open/floor/plasteel, -/area/janitor/aux) -"cPa" = ( -/obj/structure/mopbucket, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -26 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/janitor/aux) -"cPb" = ( -/obj/machinery/disposal/bin, -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/janitor/aux) -"cPc" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/white, -/area/medical/virology) -"cPd" = ( -/obj/machinery/conveyor{ - id = "sq_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"cPe" = ( -/obj/machinery/mass_driver{ - dir = 1; - id = "sq_out"; - name = "Router Driver" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"cPf" = ( -/obj/machinery/conveyor/auto, -/turf/open/floor/plating/airless, -/area/router/aux) -"cPg" = ( -/obj/machinery/mass_driver{ - dir = 1; - id = "medsci_in"; - name = "Router Driver" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"cPh" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "sq_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"cPi" = ( -/obj/machinery/conveyor{ - dir = 1; - id = "viro_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"cPj" = ( -/obj/machinery/conveyor{ - dir = 9; - id = "viro_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"cPk" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "viro_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"cPl" = ( -/obj/machinery/mass_driver{ - dir = 8; - id = "viro_in"; - name = "Router Driver" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"cPm" = ( -/obj/machinery/conveyor{ - dir = 8; - id = "sq_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"cPn" = ( -/obj/machinery/conveyor{ - dir = 10; - id = "sq_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"cPo" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "viro_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"cPp" = ( -/obj/machinery/mass_driver{ - dir = 4; - id = "viro_out"; - name = "Router Driver" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"cPq" = ( -/obj/machinery/conveyor{ - dir = 4; - id = "sq_off" - }, -/turf/open/floor/plating/airless, -/area/router/aux) -"cPr" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/hydroponics/lobby) -"cPs" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/bridge) -"cPt" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel/dark, -/area/security/checkpoint/customs) -"cPu" = ( -/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden, -/obj/effect/landmark/event_spawn, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cPv" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/landmark/event_spawn, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/circuit, -/area/science/robotics/mechbay) -"cPw" = ( -/turf/open/floor/plasteel/dark, -/area/science/robotics/mechbay) -"cPx" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cPy" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/sign/poster/contraband/lusty_xenomorph{ - pixel_y = 32 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPz" = ( -/obj/structure/lattice, -/obj/structure/transit_tube/curved{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cPA" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/structure/transit_tube/horizontal, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cPB" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/transit_tube/crossing/horizontal, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"cPC" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/structure/transit_tube/horizontal, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cPD" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/structure/disposalpipe/segment, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cPE" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/space/basic, -/area/space/nearstation) -"cPF" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/space/basic, -/area/space/nearstation) -"cPG" = ( -/obj/structure/lattice, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera{ - c_tag = "Supply - Warehouse Exterior"; - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/space/basic, -/area/space/nearstation) -"cPH" = ( -/obj/machinery/conveyor_switch{ - id = "EngiCargoConveyer" - }, -/obj/structure/cable, -/obj/machinery/power/apc{ - areastring = "/area/quartermaster/sorting"; - dir = 8; - name = "Delivery Office APC"; - pixel_x = -26 - }, -/turf/open/floor/plasteel, -/area/quartermaster/sorting) -"cPI" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Foyer"; - req_one_access_txt = "10;24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cPJ" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering{ - name = "Engineering Foyer"; - req_one_access_txt = "10;24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cPK" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Access"; - req_one_access_txt = "10;24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cPL" = ( -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/engineering/glass{ - name = "Engineering Access"; - req_one_access_txt = "10;24" - }, -/obj/effect/mapping_helpers/airlock/cyclelink_helper{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/turf_decal/delivery, -/turf/open/floor/plasteel, -/area/engine/break_room) -"cPM" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/structure/table, -/obj/machinery/recharger, -/obj/machinery/requests_console{ - department = "Security"; - departmentType = 5; - name = "Security RC"; - pixel_x = 32 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/security/checkpoint/supply) -"cPN" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPO" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plating, -/area/maintenance/starboard/aft) -"cPP" = ( -/obj/effect/landmark/start/paramedic, -/obj/structure/disposalpipe/segment{ - dir = 9 - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/central) -"cPQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 6 - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - areastring = "/area/medical/genetics"; - dir = 8; - name = "Genetics Lab APC"; - pixel_x = -26 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 6 - }, -/turf/open/floor/plating, -/area/maintenance/aft) -"cPR" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"cPS" = ( -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue, -/obj/machinery/door/firedoor, -/obj/machinery/door/airlock/command/glass{ - name = "CMO's Office"; - req_access_txt = "40" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/white, -/area/crew_quarters/heads/cmo) -"cPT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/crew_quarters/heads/cmo) -"cPU" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cPV" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/holopad, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cPW" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cPX" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/white, -/area/science/xenobiology) -"cPY" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cPZ" = ( -/obj/effect/turf_decal/stripes/line, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/door/firedoor, -/obj/effect/turf_decal/caution/stand_clear{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQa" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cQb" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cQc" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cQd" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cQe" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "xenobio2"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQf" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cQg" = ( -/obj/machinery/door/window/westright{ - name = "Containment Pen"; - req_one_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio1"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cQh" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cQi" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cQj" = ( -/obj/machinery/door/window/eastleft{ - name = "Containment Pen"; - req_one_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio2"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cQk" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"cQl" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/north, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/button/door{ - id = "xenobio1"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQm" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cQn" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cQo" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable, -/turf/open/floor/plating, -/area/science/xenobiology) -"cQp" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cQq" = ( -/obj/effect/turf_decal/tile/purple, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cQr" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner, -/obj/machinery/button/door{ - id = "xenobio4"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQs" = ( -/obj/machinery/door/window/westright{ - name = "Containment Pen"; - req_one_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio3"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cQt" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cQu" = ( -/obj/machinery/door/window/eastleft{ - name = "Containment Pen"; - req_one_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio4"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cQv" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/north, -/obj/machinery/button/door{ - id = "xenobio3"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQw" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - light_color = "#e8eaff" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cQx" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/structure/window/reinforced/spawner, -/obj/machinery/button/door{ - id = "xenobio6"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQy" = ( -/obj/machinery/door/window/westright{ - name = "Containment Pen"; - req_one_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio5"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cQz" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cQA" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cQB" = ( -/obj/machinery/door/window/eastleft{ - name = "Containment Pen"; - req_one_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio6"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cQC" = ( -/obj/structure/table/reinforced, -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/structure/window/reinforced/spawner/north, -/obj/machinery/button/door{ - id = "xenobio5"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQD" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cQE" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cQF" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 9 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cQG" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/open/floor/plasteel/dark, -/area/science/xenobiology) -"cQH" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/button/door{ - id = "xenobio7"; - name = "Containment Blast Doors"; - pixel_y = 4; - req_access_txt = "55" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQI" = ( -/obj/structure/table/reinforced, -/obj/structure/window/reinforced{ - dir = 8; - layer = 2.9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/item/clothing/mask/gas, -/obj/item/clothing/glasses/science, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/floor/plasteel, -/area/science/xenobiology) -"cQJ" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cQK" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/general/visible, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cQL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cQM" = ( -/obj/machinery/door/window/southright{ - name = "Secure Xenobiological Containment"; - req_one_access_txt = "55" - }, -/obj/machinery/door/poddoor/preopen{ - id = "xenobio7"; - name = "containment blast door" - }, -/turf/open/floor/engine, -/area/science/xenobiology) -"cQN" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cQO" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cQP" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/turf/open/floor/plating, -/area/science/xenobiology) -"cQQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"cQR" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"cQS" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"cQT" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable, -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"cQU" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/structure/cable{ - icon_state = "0-2" - }, -/obj/machinery/door/poddoor/preopen{ - id = "bridge blast"; - name = "bridge blast door" - }, -/turf/open/floor/plating, -/area/bridge) -"cQV" = ( -/obj/item/kirbyplants{ - icon_state = "plant-02" - }, -/obj/structure/cable{ - icon_state = "2-4" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"cQW" = ( -/obj/structure/table/wood, -/obj/item/paper_bin, -/obj/machinery/camera{ - c_tag = "Bridge - Port Quarter"; - dir = 1 - }, -/obj/machinery/keycard_auth{ - pixel_y = -24 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"cQX" = ( -/obj/machinery/photocopier, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"cQY" = ( -/obj/structure/reagent_dispensers/water_cooler, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"cQZ" = ( -/obj/structure/cable{ - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"cRa" = ( -/obj/effect/turf_decal/stripes/end{ - dir = 4 - }, -/obj/machinery/conveyor{ - dir = 4; - id = "MiningConveyer" - }, -/obj/machinery/door/poddoor{ - id = "MiningConveyorBlastDoor"; - name = "Asteroid Mining Load Door" - }, -/turf/open/floor/plating/airless, -/area/quartermaster/miningoffice) -"cRb" = ( -/obj/machinery/computer/cloning, -/obj/effect/turf_decal/bot, -/obj/structure/disposalpipe/segment, -/obj/item/paper/guides/jobs/medical/cloning{ - pixel_x = -4 - }, -/obj/item/paper/fluff/cogstation/cloner{ - pixel_x = 6 - }, -/turf/open/floor/plasteel, -/area/medical/medbay/central) -"cRc" = ( -/obj/machinery/door/firedoor, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/door/airlock/research{ - name = "Aft Observatory"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cRd" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/machinery/door/airlock/research{ - name = "Aft Observatory"; - req_access_txt = "47" - }, -/turf/open/floor/plasteel/dark, -/area/science/misc_lab{ - name = "Research Observatory" - }) -"cRe" = ( -/obj/machinery/computer/upload/ai{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 1 - }, -/obj/effect/turf_decal/tile/blue{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/ai_monitored/turret_protected/ai) -"cRf" = ( -/obj/structure/window/reinforced/spawner/north, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/obj/machinery/flasher{ - id = "ID"; - pixel_x = 24 - }, -/turf/open/floor/plasteel/dark, -/area/ai_monitored/turret_protected/ai) -"cRg" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/unary/portables_connector/visible, -/obj/machinery/portable_atmospherics/pump, -/obj/effect/turf_decal/tile/blue{ - dir = 8 - }, -/obj/machinery/light, -/turf/open/floor/plasteel/white/corner, -/area/engine/atmos) -"cRh" = ( -/obj/effect/turf_decal/stripes/line, -/obj/structure/cable{ - icon_state = "1-8" - }, -/obj/machinery/turretid{ - control_area = "/area/science/server"; - icon_state = "control_stun"; - name = "Computer Core turret control"; - pixel_x = -3; - pixel_y = -23; - req_access_txt = "65" - }, -/turf/open/floor/plasteel, -/area/science/server{ - name = "Computer Core" - }) -"cRi" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/turf/open/floor/plasteel/dark/side, -/area/science/robotics/lab) -"cRj" = ( -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/turf/open/floor/plasteel/dark/side{ - dir = 6 - }, -/area/science/robotics/lab) -"cRk" = ( -/obj/structure/table, -/obj/machinery/cell_charger, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_y = 3; - pixel_x = 4 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000; - pixel_x = -6; - pixel_y = 6 - }, -/obj/item/stock_parts/cell/high{ - charge = 100; - maxcharge = 15000 - }, -/obj/machinery/button/door{ - id = "robotics3"; - name = "Shutters Control Button"; - pixel_x = 24; - pixel_y = -24; - req_access_txt = "29" - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cRl" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"cRm" = ( -/obj/effect/turf_decal/tile/red, -/obj/effect/turf_decal/tile/red{ - dir = 8 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 1 - }, -/obj/machinery/light, -/obj/effect/turf_decal/stripes/red/full, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, -/obj/structure/sign/poster/official/cleanliness{ - pixel_y = -32 - }, -/obj/machinery/disposal/bin{ - name = "Corpse Disposal Unit" - }, -/turf/open/floor/plasteel/white, -/area/medical/medbay/zone2{ - name = "Medbay Treatment Center" - }) -"cRn" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/effect/landmark/start/roboticist, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"cRo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/obj/effect/landmark/start/roboticist, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"cRp" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 5 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/landmark/start/roboticist, -/turf/open/floor/plasteel/dark, -/area/science/robotics/lab) -"cRq" = ( -/obj/machinery/rnd/production/circuit_imprinter/department/science, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cRr" = ( -/obj/machinery/droneDispenser, -/obj/item/stack/sheet/metal/fifty, -/obj/item/stack/sheet/glass/fifty, -/obj/effect/turf_decal/stripes/line{ - dir = 5; - layer = 2.03 - }, -/turf/open/floor/plasteel, -/area/science/robotics/lab) -"cVq" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/engine/atmos) -"cVO" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"dpO" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"dVR" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) -"dYm" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/turf/open/floor/engine, -/area/science/storage) -"eCy" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"eIh" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/red{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "N2O Outlet Pump" - }, -/turf/open/floor/plasteel/white/corner{ - dir = 1 - }, -/area/engine/atmos) -"eKM" = ( -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -30 - }, -/obj/machinery/atmospherics/pipe/manifold/supplymain/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"eTZ" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"eUF" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"fgS" = ( -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 1 - }, -/obj/effect/turf_decal/tile/purple{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Plasma Outlet Pump" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"fkx" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"frb" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/open/space/basic, -/area/space/nearstation) -"fti" = ( -/obj/machinery/atmospherics/components/binary/pump, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"fui" = ( -/obj/machinery/atmospherics/pipe/simple/violet/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space) -"fuE" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 - }, -/turf/open/space/basic, -/area/space/nearstation) -"fuR" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/hidden, -/obj/item/radio/intercom{ - name = "Station Intercom (General)"; - pixel_x = 30 - }, -/turf/open/floor/plasteel, -/area/science/mixing) -"fIw" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 4 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) -"guK" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/open/space/basic, -/area/space) -"gDY" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 8; - name = "Fuel Pipe to Incinerator" - }, -/obj/machinery/light, -/obj/machinery/atmospherics/components/binary/pump/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"gGG" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"gVV" = ( -/obj/structure/window/reinforced{ - dir = 4; - layer = 2.9 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/portable_atmospherics/canister/oxygen, -/turf/open/floor/engine, -/area/science/storage) -"hcR" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/bridge) -"hiV" = ( -/obj/effect/turf_decal/tile/yellow{ - dir = 4 - }, -/obj/effect/turf_decal/tile/yellow{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"hlo" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) -"hlV" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 4 - }, -/turf/open/floor/plating/airless, -/area/space/nearstation) -"hDz" = ( -/obj/machinery/space_heater, -/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"hFa" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/turf_decal/stripes/line{ - dir = 6 - }, -/turf/open/floor/engine, -/area/science/storage) -"hKC" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"hMZ" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Pure to Port" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"hXk" = ( -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/turf/closed/wall/r_wall, -/area/engine/engineering{ - name = "Engine Room" - }) -"ifC" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/manifold/orange/visible, -/turf/open/space/basic, -/area/space/nearstation) -"iAW" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"iQY" = ( -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/obj/structure/closet/firecloset, -/turf/open/floor/plasteel, -/area/engine/atmos) -"jiZ" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 5 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"jml" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - layer = 2.4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plasteel, -/area/engine/atmos) -"jon" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"jyu" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/open/space/basic, -/area/space/nearstation) -"jMO" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 8 - }, -/turf/closed/wall/r_wall, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"jXo" = ( -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 10 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"kxw" = ( -/obj/machinery/atmospherics/pipe/simple/violet/visible, -/turf/open/space/basic, -/area/space) -"kzb" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/bridge) -"kOG" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 1; - name = "Mix to Engine" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"lcD" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Air to Port" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"lRy" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"mkx" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"mqB" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"mxW" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"mBP" = ( -/obj/effect/landmark/xeno_spawn, -/turf/open/floor/plasteel, -/area/science/mixing) -"mEa" = ( -/obj/machinery/atmospherics/pipe/manifold/cyan/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) -"mIm" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 4 - }, -/obj/effect/turf_decal/stripes/line{ - dir = 8 - }, -/obj/machinery/light{ - light_color = "#cee5d2" - }, -/turf/open/floor/engine, -/area/science/storage) -"mIT" = ( -/obj/structure/lattice/catwalk, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible, -/turf/open/space/basic, -/area/space/nearstation) -"mKP" = ( -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/tcommsat/computer) -"mNN" = ( -/obj/machinery/space_heater, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"ntC" = ( -/obj/machinery/atmospherics/components/binary/pump{ - name = "Port to Fuel Pipe" - }, -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"nvn" = ( -/obj/machinery/atmospherics/pipe/manifold/general/visible{ - dir = 1 - }, -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 1 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"nAF" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - name = "Mix to Port" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"nBM" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"nEX" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"nLV" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/green/visible, -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"ony" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 4 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"opd" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/violet/visible{ - dir = 4 - }, -/turf/open/space/basic, -/area/space/nearstation) -"oMB" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/cyan/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, -/turf/open/floor/plating, -/area/engine/atmos) -"pgu" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/orange/visible, -/turf/open/space/basic, -/area/space/nearstation) -"prx" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"qeq" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ - dir = 6 - }, -/turf/open/space/basic, -/area/space/nearstation) -"qgO" = ( -/obj/machinery/portable_atmospherics/scrubber, -/turf/open/floor/plasteel, -/area/engine/atmos) -"qlJ" = ( -/obj/structure/lattice/catwalk, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible, -/turf/open/space/basic, -/area/space/nearstation) -"qvB" = ( -/obj/machinery/atmospherics/components/unary/thermomachine/heater{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"qHL" = ( -/obj/effect/spawner/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ - dir = 1 - }, -/turf/open/floor/plating, -/area/engine/atmos) -"qWY" = ( -/obj/machinery/atmospherics/components/binary/pump/on{ - name = "Waste In" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"rdF" = ( -/obj/machinery/atmospherics/pipe/simple/dark/visible{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"rTW" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/violet/visible{ - dir = 6 - }, -/turf/open/space/basic, -/area/space/nearstation) -"rUl" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 8 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"sdp" = ( -/obj/structure/reagent_dispensers/foamtank, -/turf/open/floor/engine, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"sHB" = ( -/obj/machinery/atmospherics/pipe/manifold/orange/visible{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"sRD" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"sVC" = ( -/obj/structure/lattice/catwalk, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/visible, -/turf/open/space/basic, -/area/space/nearstation) -"tjb" = ( -/obj/machinery/door/firedoor, -/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ - dir = 9 - }, -/obj/machinery/meter, -/turf/open/floor/plating, -/area/engine/engineering{ - name = "Engine Room" - }) -"tpQ" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/violet/visible, -/turf/open/space/basic, -/area/space/nearstation) -"tuF" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 6 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"tyI" = ( -/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ - dir = 4 - }, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"tXV" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4; - layer = 2.4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"tZj" = ( -/obj/structure/tank_dispenser{ - pixel_x = -1 - }, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"tZC" = ( -/obj/machinery/atmospherics/pipe/manifold4w/orange/visible, -/obj/machinery/meter, -/turf/open/floor/plasteel, -/area/engine/atmos) -"urj" = ( -/obj/machinery/atmospherics/pipe/simple/general/hidden{ - dir = 8; - icon_state = "intact" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel/dark, -/area/bridge) -"uwK" = ( -/obj/effect/turf_decal/stripes/line{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 6 - }, -/turf/open/floor/plasteel, -/area/engine/secure_construction{ - name = "Engineering Construction Area" - }) -"uAY" = ( -/obj/structure/table, -/obj/item/storage/belt/utility, -/obj/item/t_scanner, -/turf/open/floor/plasteel, -/area/engine/atmos) -"uVD" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 5 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"vcb" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden{ - dir = 10 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"vsO" = ( -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"vxU" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible, -/obj/structure/extinguisher_cabinet{ - pixel_x = 27 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"wbu" = ( -/obj/machinery/atmospherics/pipe/simple/violet/visible, -/turf/closed/wall/r_wall, -/area/engine/atmos) -"wPS" = ( -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/simple/violet/visible{ - dir = 9 - }, -/turf/open/space/basic, -/area/space/nearstation) -"wWH" = ( -/obj/machinery/atmospherics/pipe/manifold4w/general/visible, -/turf/open/floor/plasteel, -/area/engine/atmos) -"xcO" = ( -/obj/effect/turf_decal/tile/green{ - dir = 4 - }, -/obj/effect/turf_decal/tile/green{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/green/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/components/binary/pump{ - dir = 0; - name = "Mix Outlet Pump" - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"xjk" = ( -/obj/machinery/atmospherics/components/binary/pump{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"xkC" = ( -/obj/machinery/atmospherics/pipe/simple/orange/visible{ - dir = 9 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"xoj" = ( -/obj/structure/table, -/obj/item/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/pen, -/turf/open/floor/plasteel, -/area/engine/atmos) -"xxP" = ( -/turf/closed/wall, -/area/quartermaster/storage) -"xCy" = ( -/obj/machinery/atmospherics/components/binary/pump, -/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ - dir = 4 - }, -/turf/open/floor/plasteel, -/area/engine/atmos) -"xKr" = ( -/obj/machinery/atmospherics/pipe/simple/yellow/visible{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/orange/hidden, -/turf/open/floor/plasteel, -/area/engine/atmos) +"aaa" = (/turf/open/space/basic,/area/space) +"aab" = (/obj/structure/sign/poster/official/anniversary_vintage_reprint,/turf/closed/wall/r_wall,/area/science/research{name = "Research Sector"}) +"aac" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/closed/wall/r_wall,/area/maintenance/fore) +"aad" = (/turf/open/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/rec_center) +"aae" = (/obj/docking_port/stationary{dir = 2; dwidth = 4; height = 12; id = "arrivals_stationary"; name = "cog arrivals"; roundstart_template = /datum/map_template/shuttle/arrival/cog; width = 9},/turf/open/space/basic,/area/space) +"aaf" = (/turf/closed/wall,/area/science/test_area) +"aag" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/stairs/medium,/area/hallway/secondary/entry) +"aah" = (/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "2-4"},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) +"aai" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/closed/wall/r_wall/rust,/area/maintenance/fore) +"aaj" = (/turf/closed/wall/r_wall,/area/maintenance/port/fore) +"aak" = (/obj/machinery/conveyor/auto{id = "pb"},/turf/open/floor/plating/airless,/area/router/aux) +"aal" = (/turf/closed/wall,/area/maintenance/port/fore) +"aam" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port/fore) +"aan" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/ai_monitored/security/armory) +"aao" = (/obj/machinery/power/solar{id = "forestarboard"; name = "Fore-Starboard Solar Array"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/fore) +"aap" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/port/fore) +"aaq" = (/obj/structure/rack,/obj/item/storage/toolbox/emergency,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port/fore) +"aar" = (/obj/machinery/conveyor/auto{dir = 8; id = "pb"},/turf/open/floor/plating/airless,/area/router/aux) +"aas" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plating/airless,/area/space/nearstation) +"aat" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/observatory"; dir = 1; name = "Observatory APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/port/fore) +"aau" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/port/fore"; dir = 8; name = "Port Bow Maintenance APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/port/fore) +"aav" = (/obj/machinery/conveyor/auto{dir = 8; id = "solar"},/turf/open/floor/plating/airless,/area/router/aux) +"aaw" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/test_area) +"aax" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/entry) +"aay" = (/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "2-8"},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) +"aaz" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/ai_monitored/security/armory) +"aaA" = (/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) +"aaB" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/kitchen/backroom"; dir = 1; name = "Kitchen Coldroom APC"; pixel_y = 24},/turf/open/floor/plating,/area/hallway/secondary/service) +"aaC" = (/obj/structure/closet/secure_closet/lethalshots,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/storage/box/firingpins,/obj/item/storage/box/firingpins,/obj/effect/spawner/lootdrop/armory_contraband/metastation,/turf/open/floor/plasteel,/area/ai_monitored/security/armory) +"aaD" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating/airless,/area/router/aux) +"aaE" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera{c_tag = "Port Bow Maintenance - Fore"; network = list("ss13","rd")},/turf/open/floor/plating,/area/maintenance/port/fore) +"aaF" = (/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) +"aaG" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel/stairs/left,/area/security/brig) +"aaH" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/machinery/camera/motion{c_tag = "Armory Motion Sensor"; pixel_x = 22},/obj/structure/rack,/obj/item/gun/energy/e_gun{pixel_y = -6},/obj/item/gun/energy/e_gun{pixel_y = -3},/obj/item/gun/energy/e_gun,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) +"aaI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/fore) +"aaJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) +"aaK" = (/obj/machinery/power/solar{id = "foreport"; name = "Fore-Port Solar Array"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) +"aaL" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/turf/open/space/basic,/area/solar/port) +"aaM" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/port) +"aaN" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/security/brig) +"aaO" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/turf/open/space/basic,/area/solar/starboard/fore) +"aaP" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/fore) +"aaQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) +"aaR" = (/obj/machinery/vending/snack/random,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"aaS" = (/turf/open/floor/plasteel,/area/security/brig) +"aaT" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space/basic,/area/solar/starboard/fore) +"aaU" = (/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"aaV" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/solar/starboard/fore) +"aaW" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/space/nearstation) +"aaX" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aaY" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 21},/turf/open/floor/plating/airless,/area/router/aux) +"aaZ" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aba" = (/obj/machinery/door/airlock/external{name = "Arrival Shuttle Airlock"},/obj/structure/fans/tiny,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"abb" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"abc" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-4"},/turf/open/space/basic,/area/solar/starboard/fore) +"abd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/port/fore) +"abe" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space/basic,/area/solar/starboard/fore) +"abf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/fore) +"abg" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"abh" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/solar/port) +"abi" = (/obj/machinery/power/solar{id = "foreport"; name = "Fore-Port Solar Array"},/obj/structure/cable,/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) +"abj" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/fore) +"abk" = (/obj/structure/closet/crate/secure/gear{name = "Grenade Crate"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/storage/box/flashbangs{pixel_x = 3; pixel_y = 2},/obj/item/storage/box/teargas{pixel_x = 3; pixel_y = -3},/obj/item/grenade/barrier,/obj/item/grenade/barrier,/obj/item/grenade/barrier,/turf/open/floor/plasteel,/area/ai_monitored/security/armory) +"abl" = (/obj/machinery/airalarm{pixel_y = 24},/obj/structure/rack,/obj/item/gun/energy/laser{pixel_x = -3; pixel_y = 3},/obj/item/gun/energy/laser,/obj/item/gun/energy/laser{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) +"abm" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) +"abn" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/rack,/obj/item/gun/ballistic/shotgun/riot{pixel_y = 6},/obj/item/gun/ballistic/shotgun/riot,/obj/item/gun/ballistic/shotgun/riot{pixel_y = -6},/turf/open/floor/plasteel,/area/ai_monitored/security/armory) +"abo" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/security/armory) +"abp" = (/turf/closed/wall/r_wall,/area/space/nearstation) +"abq" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/storage/box/rubbershot{pixel_x = -3; pixel_y = 3},/obj/item/storage/box/rubbershot,/obj/item/storage/box/rubbershot{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel,/area/ai_monitored/security/armory) +"abr" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/router/aux) +"abs" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"abt" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"abu" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"abv" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/fore) +"abw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof{pixel_x = -3; pixel_y = 3},/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/suit/armor/bulletproof{pixel_x = 3; pixel_y = -3},/obj/item/clothing/head/helmet/alt{layer = 3.00001; pixel_x = -3; pixel_y = 3},/obj/item/clothing/head/helmet/alt{layer = 3.00001},/obj/item/clothing/head/helmet/alt{layer = 3.00001; pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel,/area/ai_monitored/security/armory) +"abx" = (/turf/closed/wall/r_wall,/area/maintenance/solars/port) +"aby" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/space/nearstation) +"abz" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/fore) +"abA" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) +"abB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/closed/wall,/area/crew_quarters/theatre/clown) +"abC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/closed/wall,/area/crew_quarters/theatre/clown) +"abD" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/turf/open/floor/plating/airless,/area/router/aux) +"abE" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/deliveryChute{dir = 4},/turf/open/floor/plating/airless,/area/router/aux) +"abF" = (/obj/machinery/mass_driver{dir = 8; id = "sb_out"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) +"abG" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/table,/obj/item/storage/box/trackimp{pixel_x = 4},/obj/item/storage/box/chemimp{pixel_x = -4},/obj/item/storage/lockbox/loyalty,/turf/open/floor/plasteel,/area/ai_monitored/security/armory) +"abH" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/space/nearstation) +"abI" = (/obj/structure/table,/obj/structure/mirror{icon_state = "mirror_broke"; pixel_x = -24},/obj/item/storage/briefcase,/obj/item/circuitboard/machine/vending/donksofttoyvendor,/obj/item/storage/pill_bottle/happy,/obj/effect/decal/cleanable/dirt,/obj/item/paper/fluff/cogstation/cluwne,/turf/open/floor/plating,/area/crew_quarters/theatre/clown) +"abJ" = (/obj/machinery/conveyor{dir = 8; id = "sb_off"},/turf/open/floor/plating/airless,/area/router/aux) +"abK" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"abL" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"abM" = (/turf/closed/wall/r_wall,/area/router/aux) +"abN" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/checker,/area/hallway/secondary/entry) +"abO" = (/obj/structure/chair/comfy/brown,/obj/item/beacon,/turf/open/floor/carpet/royalblue,/area/bridge) +"abP" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/rack,/obj/item/gun/energy/ionrifle{pixel_y = 4},/obj/item/gun/energy/temperature/security{pixel_y = -4},/obj/item/clothing/suit/armor/laserproof,/turf/open/floor/plasteel,/area/ai_monitored/security/armory) +"abQ" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/fore) +"abR" = (/obj/structure/grille,/turf/open/floor/plating/airless,/area/router/aux) +"abS" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig) +"abT" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/dorms/purple"; name = "Crew Quarters A APC"; pixel_y = -26},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/port/fore) +"abU" = (/obj/machinery/space_heater,/obj/machinery/power/apc{areastring = "/area/crew_quarters/dorms/blue"; name = "Crew Quarters B APC"; pixel_y = -26},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/fore) +"abV" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating/airless,/area/router/aux) +"abW" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/router/aux) +"abX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/checkpoint) +"abY" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/fore) +"abZ" = (/obj/machinery/conveyor{dir = 1; id = "sb_off"},/turf/open/floor/plating/airless,/area/router/aux) +"aca" = (/obj/machinery/conveyor{dir = 5; id = "pb_off"},/turf/open/floor/plating/airless,/area/router/aux) +"acb" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/closed/wall/r_wall,/area/maintenance/fore) +"acc" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/door/poddoor/preopen{id = "solitarylock"; name = "Brig Lockdown"},/turf/open/floor/plating,/area/security/brig) +"acd" = (/obj/machinery/button/door{id = "armory"; name = "Armory Blast Door Control"; pixel_x = -28; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) +"ace" = (/obj/machinery/conveyor{dir = 4; id = "pb_off"},/turf/open/floor/plating/airless,/area/router/aux) +"acf" = (/obj/machinery/mass_driver{dir = 4; id = "pb_out"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) +"acg" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) +"ach" = (/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) +"aci" = (/turf/closed/wall,/area/medical{name = "Medical Booth"}) +"acj" = (/obj/machinery/conveyor{dir = 4; id = "solar_off"},/turf/open/floor/plating/airless,/area/router/aux) +"ack" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/item/shield/riot{pixel_x = -6},/obj/item/shield/riot{pixel_x = -6},/obj/item/shield/riot{pixel_x = -6},/obj/item/clothing/mask/gas/sechailer/swat{pixel_x = -4},/obj/item/clothing/mask/gas/sechailer/swat{pixel_x = -4},/obj/item/clothing/mask/gas/sechailer/swat{pixel_x = -4},/turf/open/floor/plasteel,/area/ai_monitored/security/armory) +"acl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Armory"; req_one_access_txt = "3"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) +"acm" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/deliveryChute{dir = 8},/turf/open/floor/plating/airless,/area/router/aux) +"acn" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/fore) +"aco" = (/turf/open/floor/plating,/area/maintenance/port/fore) +"acp" = (/turf/open/floor/plating/airless,/area/science/test_area) +"acq" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/conveyor{id = "solar_off"},/turf/open/floor/plating/airless,/area/router/aux) +"acr" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 7},/turf/open/floor/plating/airless,/area/router/aux) +"acs" = (/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"act" = (/turf/closed/wall/r_wall,/area/maintenance/fore) +"acu" = (/obj/structure/table,/obj/machinery/light,/obj/machinery/recharger,/obj/item/assembly/signaler{pixel_x = 8; pixel_y = 6},/obj/item/assembly/signaler{pixel_x = 8; pixel_y = 4},/obj/item/assembly/signaler{pixel_x = 8; pixel_y = 2},/obj/item/electropack{pixel_x = -10},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) +"acv" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/solar/starboard/fore) +"acw" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/port/fore) +"acx" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating/airless,/area/router/aux) +"acy" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/gun/energy/e_gun/advtaser{pixel_y = 6},/obj/item/gun/energy/e_gun/advtaser,/obj/item/gun/energy/e_gun/advtaser{pixel_y = -6},/obj/structure/rack,/turf/open/floor/plasteel,/area/ai_monitored/security/armory) +"acz" = (/obj/machinery/mass_driver{dir = 4; id = "sb_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) +"acA" = (/obj/machinery/conveyor{dir = 4; id = "sb_off"},/turf/open/floor/plating/airless,/area/router/aux) +"acB" = (/obj/machinery/conveyor{dir = 6; id = "sb_off"},/turf/open/floor/plating/airless,/area/router/aux) +"acC" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor{id = "armory"; name = "Armory"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) +"acD" = (/obj/machinery/light_switch{pixel_x = -24},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig) +"acE" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/closed/wall/r_wall,/area/maintenance/fore) +"acF" = (/turf/closed/wall,/area/crew_quarters/lounge) +"acG" = (/obj/machinery/conveyor{dir = 1; id = "pb_off"},/turf/open/floor/plating/airless,/area/router/aux) +"acH" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"acI" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"acJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{id = "solar_off"},/turf/open/floor/plating/airless,/area/router/aux) +"acK" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical{name = "Medical Booth"}) +"acL" = (/obj/machinery/door/poddoor{id = "executionspaceblast"},/turf/open/floor/plating,/area/maintenance/port/fore) +"acM" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = -32},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"acN" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"acO" = (/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "1-4"},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) +"acP" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating,/area/maintenance/fore) +"acQ" = (/turf/closed/wall,/area/crew_quarters/theatre/clown) +"acR" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/kirbyplants{icon_state = "plant-16"},/turf/open/floor/plasteel/checker,/area/hallway/secondary/entry) +"acS" = (/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/open/floor/plating,/area/maintenance/fore) +"acT" = (/obj/structure/table/reinforced,/obj/item/modular_computer/laptop/preset/civilian,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"acU" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera{c_tag = "Armory Access"; network = list("ss13","rd")},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig) +"acV" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/washing_machine,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"acW" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/deliveryChute,/turf/open/floor/plating/airless,/area/router/aux) +"acX" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fore) +"acY" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/space/basic,/area/space/nearstation) +"acZ" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) +"ada" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/ai_monitored/security/armory) +"adb" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/security/brig) +"adc" = (/obj/machinery/conveyor{id = "sb_off"},/turf/open/floor/plating/airless,/area/router/aux) +"add" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plating,/area/crew_quarters/observatory) +"ade" = (/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/closed/wall/r_wall,/area/maintenance/fore) +"adf" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/crew_quarters/observatory) +"adg" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/table,/obj/machinery/microwave{pixel_y = 8},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"adh" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/crew_quarters/observatory) +"adi" = (/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"adj" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/observatory) +"adk" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/conveyor{id = "solar_off"},/turf/open/floor/plating/airless,/area/router/aux) +"adl" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/router/aux) +"adm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Fore Maintenance"; req_one_access_txt = "12;46"},/turf/open/floor/plating,/area/maintenance/fore) +"adn" = (/obj/structure/sign/nanotrasen,/turf/closed/wall/r_wall,/area/hallway/secondary/entry) +"ado" = (/obj/machinery/power/solar{id = "forestarboard"; name = "Fore-Starboard Solar Array"},/obj/structure/cable,/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/fore) +"adp" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/tcommsat/computer) +"adq" = (/turf/closed/wall/r_wall,/area/hallway/secondary/entry) +"adr" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/kirbyplants{icon_state = "plant-16"},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) +"ads" = (/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"adt" = (/turf/open/floor/plating,/area/maintenance/fore) +"adu" = (/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"adv" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/maintenance/fore) +"adw" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/conveyor/auto{dir = 1; id = "solar"},/turf/open/floor/plating/airless,/area/router/aux) +"adx" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/fore) +"ady" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating/airless,/area/solar/starboard/fore) +"adz" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/space/basic,/area/space/nearstation) +"adA" = (/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"adB" = (/obj/structure/sign/poster/official/enlist{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) +"adC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/crew_quarters/observatory) +"adD" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/vending/security,/turf/open/floor/plasteel,/area/security/brig) +"adE" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/gun/energy/laser/practice,/obj/item/gun/energy/laser/practice,/obj/machinery/syndicatebomb/training,/turf/open/floor/plasteel,/area/security/brig) +"adF" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"adG" = (/obj/machinery/mass_driver{id = "serv_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) +"adH" = (/obj/machinery/conveyor/auto{dir = 1; id = "solar"},/turf/open/floor/plating/airless,/area/router/aux) +"adI" = (/obj/machinery/disposal/bin{name = "Service Delivery"},/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/hydroponics) +"adJ" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/closet,/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/under/misc/staffassistant,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"adK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/stairs/medium,/area/security/brig) +"adL" = (/obj/machinery/mass_driver{id = "starboard_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) +"adM" = (/turf/closed/wall,/area/crew_quarters/observatory) +"adN" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/space/basic,/area/space/nearstation) +"adO" = (/obj/structure/noticeboard{dir = 4; pixel_x = -27},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"adP" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"adQ" = (/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"adR" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/storage/box/beakers,/obj/item/hand_labeler,/obj/item/folder/white{pixel_x = -6; pixel_y = 4},/obj/item/stamp/denied{pixel_x = 8; pixel_y = 8},/obj/item/stamp,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"adS" = (/turf/closed/wall,/area/construction) +"adT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/construction) +"adU" = (/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/maintenance/fore) +"adV" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/starboard/fore"; dir = 1; name = "Starboard Bow Maintenance APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"adW" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/right,/area/security/brig) +"adX" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"adY" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"adZ" = (/turf/open/floor/plating,/area/tcommsat/computer) +"aea" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) +"aeb" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/brig) +"aec" = (/turf/closed/wall/r_wall,/area/construction) +"aed" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aee" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space/basic,/area/solar/port) +"aef" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/fore) +"aeg" = (/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "1-8"},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) +"aeh" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/brig) +"aei" = (/obj/machinery/light,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/hallway/secondary/entry"; dir = 8; name = "Arrival Shuttle Hallway APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aej" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/plating/airless,/area/engine/engineering{name = "Engine Room"}) +"aek" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/photocopier,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"ael" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) +"aem" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"aen" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/maintenance/fore) +"aeo" = (/obj/effect/decal/cleanable/dirt,/obj/item/circuitboard/machine/sleeper,/obj/structure/frame/machine,/turf/open/floor/plasteel,/area/construction) +"aep" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"aeq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"aer" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aes" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/chair{dir = 1},/obj/structure/sign/poster/official/random{pixel_x = 32},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"aet" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aeu" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"aev" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/closed/wall/r_wall,/area/maintenance/fore) +"aew" = (/turf/closed/wall/r_wall,/area/security/prison) +"aex" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/table,/obj/item/storage/hypospraykit/regular,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"aey" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"aez" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"aeA" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"aeB" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/toilet/fitness"; name = "Fitness Toilets APC"; pixel_y = -26},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/fore) +"aeC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"aeD" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) +"aeE" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass,/turf/open/floor/plasteel,/area/construction) +"aeF" = (/obj/structure/table,/obj/item/assembly/infra,/obj/item/assembly/voice{pixel_x = 4; pixel_y = 12},/obj/item/assembly/health{pixel_x = -6; pixel_y = 4},/obj/item/assembly/prox_sensor{pixel_x = 4; pixel_y = -2},/turf/open/floor/plating,/area/construction) +"aeG" = (/obj/item/stack/tile/plasteel{pixel_x = 8; pixel_y = 6},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/construction"; dir = 1; name = "Construction Area APC"; pixel_y = 24},/turf/open/floor/plating,/area/construction) +"aeH" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore) +"aeI" = (/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) +"aeJ" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/security/prison) +"aeK" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry) +"aeL" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aeM" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aeN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Security Router"; req_one_access_txt = "1"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aeO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore) +"aeP" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/solar/starboard/fore) +"aeQ" = (/obj/structure/closet/secure_closet/brig,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"aeR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"aeS" = (/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"aeT" = (/obj/structure/table,/obj/item/storage/box/donkpockets,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"aeU" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"aeV" = (/obj/structure/closet/crate,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"aeW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Construction Area"; req_access_txt = "12"},/turf/open/floor/plasteel,/area/construction) +"aeX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fore) +"aeY" = (/turf/closed/wall,/area/crew_quarters/toilet/fitness) +"aeZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/crew_quarters/kitchen) +"afa" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/kitchen) +"afb" = (/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"afc" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"afd" = (/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"afe" = (/obj/machinery/door/airlock,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"aff" = (/turf/closed/wall,/area/crew_quarters/fitness) +"afg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/open/floor/plating,/area/maintenance/fore) +"afh" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable,/obj/machinery/power/apc/highcap/fifteen_k{areastring = /area/maintenance/solars/starboard/fore; dir = 4; name = "Starboard Bow Solars APC"; pixel_x = 28},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) +"afi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fore) +"afj" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"afk" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"afl" = (/obj/effect/landmark/secequipment,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"afm" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction) +"afn" = (/obj/machinery/biogenerator,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison) +"afo" = (/obj/structure/cable{icon_state = "0-8"},/obj/effect/landmark/start/mime,/obj/machinery/power/apc{areastring = "/area/crew_quarters/theatre/mime"; dir = 4; name = "Mime's Office APC"; pixel_x = 24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/theatre/mime) +"afp" = (/turf/open/floor/plating,/area/construction) +"afq" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"afr" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/paper_bin,/obj/item/pen,/obj/item/camera{pixel_y = -8},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"afs" = (/obj/machinery/flasher{id = "executionflash"; pixel_x = -25},/obj/structure/chair/e_chair,/obj/effect/decal/cleanable/ash{pixel_y = -8},/turf/open/floor/plating,/area/maintenance/port/fore) +"aft" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore) +"afu" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"afv" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"afw" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/port/fore) +"afx" = (/obj/machinery/computer/holodeck{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"afy" = (/obj/structure/table,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"afz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"afA" = (/turf/open/floor/plating,/area/maintenance/starboard/fore) +"afB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"afC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/port/fore) +"afD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/r_wall,/area/maintenance/port/fore) +"afE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/crew_quarters/theatre/clown) +"afF" = (/obj/machinery/sparker{id = "executionburn"; pixel_x = 25},/turf/open/floor/plating,/area/maintenance/port/fore) +"afG" = (/obj/structure/sink{pixel_y = 28},/obj/item/paper/guides/jobs/hydroponics,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison) +"afH" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical,/obj/item/clothing/mask/gas/sechailer,/obj/item/clothing/mask/gas/sechailer,/obj/item/clothing/mask/gas/sechailer,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -32},/turf/open/floor/plasteel,/area/security/warden) +"afI" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"afJ" = (/obj/structure/table,/obj/machinery/light{dir = 1},/obj/item/plant_analyzer,/obj/item/cultivator,/obj/item/reagent_containers/glass/bucket,/obj/item/reagent_containers/glass/bucket,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison) +"afK" = (/turf/closed/wall,/area/crew_quarters/kitchen) +"afL" = (/obj/machinery/door/airlock,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"afM" = (/obj/structure/closet/crate/internals,/obj/machinery/camera{c_tag = "Construction Area"; pixel_x = 22},/obj/item/flashlight,/obj/item/clothing/suit/hazardvest,/obj/item/tank/internals/emergency_oxygen/engi,/turf/open/floor/plating,/area/construction) +"afN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"afO" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/washing_machine,/turf/open/floor/plasteel/checker,/area/hallway/secondary/entry) +"afP" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"afQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/port/fore) +"afR" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/table/reinforced,/obj/item/paicard,/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"afS" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"afT" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"afU" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/stairs/left,/area/hallway/secondary/entry) +"afV" = (/obj/structure/closet/crate,/obj/machinery/light{dir = 1},/obj/item/clothing/gloves/color/white,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/structure/sign/poster/contraband/red_rum{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"afW" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/fore) +"afX" = (/obj/item/cigbutt,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/machinery/camera{c_tag = "Port Bow Maintenance - Aft"; dir = 1},/turf/open/floor/plating,/area/maintenance/port/fore) +"afY" = (/obj/item/seeds/carrot,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison) +"afZ" = (/obj/machinery/disposal/bin{name = "Brig Catering"},/obj/effect/turf_decal/stripes/line{dir = 5; layer = 2.03},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/kitchen) +"aga" = (/obj/structure/table,/obj/item/paper/fluff/holodeck/disclaimer,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"agb" = (/obj/structure/table,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"agc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) +"agd" = (/obj/structure/fans/tiny/invisible,/obj/docking_port/stationary{dwidth = 1; height = 4; name = "escape pod loader"; roundstart_template = /datum/map_template/shuttle/escape_pod/default; width = 3},/turf/open/space/basic,/area/space) +"age" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/port/fore) +"agf" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fore) +"agg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore) +"agh" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fore) +"agi" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/starboard/fore) +"agj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Observatory Access"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"agk" = (/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"agl" = (/obj/machinery/disposal/bin{name = "Bar Catering"},/obj/effect/turf_decal/stripes/line{dir = 6; layer = 2.03},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar,/turf/open/floor/plasteel,/area/crew_quarters/kitchen) +"agm" = (/obj/structure/table,/obj/item/sharpener,/obj/item/kitchen/knife,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"agn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/crew_quarters/lounge) +"ago" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"agp" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"agq" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"agr" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"ags" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"agt" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"agu" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) +"agv" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/security/brig) +"agw" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/noticeboard{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/displaycase/labcage{desc = "A glass lab container for storing smelly creatures."; name = "stinky panda containment"; start_showpiece_type = /mob/living/simple_animal/pet/redpanda/stinky},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"agx" = (/mob/living/simple_animal/bot/floorbot,/turf/open/floor/plating,/area/construction) +"agy" = (/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/port/fore) +"agz" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/fore) +"agA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fore) +"agB" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore) +"agC" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) +"agD" = (/obj/machinery/seed_extractor,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison) +"agE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) +"agF" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"agG" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/theatre/mime) +"agH" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/fore) +"agI" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/tower,/obj/item/seeds/amanita,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison) +"agJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Fore Maintenance"; req_one_access_txt = "12;46"},/turf/open/floor/plating,/area/maintenance/fore) +"agK" = (/obj/structure/chair/comfy/black,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"agL" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating/airless,/area/solar/port) +"agM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"agN" = (/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"agO" = (/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"agP" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison) +"agQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"agR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"agS" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"agT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/suit_storage_unit/engine,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"agU" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = 6},/obj/item/storage/toolbox/mechanical{pixel_y = 3},/obj/item/assembly/timer{pixel_x = 6; pixel_y = 4},/obj/item/t_scanner{pixel_x = -2; pixel_y = 5},/obj/item/t_scanner,/obj/item/assembly/igniter{pixel_x = 6; pixel_y = -4},/obj/structure/sign/poster/contraband/missing_gloves{pixel_y = 32},/turf/open/floor/plasteel,/area/storage/tools) +"agV" = (/obj/machinery/newscaster{pixel_x = 28},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"agW" = (/turf/closed/wall/r_wall,/area/security/processing) +"agX" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Starboard Bow Solar Exterior Airlock"; req_access_txt = "10;13"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) +"agY" = (/obj/structure/table,/obj/item/storage/crayons,/obj/item/toy/beach_ball/holoball,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"agZ" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"aha" = (/obj/structure/table,/obj/machinery/microwave{pixel_y = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"ahb" = (/obj/machinery/processor,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"ahc" = (/obj/structure/table,/obj/machinery/microwave{pixel_y = 8},/obj/structure/sign/poster/official/cleanliness{pixel_y = 32},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"ahd" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"ahe" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"ahf" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external/glass{name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plasteel,/area/security/processing) +"ahg" = (/turf/closed/wall/r_wall,/area/security/warden) +"ahh" = (/obj/machinery/power/port_gen/pacman,/turf/open/floor/plating,/area/tcommsat/computer) +"ahi" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/newscaster{pixel_x = 28},/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/item/storage/fancy/donut_box,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"ahj" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Fore Maintenance - Fore"; dir = 4},/turf/open/floor/plating,/area/maintenance/fore) +"ahk" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/processing) +"ahl" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plasteel,/area/security/processing) +"ahm" = (/obj/structure/falsewall/reinforced,/turf/closed/wall,/area/maintenance/port/fore) +"ahn" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/port/fore) +"aho" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/security/processing) +"ahp" = (/obj/machinery/gulag_item_reclaimer{pixel_y = 24},/turf/open/floor/plasteel,/area/security/processing) +"ahq" = (/turf/open/floor/plasteel,/area/security/processing) +"ahr" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/ambrosia,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison) +"ahs" = (/obj/machinery/light,/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/camera{c_tag = "Kitchen"; dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"aht" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/table,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/item/storage/box/disks,/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"ahu" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hydroponics) +"ahv" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = 32},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"ahw" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"ahx" = (/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"ahy" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/door/poddoor/preopen{id = "solitarylock"; name = "Brig Lockdown"},/turf/open/floor/plating,/area/security/warden) +"ahz" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/fitness) +"ahA" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/crew_quarters/fitness) +"ahB" = (/obj/structure/toilet{dir = 4},/obj/machinery/door/window/eastleft{name = "Bathroom Stall"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) +"ahC" = (/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) +"ahD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/fore"; dir = 1; name = "Fore Maintenance APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/fore) +"ahE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) +"ahF" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/mirror{pixel_y = 24},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) +"ahG" = (/obj/structure/sink{pixel_y = 28},/obj/structure/sign/poster/official/cleanliness{pixel_x = 32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) +"ahH" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/wood,/area/crew_quarters/fitness) +"ahI" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness"; name = "Fitness Room APC"; pixel_y = -26},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/fore) +"ahJ" = (/turf/open/floor/wood,/area/crew_quarters/fitness) +"ahK" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"ahL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/crew_quarters/observatory) +"ahM" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"ahN" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"ahO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) +"ahP" = (/turf/closed/wall,/area/maintenance/solars/starboard/fore) +"ahQ" = (/obj/structure/closet/lasertag/blue,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"ahR" = (/obj/item/beacon,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"ahS" = (/obj/structure/closet/cabinet,/turf/open/floor/wood,/area/crew_quarters/fitness) +"ahT" = (/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/light{dir = 1},/obj/item/storage/bag/plants,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"ahU" = (/obj/machinery/vending/wardrobe/chef_wardrobe,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"ahV" = (/obj/structure/closet/lasertag/red,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"ahW" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/light{dir = 1},/turf/open/floor/wood,/area/crew_quarters/fitness) +"ahX" = (/obj/machinery/deepfryer,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"ahY" = (/obj/machinery/vending/autodrobe,/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown) +"ahZ" = (/obj/structure/table/glass,/obj/item/storage/toolbox/emergency{pixel_y = 4},/obj/item/radio/off,/obj/machinery/camera{c_tag = "Arrival Shuttle Hallway"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/hallway/secondary/entry) +"aia" = (/obj/effect/landmark/start/cook,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"aib" = (/obj/structure/table/glass,/obj/machinery/light{dir = 1},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/hallway/secondary/entry) +"aic" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) +"aid" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/cotton,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison) +"aie" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"aif" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"aig" = (/obj/machinery/camera{c_tag = "Observatory Holodeck"; dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"aih" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"aii" = (/obj/structure/closet,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/gps,/turf/open/floor/plasteel,/area/storage/tools) +"aij" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"aik" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"ail" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"aim" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore) +"ain" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/processing) +"aio" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) +"aip" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/port/fore) +"aiq" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space/basic,/area/solar/port) +"air" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stock_parts/cell/high/plus,/obj/item/stack/cable_coil/red{pixel_x = 3; pixel_y = 2},/obj/item/stack/cable_coil/red,/obj/item/screwdriver,/obj/item/multitool{pixel_x = -6; pixel_y = -2},/turf/open/floor/plasteel,/area/storage/tools) +"ais" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/security/processing) +"ait" = (/obj/machinery/vending/dinnerware,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"aiu" = (/obj/effect/landmark/start/mime,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/checker,/area/crew_quarters/theatre/mime) +"aiv" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aiw" = (/obj/machinery/vending/cola/random,/turf/open/floor/wood,/area/crew_quarters/fitness) +"aix" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/crew_quarters/kitchen) +"aiy" = (/obj/structure/bed,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/landmark/start/clown,/obj/item/bedsheet/clown,/obj/structure/sign/plaques/kiddie/perfect_man{pixel_y = 32},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown) +"aiz" = (/turf/closed/wall,/area/maintenance/starboard/fore) +"aiA" = (/obj/machinery/light_switch{pixel_x = -24},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction) +"aiB" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/kitchen"; name = "Kitchen APC"; pixel_y = -26},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"aiC" = (/turf/closed/wall,/area/hallway/secondary/service) +"aiD" = (/obj/structure/closet/crate/wooden/toy,/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Clown's Office"; pixel_x = 22},/obj/item/clothing/under/rank/civilian/clown/yellow,/obj/item/clothing/under/rank/civilian/clown/blue,/obj/item/clothing/under/rank/civilian/clown/green,/obj/item/toy/crayon/spraycan/lubecan,/obj/item/megaphone/clown,/turf/open/floor/plating,/area/crew_quarters/theatre/clown) +"aiE" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel,/area/security/processing) +"aiF" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Starboard Bow Maintenance"; req_one_access_txt = "12;25;26;28;35;46"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"aiG" = (/obj/structure/closet,/obj/structure/window/reinforced,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/security/processing) +"aiH" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/grass,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison) +"aiI" = (/obj/structure/closet/boxinggloves,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"aiJ" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry) +"aiK" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/bot,/obj/structure/closet/secure_closet/genpop,/turf/open/floor/plasteel,/area/security/brig) +"aiL" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/prison) +"aiM" = (/turf/closed/wall/r_wall,/area/crew_quarters/observatory) +"aiN" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/port) +"aiO" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/solars/port) +"aiP" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/solars/port) +"aiQ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/wood,/area/crew_quarters/fitness) +"aiR" = (/obj/structure/rack,/obj/item/reagent_containers/glass/beaker/waterbottle,/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/fitness) +"aiS" = (/obj/item/kirbyplants{icon_state = "plant-06"},/turf/open/floor/wood,/area/crew_quarters/fitness) +"aiT" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Port Bow Maintainance"; req_one_access_txt = "1"},/turf/open/floor/plating,/area/maintenance/port/fore) +"aiU" = (/obj/structure/disposalpipe/segment,/obj/machinery/deepfryer,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"aiV" = (/obj/item/stack/tile/plasteel{pixel_x = 10; pixel_y = 4},/turf/open/floor/plating,/area/construction) +"aiW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Observatory"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) +"aiX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/crew_quarters/observatory) +"aiY" = (/obj/structure/toilet{dir = 4},/obj/structure/window/reinforced/tinted{dir = 1},/obj/machinery/door/window/eastright{name = "Bathroom Stall"},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) +"aiZ" = (/turf/open/floor/plasteel,/area/crew_quarters/observatory) +"aja" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/caution,/turf/open/floor/plating,/area/construction) +"ajb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"ajc" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space/basic,/area/solar/port) +"ajd" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"aje" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"ajf" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore) +"ajg" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = -24},/obj/item/reagent_containers/food/snacks/pie/cream,/obj/item/instrument/bikehorn,/obj/item/flashlight/lamp/bananalamp{pixel_y = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown) +"ajh" = (/obj/structure/table/glass,/obj/item/paper_bin/construction,/obj/item/storage/crayons,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/hallway/secondary/entry) +"aji" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"ajj" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"ajk" = (/obj/effect/landmark/start/clown,/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown) +"ajl" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/mob/living/simple_animal/cockroach,/turf/open/floor/plating,/area/maintenance/starboard/fore) +"ajm" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/washing_machine,/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) +"ajn" = (/obj/machinery/power/smes,/turf/open/floor/plating,/area/tcommsat/computer) +"ajo" = (/obj/structure/table,/obj/item/toy/dummy,/obj/structure/mirror{pixel_x = -24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/checker,/area/crew_quarters/theatre/mime) +"ajp" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/observatory) +"ajq" = (/obj/effect/landmark/start/clown,/obj/structure/cable{icon_state = "0-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/power/apc{areastring = "/area/crew_quarters/theatre/clown"; dir = 4; name = "Clown's Office APC"; pixel_x = 24},/turf/open/floor/plating,/area/crew_quarters/theatre/clown) +"ajr" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/observatory) +"ajs" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/mint,/obj/item/reagent_containers/food/condiment/mayonnaise,/obj/item/bikehorn{pixel_x = -8; pixel_y = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"ajt" = (/obj/machinery/atmospherics/components/binary/valve,/turf/open/floor/plating,/area/tcommsat/computer) +"aju" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/solars/port) +"ajv" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/theatre/mime) +"ajw" = (/turf/closed/wall,/area/construction/secondary) +"ajx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) +"ajy" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/machinery/computer/prisoner/management,/turf/open/floor/plasteel,/area/security/brig) +"ajz" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"ajA" = (/obj/effect/turf_decal/bot,/obj/structure/closet/secure_closet/genpop,/turf/open/floor/plasteel,/area/security/brig) +"ajB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Hydroponics"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/turf/open/floor/plasteel,/area/security/prison) +"ajC" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore) +"ajD" = (/obj/structure/chair/stool,/obj/effect/landmark/start/cook,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"ajE" = (/obj/structure/closet/secure_closet/freezer/kitchen,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"ajF" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/construction/secondary) +"ajG" = (/obj/machinery/computer/arcade,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"ajH" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/storage/toolbox/mechanical,/obj/item/crowbar,/obj/item/extinguisher,/turf/open/floor/plating,/area/maintenance/port/fore) +"ajI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"ajJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"ajK" = (/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"ajL" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/lounge"; name = "Lounge APC"; pixel_y = -26},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/observatory) +"ajM" = (/obj/structure/table,/obj/machinery/reagentgrinder{pixel_y = 6},/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = -8; pixel_y = 12},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = -8; pixel_y = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"ajN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/port/fore) +"ajO" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) +"ajP" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore) +"ajQ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"ajR" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/observatory) +"ajS" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) +"ajT" = (/obj/structure/weightmachine/weightlifter,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"ajU" = (/obj/structure/rack,/obj/item/wrench,/obj/item/light/tube,/obj/item/radio/off,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/cable,/obj/machinery/camera{c_tag = "Security - Interrogation Maintenance"; dir = 1},/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/security/brig"; dir = 4; name = "Brig APC"; pixel_x = 26},/turf/open/floor/plating,/area/maintenance/solars/port) +"ajV" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/crew_quarters/theatre/mime) +"ajW" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/observatory) +"ajX" = (/obj/item/pipe{pixel_x = 8; pixel_y = 2},/obj/item/melee/baseball_bat,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/camera{c_tag = "Secondary Construction Area"},/turf/open/floor/plating,/area/construction/secondary) +"ajY" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/port/fore) +"ajZ" = (/obj/item/multitool,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/tcommsat/computer"; dir = 1; name = "Telecomms Access APC"; pixel_y = 28},/turf/open/floor/plating,/area/tcommsat/computer) +"aka" = (/turf/closed/wall,/area/crew_quarters/bar) +"akb" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{name = "Mime's Office"; req_access_txt = "46"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/crew_quarters/theatre/mime) +"akc" = (/obj/machinery/computer/slot_machine,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction/secondary) +"akd" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/security/checkpoint) +"ake" = (/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/rnd/production/techfab/department/service,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"akf" = (/obj/structure/table,/obj/item/storage/toolbox/emergency{pixel_y = 4},/obj/item/electronics/firelock,/obj/item/electronics/firealarm,/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction/secondary) +"akg" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) +"akh" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction/secondary) +"aki" = (/obj/structure/closet/toolcloset,/turf/open/floor/plating,/area/construction/secondary) +"akj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external{name = "Starboard Bow Solar Exterior Airlock"; req_access_txt = "10;13"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) +"akk" = (/obj/item/stack/tile/plasteel{pixel_x = 10; pixel_y = 4},/turf/open/floor/plating,/area/construction/secondary) +"akl" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/computer/shuttle/labor{dir = 4},/turf/open/floor/plasteel,/area/security/processing) +"akm" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass,/turf/open/floor/plasteel,/area/construction/secondary) +"akn" = (/obj/machinery/power/solar_control{id = "forestarboard"; name = "Starboard Bow Solar Control"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) +"ako" = (/obj/machinery/button/flasher{id = "executionflash"; pixel_x = 7; pixel_y = 24},/obj/effect/decal/cleanable/generic,/turf/open/floor/plasteel,/area/maintenance/port/fore) +"akp" = (/obj/structure/closet/secure_closet/warden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden) +"akq" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/table/reinforced,/obj/item/storage/box/prisoner,/obj/item/razor,/obj/item/paper/guides/jobs/security/labor_camp,/obj/item/pen,/turf/open/floor/plasteel,/area/security/processing) +"akr" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/computer/prisoner/gulag_teleporter_computer{dir = 8},/obj/machinery/camera{c_tag = "Security - Prison Shuttle Dock"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/security/processing) +"aks" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden) +"akt" = (/obj/machinery/computer/prisoner/management,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Brig Control APC"; pixel_y = 24},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden) +"aku" = (/obj/machinery/computer/secure_data,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden) +"akv" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"akw" = (/obj/structure/bed,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"akx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Secondary Construction Area"; req_access_txt = "12"},/turf/open/floor/plating,/area/construction/secondary) +"aky" = (/obj/machinery/computer/crew,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden) +"akz" = (/obj/machinery/door/airlock/external,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/router/service) +"akA" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/security/warden) +"akB" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/port) +"akC" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/warning/electricshock{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/port/fore) +"akD" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/obj/item/hand_labeler{pixel_y = 4},/turf/open/floor/plasteel,/area/security/brig) +"akE" = (/turf/closed/wall/r_wall,/area/router/sec) +"akF" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"akG" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/port/fore) +"akH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"akI" = (/turf/closed/wall/r_wall,/area/tcommsat/computer) +"akJ" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Telecommunications Maintenance"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/tcommsat/computer) +"akK" = (/obj/machinery/portable_atmospherics/pump,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/port/fore) +"akL" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/camera{c_tag = "Security - Brig"; pixel_x = 22},/turf/open/floor/plasteel,/area/security/brig) +"akM" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"akN" = (/turf/open/space/basic,/area/router/aux) +"akO" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/computer/security/labor{dir = 4},/turf/open/floor/plasteel,/area/security/processing) +"akP" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor{name = "Security Router"},/turf/open/floor/plating,/area/router/sec) +"akQ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"akR" = (/obj/structure/punching_bag,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"akS" = (/obj/structure/rack,/obj/structure/window/reinforced/tinted{dir = 1},/obj/item/soap/nanotrasen,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) +"akT" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel,/area/security/processing) +"akU" = (/obj/machinery/door/window/northleft{name = "Showers"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) +"akV" = (/obj/structure/rack,/obj/structure/window/reinforced/tinted{dir = 1},/obj/item/storage/firstaid/regular,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) +"akW" = (/obj/structure/table/wood,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/reagent_containers/hypospray/medipen,/obj/item/reagent_containers/hypospray/medipen,/obj/item/reagent_containers/hypospray/medipen,/obj/item/reagent_containers/hypospray/medipen,/obj/structure/sign/departments/restroom{pixel_x = -32},/turf/open/floor/wood,/area/crew_quarters/fitness) +"akX" = (/turf/closed/wall,/area/crew_quarters/dorms/purple) +"akY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/security/warden) +"akZ" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) +"ala" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry) +"alb" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) +"alc" = (/obj/structure/fermenting_barrel,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"ald" = (/obj/machinery/chem_master/condimaster,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"ale" = (/turf/closed/wall,/area/crew_quarters/dorms/blue) +"alf" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) +"alg" = (/obj/structure/frame/machine,/obj/item/circuitboard/computer/arcade/minesweeper,/turf/open/floor/plating,/area/construction/secondary) +"alh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"ali" = (/turf/open/floor/plating,/area/construction/secondary) +"alj" = (/obj/machinery/gulag_teleporter,/turf/open/floor/plasteel,/area/security/processing) +"alk" = (/obj/item/caution,/turf/open/floor/plating,/area/construction/secondary) +"all" = (/obj/structure/table/glass,/obj/item/wrench{pixel_x = 2; pixel_y = 4},/obj/item/reagent_containers/glass/bottle/mutagen{pixel_x = -4},/turf/open/floor/grass,/area/hydroponics) +"alm" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/grass,/area/hydroponics) +"aln" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/grass,/area/hydroponics) +"alo" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) +"alp" = (/obj/machinery/washing_machine,/turf/open/floor/plasteel,/area/construction/secondary) +"alq" = (/obj/machinery/conveyor/auto{id = "sec"},/turf/open/floor/plating,/area/router/sec) +"alr" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"als" = (/obj/machinery/mass_driver{dir = 1; id = "sec_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/sec) +"alt" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external/glass{name = "Labor Camp Shuttle Airlock"; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/processing) +"alu" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port) +"alv" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Labor Camp Shuttle Airlock"; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/processing) +"alw" = (/obj/machinery/light{dir = 8},/obj/effect/landmark/start/warden,/obj/machinery/camera{c_tag = "Security - Brig Control"; dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/warden) +"alx" = (/turf/open/floor/plasteel,/area/maintenance/port/fore) +"aly" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/warden) +"alz" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"alA" = (/obj/structure/bed,/obj/item/bedsheet/purple,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) +"alB" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/port/fore) +"alC" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plating,/area/maintenance/port/fore) +"alD" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"alE" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) +"alF" = (/obj/machinery/photocopier,/obj/machinery/newscaster/security_unit{pixel_y = -28},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/paper/guides/cogstation/letter_sec,/turf/open/floor/plasteel,/area/security/warden) +"alG" = (/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating,/area/maintenance/port/fore) +"alH" = (/obj/structure/table,/obj/item/storage/box/beakers{pixel_x = -8},/obj/item/storage/box/ingredients{pixel_x = 6},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"alI" = (/obj/structure/weightmachine/stacklifter,/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"alJ" = (/obj/machinery/vending/hydroseeds,/turf/open/floor/grass,/area/hydroponics) +"alK" = (/obj/effect/landmark/xmastree,/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"alL" = (/obj/structure/weightmachine/weightlifter,/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"alM" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"alN" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fore) +"alO" = (/obj/structure/table/wood,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) +"alP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/fore) +"alQ" = (/obj/structure/dresser,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) +"alR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry) +"alS" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/reagent_containers/food/drinks/drinkingglass,/obj/item/reagent_containers/rag,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"alT" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) +"alU" = (/obj/structure/chair/stool,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"alV" = (/obj/structure/bed,/obj/item/bedsheet/blue,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) +"alW" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/security/processing) +"alX" = (/obj/structure/table,/obj/item/storage/box/ingredients,/obj/item/clothing/head/chefhat,/obj/item/reagent_containers/glass/beaker,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"alY" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/item/t_scanner,/turf/open/floor/plating,/area/construction/secondary) +"alZ" = (/turf/closed/wall/r_wall,/area/hydroponics/garden{name = "Nature Preserve"}) +"ama" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/security/warden) +"amb" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/port/fore) +"amc" = (/turf/closed/wall,/area/storage/tools) +"amd" = (/obj/structure/table,/turf/open/floor/plating,/area/maintenance/port/fore) +"ame" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/warden) +"amf" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"amg" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/security/processing) +"amh" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/table,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/recharger,/obj/item/pen/red{pixel_y = 4},/obj/item/pen/blue{pixel_x = -4; pixel_y = -4},/turf/open/floor/plasteel,/area/security/brig) +"ami" = (/obj/structure/sign/poster/contraband/grey_tide{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/port/fore) +"amj" = (/turf/closed/wall/rust,/area/maintenance/port/fore) +"amk" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/maintenance/port/fore) +"aml" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"amm" = (/obj/structure/closet/crate/secure/weapon{desc = "A secure clothing crate."; name = "formal uniform crate"; req_access_txt = "3"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/warden) +"amn" = (/obj/structure/cable{icon_state = "2-4"},/mob/living/simple_animal/mouse/brown,/turf/open/floor/plating,/area/construction/secondary) +"amo" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"amp" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Fore Maintenance"; req_one_access_txt = "12;46"},/turf/open/floor/plating,/area/maintenance/fore) +"amq" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/maintenance/solars/port) +"amr" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Starboard Bow Maintenance"; req_one_access_txt = "12;25;26;28;35;46"},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"ams" = (/obj/machinery/camera{c_tag = "Fitness Toilets"; pixel_x = 22},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) +"amt" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"amu" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"amv" = (/obj/structure/punching_bag,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"amw" = (/obj/structure/sign/poster/contraband/eat{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"amx" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"amy" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/bar) +"amz" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"amA" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"amB" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/warden) +"amC" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"amD" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"amE" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/cable,/obj/machinery/power/apc/highcap/five_k{areastring = "/area/crew_quarters/bar"; dir = 8; name = "Bar APC"; pixel_x = -26},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"amF" = (/obj/effect/landmark/start/cook,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -30},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"amG" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/chapel/main) +"amH" = (/obj/item/crowbar/large{pixel_y = 3},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/construction/secondary) +"amI" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/warden,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/warden) +"amJ" = (/obj/structure/lattice,/obj/structure/sign/departments/botany{pixel_x = -32},/turf/open/space/basic,/area/space/nearstation) +"amK" = (/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"amL" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/service) +"amM" = (/obj/machinery/light,/obj/machinery/disposal/bin{name = "Kitchen Mailbox"},/obj/effect/turf_decal/delivery/white,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"amN" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/storage/tools) +"amO" = (/obj/item/bedsheet/mime,/obj/structure/bed,/obj/effect/landmark/start/mime,/obj/machinery/camera{c_tag = "Mime's Office"; pixel_x = 22},/turf/open/floor/plasteel/checker,/area/crew_quarters/theatre/mime) +"amP" = (/obj/effect/landmark/start/assistant,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/hallway/secondary/entry) +"amQ" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{name = "Reception Window"},/obj/machinery/door/window/westleft{name = "Warden's Desk"; req_one_access_txt = "2"},/obj/item/paper_bin,/obj/item/pen,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/warden) +"amR" = (/obj/machinery/light/small,/obj/machinery/light_switch{pixel_y = -24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/construction/secondary) +"amS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/port/fore) +"amT" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plating,/area/construction/secondary) +"amU" = (/obj/structure/beebox,/obj/item/queen_bee/bought,/turf/open/floor/grass,/area/hydroponics) +"amV" = (/turf/open/floor/grass,/area/hydroponics) +"amW" = (/obj/structure/table/glass,/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 6},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 4},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = -4; pixel_y = 2},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = -4},/obj/item/book/manual/hydroponics_pod_people{pixel_x = 4; pixel_y = 4},/obj/item/paper/guides/jobs/hydroponics{pixel_x = 4; pixel_y = 4},/turf/open/floor/grass,/area/hydroponics) +"amX" = (/obj/machinery/suit_storage_unit/security,/turf/open/floor/plasteel/dark,/area/security/processing) +"amY" = (/turf/closed/wall,/area/chapel/main) +"amZ" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"ana" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"anb" = (/obj/structure/table,/obj/item/lipstick/black,/obj/item/lipstick/random{pixel_x = 2; pixel_y = 4},/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/theatre/mime) +"anc" = (/obj/item/cigbutt,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/construction/secondary) +"and" = (/turf/closed/wall/r_wall,/area/chapel/main) +"ane" = (/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) +"anf" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/construction/secondary"; dir = 1; name = "Secondary Construction Area APC"; pixel_y = 24},/turf/open/floor/plating,/area/construction/secondary) +"ang" = (/turf/closed/wall/r_wall,/area/engine/storage_shared{name = "Electrical Substation"}) +"anh" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/paper_bin,/obj/item/pen,/obj/item/clothing/glasses/regular,/obj/machinery/door/window/northright{name = "Medical Booth Desk"; req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"ani" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/poster/official/duelshotgun{pixel_y = -32},/turf/open/floor/plasteel,/area/security/brig) +"anj" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"ank" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/easel,/obj/item/canvas/nineteenXnineteen,/obj/machinery/camera{c_tag = "Crew Lounge"; dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"anl" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"anm" = (/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/disposal) +"ann" = (/obj/effect/landmark/event_spawn,/turf/open/floor/goonplaque{desc = "It reads 'In honor of spacemen past, whose work allowed this station to find its new home. The fact that you stand on a station originally built light years away is a definitive representation of the ingenuity of the human spirit.' Beneath this is the image of a spaceman rocketing upwards by means of what appears to be a match and flatulence."},/area/hallway/secondary/entry) +"ano" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore) +"anp" = (/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) +"anq" = (/turf/closed/wall,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"anr" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"ans" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/destTagger,/obj/machinery/button/door{id = "secblock"; name = "Router Access Control"; pixel_x = 8; pixel_y = 24; req_access_txt = "1"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/router/sec) +"ant" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) +"anu" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"anv" = (/obj/item/stack/sheet/plasteel{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/beakers,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plating,/area/construction) +"anw" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"anx" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/tcommsat/computer) +"any" = (/obj/structure/table/wood,/obj/item/reagent_containers/pill/patch/styptic,/obj/item/reagent_containers/pill/patch/styptic,/obj/item/reagent_containers/pill/patch/styptic,/obj/item/reagent_containers/pill/patch/styptic,/turf/open/floor/wood,/area/crew_quarters/fitness) +"anz" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"anA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Fitness Room Maintenance"; req_one_access_txt = "12;46"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/crew_quarters/fitness) +"anB" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/sign/barsign{pixel_y = 32},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"anC" = (/obj/machinery/computer/cargo/request,/obj/effect/turf_decal/delivery,/obj/machinery/requests_console{department = "Security Router"; name = "Security Router RC"; pixel_y = 32},/turf/open/floor/plasteel,/area/router/sec) +"anD" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry) +"anE" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"anF" = (/obj/machinery/smartfridge,/turf/closed/wall,/area/crew_quarters/kitchen) +"anG" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore) +"anH" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/security{name = "Security Checkpoint"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/security/checkpoint) +"anI" = (/obj/machinery/computer/arcade/orion_trail,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"anJ" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/item/paper_bin,/obj/item/stamp/denied{pixel_x = 8; pixel_y = 8},/obj/item/stamp{pixel_x = 6; pixel_y = 4},/obj/item/pen,/obj/machinery/power/apc{areastring = "/area/security/checkpoint"; dir = 4; name = "Security Checkpoint APC"; pixel_x = 24},/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -32},/turf/open/floor/plasteel,/area/security/checkpoint) +"anK" = (/turf/closed/wall/r_wall,/area/security/detectives_office) +"anL" = (/obj/machinery/computer/arcade/minesweeper,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"anM" = (/obj/machinery/recharge_station,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/storage/tools) +"anN" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/analyzer,/obj/item/wrench{pixel_y = 4},/turf/open/floor/plasteel,/area/storage/tools) +"anO" = (/obj/structure/rack,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/storage/belt/utility,/obj/item/extinguisher,/turf/open/floor/plasteel,/area/storage/tools) +"anP" = (/obj/machinery/computer/arcade,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"anQ" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"anR" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"anS" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/power/apc{areastring = "/area/storage/tools"; name = "Auxiliary Tool Storage APC"; pixel_y = -26},/obj/machinery/camera{c_tag = "Auxiliary Tool Storage"; dir = 4; pixel_y = -22},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/storage/tools) +"anT" = (/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"anU" = (/turf/closed/wall/r_wall,/area/security/brig) +"anV" = (/turf/open/floor/plating,/area/maintenance/solars/port) +"anW" = (/obj/machinery/conveyor{dir = 1; id = "sec_off"},/turf/open/floor/plating,/area/router/sec) +"anX" = (/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"anY" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) +"anZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"aoa" = (/obj/item/clockwork/component/geis_capacitor/fallen_armor,/obj/structure/table/bronze,/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) +"aob" = (/obj/structure/closet/emcloset,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/solars/port) +"aoc" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/machinery/requests_console{department = "Recreation"; name = "Recreation RC"; pixel_y = -32},/obj/item/storage/box/drinkingglasses,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -4; pixel_y = 2},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"aod" = (/obj/machinery/computer/security{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden) +"aoe" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) +"aof" = (/obj/structure/sign/poster/official/foam_force_ad{pixel_y = 32},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"aog" = (/turf/open/floor/grass,/area/hydroponics/garden{name = "Nature Preserve"}) +"aoh" = (/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"aoi" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) +"aoj" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/security/checkpoint) +"aok" = (/obj/structure/chair/wood/normal{dir = 1},/obj/machinery/button/door{id = "Dorm1"; name = "Dormitory Door Lock"; normaldoorcontrol = 1; pixel_x = -7; pixel_y = -24; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) +"aol" = (/obj/machinery/button/door{id = "Dorm3"; name = "Dormitory Door Lock"; normaldoorcontrol = 1; pixel_x = 7; pixel_y = -24; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) +"aom" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) +"aon" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) +"aoo" = (/obj/structure/rack,/obj/item/storage/toolbox/mechanical,/obj/item/clothing/ears/earmuffs,/turf/open/floor/plating{icon_state = "panelscorched"},/area/construction/secondary) +"aop" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/construction/secondary) +"aoq" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/warden) +"aor" = (/obj/machinery/shower{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) +"aos" = (/obj/structure/window/reinforced,/obj/structure/closet/athletic_mixed,/turf/open/floor/wood,/area/crew_quarters/fitness) +"aot" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/wood,/area/crew_quarters/fitness) +"aou" = (/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"aov" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/grass,/area/hydroponics) +"aow" = (/mob/living/simple_animal/banana_spider{name = "Henry"},/turf/open/floor/grass,/area/hydroponics) +"aox" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry) +"aoy" = (/obj/machinery/computer/secure_data,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/camera{c_tag = "Security Checkpoint"; pixel_x = 22},/obj/machinery/newscaster/security_unit{pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/checkpoint) +"aoz" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4; name = "4maintenance loot spawner"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/construction/secondary) +"aoA" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/door/firedoor,/obj/item/flashlight/lamp,/obj/machinery/door/window/westright{name = "Security Checkpoint"; req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/checkpoint) +"aoB" = (/obj/structure/bed,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/camera{c_tag = "Security - Prison Beds"; dir = 8; pixel_y = -22},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/security/prison"; dir = 4; name = "Prison APC"; pixel_x = 26},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"aoC" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"aoD" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint) +"aoE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/chapel/main) +"aoF" = (/turf/closed/wall/r_wall,/area/security/main) +"aoG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/checkpoint) +"aoH" = (/obj/machinery/door/airlock/external/glass{name = "Port Bow Solars External Access"; req_access_txt = "10;13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port) +"aoI" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/grass,/area/hydroponics) +"aoJ" = (/obj/machinery/firealarm{pixel_y = 26},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"aoK" = (/turf/closed/wall/r_wall,/area/router/service) +"aoL" = (/obj/structure/chair/stool,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"aoM" = (/obj/structure/closet/crate,/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/micro_laser,/obj/item/stock_parts/scanning_module,/obj/item/stock_parts/capacitor,/turf/open/floor/plating,/area/construction) +"aoN" = (/obj/structure/closet/crate/internals,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/flashlight,/obj/item/flashlight,/obj/item/tank/internals/emergency_oxygen,/obj/item/tank/internals/emergency_oxygen,/obj/item/tank/internals/emergency_oxygen,/obj/item/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = -26},/obj/item/clothing/head/hardhat/orange,/obj/item/clothing/head/hardhat/orange,/turf/open/floor/plasteel,/area/storage/tools) +"aoO" = (/turf/open/floor/plasteel,/area/storage/tools) +"aoP" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/solars/port) +"aoQ" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) +"aoR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Brig Control"; req_access_txt = "3"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/warden) +"aoS" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/conveyor{id = "serv_off"},/obj/machinery/door/poddoor{id = "servblock"; name = "Service Router"},/turf/open/floor/plating,/area/router/service) +"aoT" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor{id = "servblock"; name = "Service Router"},/turf/open/floor/plating,/area/router/service) +"aoU" = (/obj/structure/chair/stool,/obj/effect/landmark/start/assistant,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"aoV" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aoW" = (/obj/machinery/power/solar_control{dir = 4; id = "foreport"; name = "Port Bow Solar Control"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/solars/port) +"aoX" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/port/fore) +"aoY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aoZ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) +"apa" = (/obj/structure/chair/sofa/right,/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) +"apb" = (/obj/structure/reagent_dispensers/water_cooler,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"apc" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/brig) +"apd" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/engine/storage_shared{name = "Electrical Substation"}) +"ape" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/port/fore) +"apf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"apg" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/router/sec) +"aph" = (/turf/open/floor/plasteel/dark,/area/security/brig) +"api" = (/obj/machinery/door/window/southright{name = "Weightroom"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"apj" = (/obj/structure/window/reinforced,/obj/structure/punching_bag,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"apk" = (/obj/structure/closet/lasertag/blue,/turf/open/floor/wood,/area/crew_quarters/fitness) +"apl" = (/obj/structure/chair/sofa/right,/obj/item/clothing/head/beret/black,/turf/open/floor/wood,/area/crew_quarters/fitness) +"apm" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1},/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) +"apn" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/router/sec) +"apo" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/construction) +"app" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/router/sec) +"apq" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/hallway/secondary/entry) +"apr" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/button/massdriver{id = "sec_out"; pixel_x = 24; pixel_y = 24},/turf/open/floor/plasteel,/area/router/sec) +"aps" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/security{name = "Security EVA Prep Room"; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/processing) +"apt" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction) +"apu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig) +"apv" = (/turf/closed/wall,/area/hallway/secondary/entry) +"apw" = (/obj/structure/chair/sofa/left,/obj/effect/landmark/start/assistant,/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) +"apx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) +"apy" = (/obj/machinery/vr_sleeper{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"apz" = (/obj/machinery/vr_sleeper{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"apA" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/crew_quarters/dorms/purple) +"apB" = (/obj/structure/flora/tree/jungle/small,/turf/open/floor/grass,/area/hydroponics/garden{name = "Nature Preserve"}) +"apC" = (/turf/closed/wall/r_wall,/area/hydroponics) +"apD" = (/obj/machinery/door/airlock{id_tag = "Dorm1"; name = "Room 1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) +"apE" = (/obj/machinery/biogenerator,/turf/open/floor/grass,/area/hydroponics) +"apF" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"apG" = (/mob/living/simple_animal/chicken{name = "Featherbottom"; real_name = "Featherbottom"},/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) +"apH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/security/main) +"apI" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"apJ" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green,/obj/machinery/camera{c_tag = "Hydroponics - Fore"; dir = 1},/turf/open/floor/plasteel,/area/hydroponics) +"apK" = (/obj/structure/reagent_dispensers/watertank/high,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -30},/obj/item/reagent_containers/glass/bucket,/turf/open/floor/grass,/area/hydroponics) +"apL" = (/obj/structure/chair/sofa/left,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) +"apM" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) +"apN" = (/obj/machinery/door/airlock{id_tag = "Dorm3"; name = "Room 3"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) +"apO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/crew_quarters/dorms/blue) +"apP" = (/obj/structure/table,/obj/item/radio/intercom{name = "Station Intercom (Common)"},/turf/open/floor/wood,/area/crew_quarters/fitness) +"apQ" = (/obj/machinery/door/airlock/security/glass{name = "Solitary Confinement"; req_one_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"apR" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = 1; pixel_y = 3},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = -5; pixel_y = 7},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"apS" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/solars/port) +"apT" = (/obj/machinery/light/small,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction) +"apU" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/gun/ballistic/revolver/russian,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"apV" = (/turf/closed/wall/rust,/area/chapel/main) +"apW" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/crew_quarters/kitchen) +"apX" = (/obj/structure/fermenting_barrel,/turf/open/floor/grass,/area/hydroponics) +"apY" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/port/fore) +"apZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Fitness Toilets"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) +"aqa" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aqb" = (/obj/machinery/door/firedoor,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Secondary Construction Area"; req_access_txt = "12"},/turf/open/floor/plating,/area/construction/secondary) +"aqc" = (/obj/structure/sign/departments/medbay/alt,/turf/closed/wall/r_wall,/area/medical{name = "Medical Booth"}) +"aqd" = (/obj/structure/chair/sofa/right,/obj/machinery/camera{c_tag = "Chapel - Fore"},/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) +"aqe" = (/obj/machinery/conveyor{id = "serv_off"},/turf/open/floor/plating,/area/router/service) +"aqf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aqg" = (/obj/structure/chair{dir = 8},/obj/machinery/camera{c_tag = "Fitness Room"; dir = 8; pixel_y = -22},/turf/open/floor/wood,/area/crew_quarters/fitness) +"aqh" = (/obj/structure/chair/sofa/left,/turf/open/floor/wood,/area/crew_quarters/fitness) +"aqi" = (/obj/structure/table,/obj/item/clipboard,/obj/item/paper_bin{pixel_x = 2; pixel_y = 4},/obj/item/pen,/turf/open/floor/wood,/area/crew_quarters/fitness) +"aqj" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aqk" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 10},/turf/open/space/basic,/area/space/nearstation) +"aql" = (/turf/closed/wall/r_wall,/area/crew_quarters/bar) +"aqm" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aqn" = (/turf/closed/wall/r_wall,/area/medical{name = "Medical Booth"}) +"aqo" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"aqp" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) +"aqq" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/storage/tools) +"aqr" = (/obj/structure/chair/stool,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/storage/tools) +"aqs" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore) +"aqt" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/modular_computer/laptop/preset/civilian,/obj/structure/sign/poster/contraband/hacking_guide{pixel_x = 32},/turf/open/floor/plasteel,/area/storage/tools) +"aqu" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore) +"aqv" = (/obj/structure/sign/poster/official/no_erp{pixel_x = 32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) +"aqw" = (/turf/closed/wall/r_wall/rust,/area/maintenance/solars/port) +"aqx" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) +"aqy" = (/obj/machinery/mass_driver{dir = 1; id = "serv_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/service) +"aqz" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/brig) +"aqA" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space/basic,/area/solar/starboard/aft) +"aqB" = (/turf/closed/wall,/area/hydroponics) +"aqC" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/hydroponics) +"aqD" = (/obj/machinery/vending/sustenance,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"aqE" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light_switch{pixel_y = -24},/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/router/sec) +"aqF" = (/turf/open/floor/plasteel,/area/router/sec) +"aqG" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness) +"aqH" = (/obj/machinery/power/apc{name = "Security Router APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel,/area/router/sec) +"aqI" = (/obj/structure/flora/ausbushes/genericbush,/turf/open/floor/grass,/area/hydroponics) +"aqJ" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/router/sec) +"aqK" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"aqL" = (/turf/closed/wall,/area/security/checkpoint) +"aqM" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/port) +"aqN" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock{name = "Service Hallway"; req_one_access_txt = "25;26;28;35"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/hallway/secondary/service) +"aqO" = (/obj/machinery/door/airlock/engineering{name = "Engineering EVA"; req_access_txt = "11"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"aqP" = (/obj/structure/chair/stool,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"aqQ" = (/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) +"aqR" = (/obj/item/grown/bananapeel,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown) +"aqS" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"aqT" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"aqU" = (/turf/closed/wall/r_wall,/area/engine/storage{name = "Canister Storage"}) +"aqV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Purple Dorms Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/dorms/purple) +"aqW" = (/obj/structure/table,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/book/manual/chef_recipes,/obj/item/storage/box/donkpockets,/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"aqX" = (/obj/structure/sign/warning/fire{desc = "A sign that states the labeled room's number."; icon_state = "roomnum"; name = "Room Number 1"; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) +"aqY" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel,/area/security/brig) +"aqZ" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar) +"ara" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"arb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/barbershop"; dir = 4; name = "Barbershop APC"; pixel_x = 24},/turf/open/floor/plating,/area/maintenance/port/fore) +"arc" = (/obj/structure/closet/secure_closet/freezer/cream_pie,/obj/item/toy/figure/clown,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown) +"ard" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"are" = (/obj/machinery/chem_heater,/obj/effect/turf_decal/stripes/end{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"arf" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) +"arg" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"arh" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) +"ari" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/processing) +"arj" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/dorms/purple) +"ark" = (/turf/open/floor/plasteel,/area/crew_quarters/locker) +"arl" = (/obj/machinery/vending/kink,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/camera{c_tag = "Locker Room"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"arm" = (/obj/structure/chair/sofa/right,/obj/effect/landmark/start/assistant,/turf/open/floor/wood,/area/crew_quarters/fitness) +"arn" = (/obj/machinery/vending/tool,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/storage/tools) +"aro" = (/obj/structure/closet/firecloset,/obj/machinery/camera{c_tag = "Starboard Bow Maintenance - Starboard"; dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"arp" = (/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/disposal) +"arq" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"arr" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/structure/chair{dir = 8},/turf/open/floor/plating,/area/maintenance/solars/port) +"ars" = (/obj/structure/chair/stool,/obj/machinery/firealarm{pixel_y = 26},/obj/effect/landmark/start/bartender,/obj/item/clothing/under/costume/maid,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) +"art" = (/obj/structure/punching_bag,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"aru" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/dorms/blue) +"arv" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian{pixel_x = 1; pixel_y = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) +"arw" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/public/glass{name = "Crew Quarters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"arx" = (/obj/machinery/button/door{id = "kitchenlock"; name = "Kitchen Lockup"; pixel_x = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"ary" = (/obj/machinery/food_cart,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"arz" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) +"arA" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) +"arB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"arC" = (/obj/structure/sign/warning/fire{desc = "A sign that states the labeled room's number."; dir = 4; icon_state = "roomnum"; name = "Room Number 3"; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) +"arD" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 8; icon_state = "intact"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Blue Dorms Maintenance"; req_one_access_txt = "12;46"},/turf/open/floor/plating,/area/crew_quarters/dorms/blue) +"arE" = (/turf/closed/wall/r_wall,/area/maintenance/starboard/central) +"arF" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "hot loop to space"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"arG" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"arH" = (/obj/machinery/disposal/bin{name = "Detective's Mailbox"},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/delivery/white,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"arI" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/crew_quarters/fitness) +"arJ" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"arK" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/delivery,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/item/destTagger,/obj/machinery/button/massdriver{id = "serv_out"; pixel_x = 8; pixel_y = -4},/obj/machinery/requests_console{department = "Service Router"; name = "Service Router RC"; pixel_y = 28},/turf/open/floor/plasteel,/area/router/service) +"arL" = (/obj/machinery/conveyor{dir = 1; id = "serv_off"},/turf/open/floor/plating,/area/router/service) +"arM" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/router/service) +"arN" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "gas to sauna"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"arO" = (/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"arP" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"arQ" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"arR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/falsewall/reinforced{req_access_txt = "1"},/turf/open/floor/plasteel,/area/router/sec) +"arS" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/crew_quarters/dorms/purple) +"arT" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) +"arU" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/sign/warning/fire{desc = "A sign that states the labeled room's number."; dir = 1; icon_state = "roomnum"; name = "Room Number 2"; pixel_y = -28},/obj/machinery/camera{c_tag = "Dormitories - Purple"; dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) +"arV" = (/obj/machinery/vr_sleeper{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/sign/poster/official/soft_cap_pop_art{pixel_x = -32},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"arW" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"arX" = (/obj/machinery/computer/med_data{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"arY" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"arZ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) +"asa" = (/obj/machinery/computer/arcade,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"asb" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) +"asc" = (/obj/machinery/disposal/bin,/obj/machinery/firealarm{pixel_y = 26},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"asd" = (/turf/closed/wall/rust,/area/maintenance/starboard/fore) +"ase" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Purple Dorms"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms/purple) +"asf" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Blue Dorms"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms/blue) +"asg" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) +"ash" = (/obj/machinery/light_switch{pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) +"asi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"asj" = (/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"ask" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Security - Prison Fore"; dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/mob/living/simple_animal/mouse/brown/Tom,/turf/open/floor/plasteel,/area/security/prison) +"asl" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external/glass{name = "Port Bow Solars External Access"; req_access_txt = "10;13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/maintenance/solars/port) +"asm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/hallway/secondary/service"; dir = 8; name = "Service Hall APC"; pixel_x = -24},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"asn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) +"aso" = (/obj/structure/sign/warning/fire{desc = "A sign that states the labeled room's number."; dir = 8; icon_state = "roomnum"; name = "Room Number 4"; pixel_y = -28},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Dormitories - Blue"; dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) +"asp" = (/obj/structure/chair/comfy/brown,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/bar) +"asq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/crew_quarters/dorms/blue) +"asr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/fore) +"ass" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/light/small,/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/starboard/fore) +"ast" = (/obj/effect/turf_decal/delivery,/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) +"asu" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/rust,/area/maintenance/disposal) +"asv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"asw" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"asx" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"asy" = (/obj/effect/landmark/start/assistant,/obj/machinery/holopad,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/hallway/secondary/entry) +"asz" = (/obj/structure/toilet{dir = 4},/obj/machinery/camera{c_tag = "Security - Prison Bathroom"; dir = 4},/turf/open/floor/plasteel/freezer,/area/security/prison) +"asA" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/turf/open/floor/plating,/area/router/service) +"asB" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 5},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"asC" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"asD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"asE" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/button/door{id = "servblock"; name = "Router Access Control"; pixel_x = 8; pixel_y = 24; req_one_access_txt = "12;25;26;28;35;46"},/turf/open/floor/plasteel,/area/router/service) +"asF" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/security{name = "Labor Camp Arrivals"},/turf/open/floor/plasteel,/area/security/processing) +"asG" = (/obj/structure/sign/warning/nosmoking/circle,/turf/closed/wall/r_wall,/area/engine/storage{name = "Canister Storage"}) +"asH" = (/obj/machinery/camera{c_tag = "Port Bow Solar Maintenance"; dir = 1},/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/obj/structure/sign/warning/electricshock{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/solars/port) +"asI" = (/obj/effect/turf_decal/delivery,/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) +"asJ" = (/turf/closed/wall,/area/crew_quarters/toilet) +"asK" = (/obj/machinery/vr_sleeper{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"asL" = (/turf/closed/wall,/area/security/brig) +"asM" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/storage{name = "Canister Storage"}) +"asN" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"asO" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) +"asP" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"asQ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/router/service) +"asR" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"asS" = (/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"asT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/mob/living/simple_animal/mouse/gray{desc = "A strangely observant rodent."; name = "Remy"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"asU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engineering Router"; req_access_txt = "11"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"asV" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) +"asW" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/security/main) +"asX" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/table/reinforced,/obj/item/tape,/obj/item/radio/off,/turf/open/floor/plasteel/dark,/area/security/brig) +"asY" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/item/clipboard,/turf/open/floor/plasteel/dark,/area/security/brig) +"asZ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/router/service) +"ata" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/main) +"atb" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"atc" = (/turf/closed/wall,/area/security/main) +"atd" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Service Router APC"; pixel_y = 24},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/router/service) +"ate" = (/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/router/service) +"atf" = (/turf/closed/wall/r_wall/rust,/area/maintenance/starboard/central) +"atg" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/dark,/area/router/service) +"ath" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/router/service) +"ati" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external,/turf/open/floor/plasteel,/area/router/service) +"atj" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/security/brig) +"atk" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/assistant,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/wood,/area/crew_quarters/fitness) +"atl" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/router/service) +"atm" = (/obj/structure/table,/obj/item/kitchen/rollingpin,/obj/item/reagent_containers/food/condiment/enzyme,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"atn" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plating,/area/maintenance/solars/port) +"ato" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"atp" = (/obj/machinery/door/airlock{id_tag = "Dorm2"; name = "Room 2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) +"atq" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/processing) +"atr" = (/obj/machinery/door/airlock{id_tag = "Dorm4"; name = "Room 4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) +"ats" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/maintenance_hatch{name = "Clown's Office"; req_access_txt = "46"},/turf/open/floor/plating,/area/crew_quarters/theatre/clown) +"att" = (/turf/open/floor/plating,/area/maintenance/starboard/central) +"atu" = (/obj/machinery/computer/cargo/request{dir = 4},/turf/open/floor/plating,/area/router/service) +"atv" = (/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port) +"atw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/router/service) +"atx" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/router/service) +"aty" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/router/service) +"atz" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/security/main) +"atA" = (/obj/machinery/vending/cigarette,/turf/open/floor/wood,/area/crew_quarters/fitness) +"atB" = (/obj/machinery/shower{dir = 4},/obj/item/bikehorn/rubberducky,/obj/structure/sign/poster/official/no_erp{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) +"atC" = (/obj/machinery/holopad,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"atD" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router/service) +"atE" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/router/service) +"atF" = (/turf/closed/wall/r_wall,/area/engine/gravity_generator) +"atG" = (/turf/open/floor/plasteel/dark,/area/router/service) +"atH" = (/obj/structure/tank_dispenser/oxygen,/obj/machinery/power/apc{areastring = "/area/security/processing"; name = "Labor Shuttle Dock APC"; pixel_y = -26},/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/security/processing) +"atI" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/warden) +"atJ" = (/turf/closed/wall/rust,/area/crew_quarters/theatre/clown) +"atK" = (/obj/structure/chair{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/wood,/area/crew_quarters/fitness) +"atL" = (/obj/structure/chair{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/wood,/area/crew_quarters/fitness) +"atM" = (/obj/structure/chair{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness) +"atN" = (/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) +"atO" = (/obj/structure/table,/obj/item/storage/bag/tray,/obj/item/clothing/gloves/color/white,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/item/paper/guides/cogstation/cooks,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"atP" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/reagent_containers/food/drinks/drinkingglass,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"atQ" = (/obj/structure/closet/lasertag/red,/obj/structure/sign/poster/official/space_cops{pixel_x = -32},/turf/open/floor/wood,/area/crew_quarters/fitness) +"atR" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/vending/wardrobe/bar_wardrobe,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) +"atS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Bar Backroom"; req_access_txt = "25"},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) +"atT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) +"atU" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/security/brig) +"atV" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"atW" = (/obj/machinery/disposal/bin{name = "Parolee Exit"},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/brig) +"atX" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/stock_parts/cell/high/plus,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/storage/tools) +"atY" = (/obj/machinery/button/door{id = "Dorm2"; name = "Dormitory Door Lock"; normaldoorcontrol = 1; pixel_x = -7; pixel_y = 24; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/landmark/xeno_spawn,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) +"atZ" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/closed/wall,/area/hallway/secondary/entry) +"aua" = (/obj/structure/chair/wood/normal,/obj/machinery/button/door{id = "Dorm4"; name = "Dormitory Door Lock"; normaldoorcontrol = 1; pixel_x = 7; pixel_y = 24; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) +"aub" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) +"auc" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aud" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) +"aue" = (/obj/structure/closet/crate/hydroponics,/obj/item/seeds/random,/turf/open/floor/plating,/area/router/service) +"auf" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/service) +"aug" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/table/glass,/obj/item/storage/bag/plants,/turf/open/floor/plasteel,/area/hydroponics) +"auh" = (/obj/structure/table/wood,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/storage/box/dice,/obj/item/toy/cards/deck,/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aui" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Freezer AC Pump"},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) +"auj" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/router/service) +"auk" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/service) +"aul" = (/obj/structure/cable{icon_state = "4-8"},/mob/living/simple_animal/mouse/brown{name = "Chewy"},/turf/open/floor/plating,/area/hallway/secondary/service) +"aum" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/service) +"aun" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/vending/hydronutrients,/turf/open/floor/plasteel,/area/hydroponics) +"auo" = (/obj/machinery/light{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/table/glass,/obj/machinery/reagentgrinder{pixel_y = 6},/turf/open/floor/plasteel,/area/hydroponics) +"aup" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/structure/table/glass,/obj/item/reagent_containers/glass/bucket{pixel_y = 4},/turf/open/floor/plasteel,/area/hydroponics) +"auq" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/router/service) +"aur" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/router/service) +"aus" = (/turf/open/floor/engine,/area/engine/gravity_generator) +"aut" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"auu" = (/obj/effect/landmark/start/botanist,/turf/open/floor/plasteel/dark,/area/router/service) +"auv" = (/obj/structure/bed,/obj/item/bedsheet/purple,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) +"auw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"aux" = (/obj/machinery/light/small,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) +"auy" = (/turf/open/floor/plasteel,/area/hydroponics) +"auz" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/chem_master,/turf/open/floor/plasteel,/area/hydroponics) +"auA" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/beacon,/turf/open/floor/plasteel,/area/hydroponics) +"auB" = (/obj/structure/dresser,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) +"auC" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"auD" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"auE" = (/obj/structure/bed,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"auF" = (/obj/structure/table/wood,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) +"auG" = (/obj/machinery/light/small,/obj/effect/landmark/event_spawn,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) +"auH" = (/obj/structure/girder/displaced,/obj/item/reagent_containers/rag,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/fore) +"auI" = (/obj/structure/closet/secure_closet/brig,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"auJ" = (/obj/structure/bed,/obj/item/bedsheet/blue,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) +"auK" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/security/brig) +"auL" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plating,/area/maintenance/solars/port) +"auM" = (/obj/machinery/door/firedoor,/obj/structure/sign/poster/official/bless_this_spess{pixel_x = -32},/obj/machinery/door/airlock/public/glass,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"auN" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"auO" = (/obj/structure/closet/crate/freezer,/turf/open/floor/plating,/area/router/service) +"auP" = (/obj/structure/chair/sofa/right,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/landmark/start/assistant/override,/turf/open/floor/plasteel,/area/security/main) +"auQ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/public/glass,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"auR" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/power/apc{areastring = "/area/engine/secure_construction"; dir = 1; name = "Engineering Construction Area APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"auS" = (/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) +"auT" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"auU" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/left,/area/router/service) +"auV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"auW" = (/obj/structure/chair/sofa/left,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/sign/poster/official/the_owl{pixel_y = 32},/turf/open/floor/plasteel,/area/security/main) +"auX" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/stairs/right,/area/router/service) +"auY" = (/obj/machinery/firealarm{pixel_y = 26},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"auZ" = (/obj/structure/disposalpipe/junction/flip,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore) +"ava" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/router/service) +"avb" = (/turf/closed/wall,/area/hallway/secondary/civilian) +"avc" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"avd" = (/obj/structure/sign/warning{name = "\improper COLD TEMPERATURES"; pixel_x = 32},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"ave" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) +"avf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Starboard Bow Maintenance"; req_one_access_txt = "12;25;26;28;35;46"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/hallway/secondary/civilian) +"avg" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/turnstile{name = "Genpop Entrance Turnstile"; icon_state = "turnstile_map"; dir = 8; req_access_txt = "69"},/turf/open/floor/plasteel,/area/security/prison) +"avh" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/storage/tools) +"avi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance/abandoned{name = "Port Bow Maintainance"; req_one_access_txt = "13"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/fore) +"avj" = (/obj/machinery/photocopier,/turf/open/floor/carpet/red,/area/security/brig) +"avk" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/plant_analyzer,/obj/structure/table/glass,/obj/machinery/plantgenes{pixel_y = 6},/turf/open/floor/plasteel,/area/hydroponics) +"avl" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"avm" = (/turf/closed/wall/r_wall,/area/hallway/secondary/civilian) +"avn" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/poster/official/spiderlings{pixel_x = 32},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"avo" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"avp" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/glass{name = "East Primary Hallway"; req_one_access_txt = "10;12;25;26;28;35;46"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/service) +"avq" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/glass{name = "East Primary Hallway"; req_one_access_txt = "10;12;25;26;28;35;46"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/router/service) +"avr" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space/basic,/area/solar/starboard/aft) +"avs" = (/turf/closed/wall,/area/router/service) +"avt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"avu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"avv" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plating,/area/space/nearstation) +"avw" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/structure/sign/poster/official/wtf_is_co2{pixel_x = 32},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) +"avx" = (/obj/structure/table,/obj/item/hand_labeler,/obj/item/crowbar/large,/obj/item/crowbar{pixel_x = -3; pixel_y = 3},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/router/service) +"avy" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plating,/area/space/nearstation) +"avz" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/router/service) +"avA" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"avB" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/router/service) +"avC" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4},/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"avD" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/storage/belt/utility,/obj/item/tank/internals/air,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/router/service) +"avE" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "generator to hot loop"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"avF" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/prison) +"avG" = (/turf/closed/wall,/area/security/prison) +"avH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,/obj/machinery/meter,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"avI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"avJ" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/security/main) +"avK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"avL" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/security/main) +"avM" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/security/main) +"avN" = (/turf/closed/wall,/area/crew_quarters/barbershop) +"avO" = (/obj/structure/table,/obj/structure/bedsheetbin/color,/obj/item/clothing/gloves/color/white,/obj/machinery/camera{c_tag = "Laundry Room"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) +"avP" = (/obj/structure/reagent_dispensers/keg,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"avQ" = (/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"avR" = (/obj/machinery/washing_machine,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) +"avS" = (/obj/machinery/washing_machine,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) +"avT" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar) +"avU" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"avV" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"avW" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plating,/area/maintenance/solars/port) +"avX" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) +"avY" = (/obj/machinery/newscaster/security_unit{pixel_y = 32},/obj/machinery/turretid{name = "AI Chamber turret control"; pixel_x = 5; pixel_y = -24},/obj/machinery/door/window/westleft{name = "AI Core Access"; req_access_txt = "65"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"avZ" = (/obj/effect/landmark/start/cook,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"awa" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible,/obj/machinery/meter,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"awb" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"awc" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore) +"awd" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port) +"awe" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8},/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"awf" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"awg" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Civilian Wing Hallway - Fore"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"awh" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/sign/poster/official/fruit_bowl{pixel_x = 32},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"awi" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"awj" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"awk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/port) +"awl" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/kirbyplants{icon_state = "applebush"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"awm" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/closed/wall/r_wall,/area/maintenance/solars/port) +"awn" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/machinery/ai_slipper{uses = 10},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"awo" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port) +"awp" = (/turf/closed/wall,/area/hydroponics/lobby) +"awq" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plating,/area/space/nearstation) +"awr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/maintenance/solars/port) +"aws" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/engine/storage{name = "Canister Storage"}) +"awt" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/door/firedoor,/obj/item/folder/red,/obj/machinery/door/window/westleft{name = "Security Checkpoint"; req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/checkpoint) +"awu" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plating,/area/maintenance/solars/port) +"awv" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/atmospherics/pipe/heat_exchanging/junction,/obj/structure/table,/obj/item/clothing/gloves/color/white,/obj/item/reagent_containers/spray/cleaner,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) +"aww" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"awx" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hydroponics/lobby) +"awy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Laundry Room Maintenance"; req_one_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/crew_quarters/barbershop) +"awz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) +"awA" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) +"awB" = (/obj/machinery/microwave,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark/side{dir = 4},/area/crew_quarters/bar) +"awC" = (/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) +"awD" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/storage/tools) +"awE" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/storage/tools) +"awF" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) +"awG" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"awH" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/obj/machinery/turnstile{name = "Genpop Entrance Turnstile"; icon_state = "turnstile_map"; dir = 8; req_access_txt = "69"},/turf/open/floor/plasteel,/area/security/prison) +"awI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"awJ" = (/obj/effect/turf_decal/bot,/obj/machinery/flasher/portable,/turf/open/floor/plasteel,/area/security/brig) +"awK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/port) +"awL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"awM" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/crowbar/large,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port) +"awN" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fore) +"awO" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/port/central"; dir = 1; name = "Central Port Maintenance APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/port/central) +"awP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) +"awQ" = (/obj/structure/window/plasma/reinforced{dir = 8},/obj/structure/window/reinforced/tinted,/obj/structure/table,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar,/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/turf/open/floor/plasteel,/area/security/main) +"awR" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/disposal/bin,/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"awS" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/security/main) +"awT" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 7},/turf/open/floor/plasteel,/area/security/main) +"awU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"awV" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/vending/assist,/turf/open/floor/plasteel,/area/storage/tools) +"awW" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "cold loop to space"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"awX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"awY" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/button/door{id = "solitarylock"; name = "Solitary Lockdown"; pixel_x = -24; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/brig) +"awZ" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"axa" = (/obj/machinery/light_switch{pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"axb" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"axc" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/closed/wall/r_wall,/area/maintenance/solars/port) +"axd" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"axe" = (/obj/structure/closet/crate,/obj/item/storage/belt/utility,/obj/item/clothing/glasses/meson,/turf/open/floor/plating,/area/maintenance/fore) +"axf" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/port) +"axg" = (/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/camera{c_tag = "Arcade"; dir = 4},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"axh" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/structure/sign/poster/contraband/random{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/fore) +"axi" = (/obj/structure/noticeboard{pixel_y = 28},/obj/effect/turf_decal/bot,/obj/structure/closet/secure_closet/genpop,/turf/open/floor/plasteel,/area/security/brig) +"axj" = (/obj/machinery/vr_sleeper{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"axk" = (/obj/item/storage/pill_bottle/penis_enlargement,/turf/open/floor/plasteel/freezer,/area/security/prison) +"axl" = (/obj/machinery/shower{dir = 8; pixel_y = -4},/obj/item/soap/homemade,/turf/open/floor/plasteel/freezer,/area/security/prison) +"axm" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/closed/wall,/area/security/prison) +"axn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"axo" = (/obj/structure/table,/obj/item/tape,/obj/item/wrench,/obj/item/radio/off,/turf/open/floor/plasteel,/area/security/brig) +"axp" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port) +"axq" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"axr" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"axs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"axt" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"axu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/security/brig) +"axv" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/clothing/accessory/armband/deputy,/obj/item/encryptionkey/headset_sec,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/clothing/head/cowboyhat/sec,/turf/open/floor/plasteel,/area/security/brig) +"axw" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/security/main) +"axx" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/camera{c_tag = "Fore Maintenance - Aft"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore) +"axy" = (/obj/structure/chair/stool,/obj/effect/landmark/start/botanist,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"axz" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/reagent_dispensers/peppertank{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig) +"axA" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/item/clothing/accessory/armband/science,/obj/item/encryptionkey/headset_sci,/turf/open/floor/plasteel,/area/security/brig) +"axB" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/item/clothing/accessory/armband/medblue,/obj/item/encryptionkey/headset_med,/turf/open/floor/plasteel,/area/security/brig) +"axC" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"axD" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Hydroponics Storage"; req_access_txt = "35"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"axE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/poster/contraband/kudzu{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"axF" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) +"axG" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"axH" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"axI" = (/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"axJ" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"axK" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"axL" = (/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_y = 32},/obj/item/assembly/prox_sensor,/turf/open/floor/plating,/area/maintenance/starboard/fore) +"axM" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"axN" = (/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/computer/security{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"axO" = (/obj/structure/weightmachine/stacklifter,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"axP" = (/obj/structure/chair{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"axQ" = (/obj/structure/window/reinforced/spawner/east,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"axR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"axS" = (/obj/structure/closet/crate,/obj/item/storage/box/lights/mixed,/obj/item/clothing/mask/gas,/obj/item/cane,/turf/open/floor/plating,/area/maintenance/starboard/fore) +"axT" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/storage/crayons{pixel_y = 8},/turf/open/floor/plasteel,/area/security/brig) +"axU" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"axV" = (/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) +"axW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"axX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) +"axY" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"axZ" = (/obj/machinery/requests_console{department = "AI"; departmentType = 5; pixel_y = 28},/obj/machinery/door/window/eastright{name = "AI Core Access"; req_access_txt = "65"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"aya" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating/airless,/area/space/nearstation) +"ayb" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"ayc" = (/obj/structure/kitchenspike,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) +"ayd" = (/turf/closed/wall,/area/hallway/primary/port/fore) +"aye" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space/basic,/area/space/nearstation) +"ayf" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) +"ayg" = (/obj/machinery/vending/wardrobe/hydro_wardrobe,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"ayh" = (/obj/machinery/door/airlock{name = "Bathroom"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/freezer,/area/security/prison) +"ayi" = (/obj/structure/table,/obj/item/clipboard,/obj/item/paper_bin{pixel_x = 2; pixel_y = 4},/obj/item/pen,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"ayj" = (/obj/structure/grille,/turf/open/floor/plating,/area/security/brig) +"ayk" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry) +"ayl" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"aym" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/prison) +"ayn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"ayo" = (/obj/structure/window/reinforced/spawner/west,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"ayp" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) +"ayq" = (/obj/effect/landmark/blobstart,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) +"ayr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) +"ays" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/soda_cans/space_up,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"ayt" = (/obj/structure/closet/crate,/obj/item/reagent_containers/glass/beaker/waterbottle/large/empty,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) +"ayu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/fore) +"ayv" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"ayw" = (/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Service Hallway - Fore"; dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"ayx" = (/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"ayy" = (/turf/open/floor/carpet,/area/chapel/main) +"ayz" = (/obj/structure/chair/pew/right{dir = 4},/turf/open/floor/carpet,/area/chapel/main) +"ayA" = (/obj/structure/window/reinforced,/obj/structure/destructible/cult/tome,/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) +"ayB" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"ayC" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) +"ayD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"ayE" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/hydroponics/lobby) +"ayF" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) +"ayG" = (/obj/structure/chair/comfy/brown{dir = 1},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"ayH" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/mob/living/simple_animal/cockroach,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"ayI" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"ayJ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/closed/wall/r_wall,/area/maintenance/solars/port) +"ayK" = (/obj/structure/flora/tree/jungle/small,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) +"ayL" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"ayM" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) +"ayN" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/fore) +"ayO" = (/obj/structure/window/plasma/reinforced{dir = 8},/obj/structure/window/reinforced/tinted,/obj/structure/table,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/turf/open/floor/plasteel,/area/security/main) +"ayP" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"ayQ" = (/obj/machinery/vr_sleeper{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"ayR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Prison Wing"; req_access_txt = "2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/security/brig) +"ayS" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) +"ayT" = (/obj/machinery/vending/security,/obj/structure/noticeboard{pixel_y = 28},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"ayU" = (/obj/vehicle/ridden/secway,/obj/effect/turf_decal/bot,/obj/item/key/security,/turf/open/floor/plasteel,/area/security/brig) +"ayV" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/storage/tools) +"ayW" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"ayX" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"ayY" = (/obj/machinery/vending/medical,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"ayZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aza" = (/obj/machinery/light/small{dir = 4},/obj/structure/table,/obj/item/clothing/gloves/botanic_leather,/obj/item/hand_labeler,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"azb" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) +"azc" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"azd" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/item/clothing/mask/gas,/obj/machinery/camera{c_tag = "Central Port Maintenace - Port"},/turf/open/floor/plating,/area/maintenance/port/central) +"aze" = (/obj/machinery/power/apc{dir = 1; name = "AI Chamber APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"azf" = (/obj/machinery/newscaster/security_unit{pixel_y = 32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"azg" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) +"azh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"azi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation Maintenance"; req_access_txt = "63;12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/security/brig) +"azj" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/security/brig) +"azk" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig) +"azl" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/camera{c_tag = "Security - Brig Aft"; dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/brig) +"azm" = (/obj/structure/chair/stool/bar,/turf/open/floor/carpet,/area/crew_quarters/bar) +"azn" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/security/brig) +"azo" = (/obj/structure/chair/office/light{dir = 1; pixel_y = 3},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"azp" = (/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) +"azq" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plating,/area/space/nearstation) +"azr" = (/obj/machinery/disposal/bin,/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/turf/open/floor/plasteel,/area/security/checkpoint) +"azs" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"azt" = (/obj/structure/chair/pew/right{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"azu" = (/obj/structure/chair/pew{dir = 4},/turf/open/floor/carpet,/area/chapel/main) +"azv" = (/obj/machinery/door/window/westleft{name = "Holy Driver"; req_one_access_txt = "22"},/obj/machinery/conveyor{dir = 4; id = "Holydriver"},/turf/open/floor/plating,/area/chapel/main) +"azw" = (/obj/machinery/conveyor{dir = 4; id = "Holydriver"},/turf/open/floor/plating,/area/chapel/main) +"azx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"azy" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port) +"azz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"azA" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) +"azB" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"azC" = (/obj/machinery/disposal/bin,/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) +"azD" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"azE" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"azF" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/storage/tools) +"azG" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry) +"azH" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/sign/departments/botany{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"azI" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"azJ" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"azK" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/machinery/door/window/westleft{name = "Boxing Ring"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"azL" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) +"azM" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 2},/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"azN" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/prison) +"azO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/blobstart,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"azP" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"azQ" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"azR" = (/obj/structure/closet/secure_closet/bar,/obj/structure/disposalpipe/segment,/obj/item/clothing/under/costume/maid,/obj/item/stack/spacecash/c10,/obj/item/clothing/under/suit/waiter,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) +"azS" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/closet,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/cable_coil/red{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil/red,/obj/item/wrench,/obj/item/screwdriver{pixel_y = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) +"azT" = (/obj/machinery/light,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/storage/tools) +"azU" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"azV" = (/obj/structure/kitchenspike,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) +"azW" = (/obj/effect/landmark/start/botanist,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"azX" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/tools) +"azY" = (/obj/structure/closet/secure_closet/hydroponics,/obj/structure/cable{icon_state = "0-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/power/apc{areastring = "/area/hydroponics/lobby"; dir = 4; name = "Hydroponics Lobby APC"; pixel_x = 24},/obj/item/clothing/suit/beekeeper_suit,/obj/item/melee/flyswatter,/obj/item/clothing/head/beekeeper_head,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"azZ" = (/obj/machinery/mass_driver{dir = 4; id = "chapelgun"; name = "Holy Driver"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/chapel/main) +"aAa" = (/turf/closed/wall/r_wall,/area/crew_quarters/kitchen) +"aAb" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aAc" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plating,/area/maintenance/solars/port) +"aAd" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/processing) +"aAe" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aAf" = (/obj/structure/disposalpipe/segment,/obj/structure/mineral_door/wood,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop) +"aAg" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction,/obj/machinery/gibber,/obj/machinery/camera{c_tag = "Kitchen Coldroom"; dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) +"aAh" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/easel,/obj/item/canvas/nineteenXnineteen,/obj/item/storage/crayons,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"aAi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/port) +"aAj" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aAk" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/security/main) +"aAl" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"aAm" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/door/airlock/freezer{name = "Kitchen Coldroom"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) +"aAn" = (/obj/machinery/vending/wardrobe/sec_wardrobe,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/brig) +"aAo" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/sign/poster/official/twelve_gauge{pixel_x = -32},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"aAp" = (/obj/machinery/computer/security/telescreen/entertainment,/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/bar) +"aAq" = (/obj/structure/sink{dir = 8; pixel_x = -12},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aAr" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aAs" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aAt" = (/obj/structure/rack,/obj/item/storage/toolbox/emergency,/obj/machinery/camera{c_tag = "Hydroponics Storage"; dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aAu" = (/obj/structure/closet/crate/hydroponics,/obj/effect/decal/cleanable/dirt,/obj/item/circuitboard/machine/hydroponics,/obj/item/circuitboard/machine/hydroponics,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aAv" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/vending/security,/turf/open/floor/plasteel,/area/security/brig) +"aAw" = (/obj/machinery/door/poddoor{id = "chapelgun"; name = "Chapel Launcher Door"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/chapel/main) +"aAx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore) +"aAy" = (/obj/machinery/atmospherics/components/binary/circulator{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aAz" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"aAA" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore) +"aAB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aAC" = (/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"aAD" = (/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) +"aAE" = (/obj/machinery/light_switch{pixel_y = -24},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aAF" = (/obj/structure/noticeboard{pixel_y = 28},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) +"aAG" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) +"aAH" = (/obj/structure/chair/pew{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/chapel/main) +"aAI" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"aAJ" = (/obj/structure/transit_tube/station/reverse/flipped{dir = 1},/obj/effect/turf_decal/stripes/end{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"aAK" = (/obj/structure/transit_tube/horizontal,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"aAL" = (/obj/machinery/shower{dir = 8},/obj/structure/sign/poster/official/cleanliness{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) +"aAM" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/public/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aAN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aAO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/crew_quarters/toilet) +"aAP" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/brig) +"aAQ" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/checkpoint) +"aAR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Telecomms Access Maintenance"; dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port) +"aAS" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/item/clothing/accessory/armband/engine,/obj/item/encryptionkey/headset_eng,/turf/open/floor/plasteel,/area/security/brig) +"aAT" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aAU" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aAV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"aAW" = (/obj/machinery/chem_master/condimaster{name = "BrewMaster 3000"},/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aAX" = (/turf/open/floor/carpet/red,/area/security/brig) +"aAY" = (/obj/structure/chair,/turf/open/floor/carpet/red,/area/security/brig) +"aAZ" = (/obj/structure/chair,/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/carpet/red,/area/security/brig) +"aBa" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aBb" = (/obj/machinery/light,/turf/open/floor/plasteel/dark,/area/security/brig) +"aBc" = (/obj/structure/closet/secure_closet/hydroponics,/obj/effect/decal/cleanable/dirt,/obj/item/clothing/suit/beekeeper_suit,/obj/item/melee/flyswatter,/obj/item/clothing/head/beekeeper_head,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aBd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aBe" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/brig) +"aBf" = (/obj/structure/closet{name = "Evidence Closet"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) +"aBg" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/junction,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aBh" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aBi" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aBj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/brig) +"aBk" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/crew_quarters/barbershop) +"aBl" = (/obj/structure/chair/comfy/brown,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop) +"aBm" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Dormitories"},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"aBn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aBo" = (/obj/structure/table,/obj/item/storage/pill_bottle/epinephrine,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop) +"aBp" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/computer/pod/old{density = 0; icon = 'icons/obj/airlock_machines.dmi'; icon_state = "airlock_control_standby"; id = "chapelgun"; name = "Mass Driver Controller"; pixel_x = 24},/obj/machinery/conveyor_switch/oneway{id = "Holydriver"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"aBq" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) +"aBr" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop) +"aBs" = (/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"aBt" = (/obj/structure/chair/comfy/brown,/obj/machinery/newscaster{pixel_y = 32},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop) +"aBu" = (/obj/item/flashlight/lantern,/turf/open/floor/carpet,/area/chapel/main) +"aBv" = (/obj/structure/chair/pew/left{dir = 4},/turf/open/floor/carpet,/area/chapel/main) +"aBw" = (/obj/structure/chair/comfy/brown,/obj/machinery/light{dir = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop) +"aBx" = (/obj/structure/window/plasma/reinforced{dir = 8},/obj/structure/table,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar,/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/turf/open/floor/plasteel,/area/security/main) +"aBy" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/kirbyplants{icon_state = "plant-16"},/obj/machinery/camera{c_tag = "Port Bow Hall - Central"; dir = 4; network = list("ss13","medbay")},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aBz" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fore) +"aBA" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/table,/obj/item/healthanalyzer,/obj/item/storage/hypospraykit/fire{pixel_x = -4},/obj/item/storage/hypospraykit/brute{pixel_x = 4},/obj/structure/sign/poster/official/nt_storm{pixel_x = -32},/turf/open/floor/plasteel,/area/security/brig) +"aBB" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aBC" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light,/turf/open/floor/plasteel,/area/security/main) +"aBD" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aBE" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) +"aBF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet/red,/area/security/brig) +"aBG" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/crew_quarters/bar) +"aBH" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/fore) +"aBI" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aBJ" = (/obj/effect/turf_decal/delivery,/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aBK" = (/obj/structure/table,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/security/main) +"aBL" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore) +"aBM" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/abandoned_gambling_den"; name = "Arcade APC"; pixel_y = -26},/obj/structure/cable,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) +"aBN" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/fore) +"aBO" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock{name = "Hydroponics Storage"; req_access_txt = "35"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aBP" = (/obj/machinery/light_switch{pixel_x = -24},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/wood,/area/crew_quarters/barbershop) +"aBQ" = (/turf/open/floor/wood,/area/crew_quarters/barbershop) +"aBR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/wood,/area/crew_quarters/barbershop) +"aBS" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"aBT" = (/obj/item/razor,/obj/item/toy/figure/chef{pixel_x = -6},/obj/item/toy/figure/bartender{pixel_x = 4},/obj/structure/table/wood/fancy,/turf/open/floor/carpet,/area/crew_quarters/bar) +"aBU" = (/obj/structure/window/reinforced/tinted,/obj/structure/rack,/obj/item/soap/nanotrasen,/obj/item/reagent_containers/food/drinks/bottle/vodka,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) +"aBV" = (/obj/item/flashlight/lantern,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"aBW" = (/obj/structure/window/reinforced,/obj/item/clothing/head/hardhat/cakehat,/obj/structure/table/wood/fancy,/turf/open/floor/carpet,/area/crew_quarters/bar) +"aBX" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aBY" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Security Maintenance"; dir = 1; network = list("ss13","medbay")},/turf/open/floor/plating,/area/maintenance/department/security) +"aBZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop) +"aCa" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/main) +"aCb" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/brig) +"aCc" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/clothing/accessory/armband/cargo,/obj/item/encryptionkey/headset_cargo,/turf/open/floor/plasteel,/area/security/brig) +"aCd" = (/obj/machinery/portable_atmospherics/scrubber,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/fifteen_k{areastring = /area/maintenance/solars/port; dir = 1; name = "Port Solars APC"; pixel_y = 26},/turf/open/floor/plating,/area/maintenance/solars/port) +"aCe" = (/obj/effect/spawner/structure/window,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/crew_quarters/bar) +"aCf" = (/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/tcommsat/computer) +"aCg" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/landmark/start/depsec/supply,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aCh" = (/obj/structure/mineral_door/wood{name = "Barbershop"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop) +"aCi" = (/obj/structure/closet/l3closet/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/brig) +"aCj" = (/obj/machinery/door/window/southleft{name = "Showers"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) +"aCk" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/crew_quarters/toilet/fitness) +"aCl" = (/obj/structure/closet/bombcloset/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/brig) +"aCm" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aCn" = (/obj/machinery/vending/boozeomat,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aCo" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) +"aCp" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) +"aCq" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/closed/wall,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"aCr" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/security/brig) +"aCs" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"aCt" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig) +"aCu" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/freezer,/area/security/prison) +"aCv" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) +"aCw" = (/obj/structure/window/reinforced/tinted,/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) +"aCx" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aCy" = (/obj/structure/table/wood,/obj/item/storage/book/bible,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"aCz" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aCA" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"aCB" = (/obj/structure/chair/stool/bar,/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/bar) +"aCC" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/security/prison) +"aCD" = (/obj/item/trash/plate,/obj/item/kitchen/fork,/obj/structure/table/wood/fancy,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aCE" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/button/door{id = "briglockdown"; name = "Brig Lockdown"; pixel_x = 24; req_access_txt = "2"},/obj/effect/turf_decal/arrows/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"aCF" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aCG" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"aCH" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/arrows/red{dir = 8},/obj/effect/turf_decal/arrows/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"aCI" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/door/firedoor,/obj/structure/sign/departments/botany{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aCJ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/main) +"aCK" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/security/prison) +"aCL" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/book/manual/wiki/security_space_law,/obj/item/paper/guides/cogstation/letter_sec,/turf/open/floor/carpet/red,/area/security/brig) +"aCM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster/contraband/fun_police{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/port/fore) +"aCN" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aCO" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"aCP" = (/obj/structure/chair/sofa/left,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/landmark/start/botanist,/obj/machinery/camera{c_tag = "Hydroponics Lobby"},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aCQ" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/harebell,/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) +"aCR" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/table/glass,/obj/item/modular_computer/laptop/preset/civilian{pixel_x = 1; pixel_y = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aCS" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aCT" = (/obj/machinery/disposal/bin{name = "Hydroponics Mailbox"},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/delivery/white,/obj/machinery/requests_console{department = "Hydroponics"; name = "Hydroponics RC"; pixel_y = 28},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aCU" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plating,/area/space/nearstation) +"aCV" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/tools) +"aCW" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aCX" = (/obj/effect/turf_decal/bot,/obj/effect/decal/cleanable/dirt,/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison) +"aCY" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/biogenerator,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aCZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aDa" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/crew_quarters/barbershop) +"aDb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/checkpoint) +"aDc" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Barbershop"; dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop) +"aDd" = (/obj/structure/chair/office/dark,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop) +"aDe" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/prison) +"aDf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/wood,/area/crew_quarters/barbershop) +"aDg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Central Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/central) +"aDh" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/public/glass{name = "Port Bow Primary Hallway"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aDi" = (/obj/structure/closet/secure_closet/evidence,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/main) +"aDj" = (/obj/structure/closet/wardrobe/green,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"aDk" = (/obj/structure/toilet{dir = 4},/obj/machinery/door/window/eastright{name = "Bathroom Stall"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) +"aDl" = (/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) +"aDm" = (/obj/machinery/computer/security{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/checkpoint) +"aDn" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/bridge) +"aDo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop) +"aDp" = (/obj/effect/spawner/structure/window,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/crew_quarters/barbershop) +"aDq" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aDr" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Civilian Wing Hallway"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aDs" = (/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/brig) +"aDt" = (/obj/structure/closet{name = "Evidence Closet 1"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"aDu" = (/obj/structure/closet{name = "Evidence Closet 2"},/obj/machinery/light,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"aDv" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"aDw" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aDx" = (/obj/structure/closet/crate,/obj/item/gun/ballistic/shotgun/toy/unrestricted,/obj/item/gun/ballistic/shotgun/toy/unrestricted,/obj/item/toy/gun,/obj/item/toy/sword,/obj/item/toy/sword,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"aDy" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aDz" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/sign/departments/restroom{pixel_y = 32},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"aDA" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aDB" = (/obj/structure/closet{name = "Evidence Closet 3"},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"aDC" = (/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aDD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"aDE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/port/fore) +"aDF" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/checkpoint) +"aDG" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aDH" = (/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aDI" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) +"aDJ" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aDK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aDL" = (/obj/structure/closet{name = "Evidence Closet 4"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"aDM" = (/turf/closed/wall,/area/maintenance/central) +"aDN" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/central) +"aDO" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/solars/port) +"aDP" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/security/main) +"aDQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aDR" = (/turf/open/floor/plating,/area/maintenance/central) +"aDS" = (/turf/closed/wall/r_wall,/area/crew_quarters/barbershop) +"aDT" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port) +"aDU" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/port/fore) +"aDV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/solars/port) +"aDW" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/obj/machinery/turnstile{dir = 4; name = "Genpop Exit Turnstile"; req_access_txt = "70"},/turf/open/floor/plasteel,/area/security/prison) +"aDX" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"aDY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/turf/open/floor/plasteel,/area/security/prison) +"aDZ" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/wood,/area/crew_quarters/barbershop) +"aEa" = (/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation) +"aEb" = (/obj/structure/transit_tube/crossing/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation) +"aEc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Security Office"; req_access_txt = "63"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) +"aEd" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop) +"aEe" = (/obj/structure/transit_tube/horizontal,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge) +"aEf" = (/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior - Port Bow"; dir = 1; network = list("tcomms")},/turf/open/space/basic,/area/space) +"aEg" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/hallway/secondary/service) +"aEh" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Fore Maintenance"; req_one_access_txt = "12;46"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/hallway/primary/port/fore) +"aEi" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"aEj" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main) +"aEk" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"aEl" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aEm" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/solars/port) +"aEn" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aEo" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/sign/poster/official/fashion{pixel_x = -32},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"aEp" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/solars/port) +"aEq" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aEr" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/lighter,/obj/item/clothing/glasses/sunglasses{pixel_y = 4},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aEs" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port) +"aEt" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/junction{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aEu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aEv" = (/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aEw" = (/obj/structure/chair,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) +"aEx" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aEy" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/brig) +"aEz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aEA" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aEB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aEC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aED" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/security_officer,/turf/open/floor/carpet/red,/area/security/brig) +"aEE" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison) +"aEF" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/science/circuit) +"aEG" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aEH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aEI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet,/area/chapel/main) +"aEJ" = (/obj/item/kirbyplants{icon_state = "plant-08"},/turf/open/floor/wood,/area/crew_quarters/barbershop) +"aEK" = (/obj/structure/table,/obj/item/razor,/turf/open/floor/wood,/area/crew_quarters/barbershop) +"aEL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aEM" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/poppy,/turf/open/floor/carpet,/area/chapel/main) +"aEN" = (/obj/structure/table,/obj/machinery/light,/obj/item/razor,/turf/open/floor/wood,/area/crew_quarters/barbershop) +"aEO" = (/obj/structure/table,/obj/item/clothing/accessory/pocketprotector/cosmetology,/turf/open/floor/wood,/area/crew_quarters/barbershop) +"aEP" = (/obj/item/kirbyplants,/turf/open/floor/wood,/area/crew_quarters/barbershop) +"aEQ" = (/turf/closed/wall/r_wall,/area/maintenance/central) +"aER" = (/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/bot,/obj/structure/sign/warning/nosmoking{pixel_x = -32},/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aES" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison) +"aET" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/prison) +"aEU" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore) +"aEV" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/central) +"aEW" = (/obj/structure/table,/obj/machinery/computer/libraryconsole/bookmanagement,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"aEX" = (/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 1},/obj/structure/sign/poster/official/safety_internals{pixel_y = 32},/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aEY" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/bot,/obj/machinery/firealarm{pixel_y = 26},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aEZ" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Emergency Storage APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aFa" = (/obj/structure/rack,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 10},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aFb" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aFc" = (/obj/structure/table,/obj/item/clothing/suit/toggle/owlwings,/obj/item/clothing/under/costume/owl,/obj/item/clothing/mask/gas/owl_mask,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) +"aFd" = (/obj/machinery/space_heater,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aFe" = (/obj/machinery/photocopier,/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) +"aFf" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=serv"; location = "sec1"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aFg" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aFh" = (/obj/structure/chair/pew/right{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/chapel/main) +"aFi" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=market"; location = "sec2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aFj" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hos) +"aFk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable,/turf/open/floor/plating,/area/security/checkpoint) +"aFl" = (/obj/structure/chair/sofa/right,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/light{dir = 1},/obj/item/reagent_containers/glass/bottle/diethylamine,/obj/structure/sign/poster/official/hydro_ad{pixel_x = -32},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aFm" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/heads/hos) +"aFn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"aFo" = (/obj/machinery/door/window/southleft{name = "Weightroom"},/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"aFp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Bar"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aFq" = (/obj/structure/table/wood,/obj/item/candle{pixel_x = 4},/obj/item/candle{pixel_y = 8},/turf/open/floor/carpet,/area/chapel/main) +"aFr" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aFs" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aFt" = (/obj/structure/table/glass,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aFu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fore) +"aFv" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/hallway/secondary/entry) +"aFw" = (/obj/structure/table,/obj/item/multitool,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/camera{c_tag = "Central Maintenance - Power Monitoring"; network = list("ss13","rd")},/turf/open/floor/plating,/area/maintenance/central) +"aFx" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/folder/blue,/obj/machinery/door/window/westleft{name = "Hydroponics Desk"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aFy" = (/obj/machinery/computer/monitor,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/central) +"aFz" = (/obj/structure/table,/obj/item/multitool{pixel_x = 8; pixel_y = 2},/obj/item/stack/cable_coil/random,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/central) +"aFA" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/landmark/start/botanist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aFB" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aFC" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aFD" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=AftH"; location = "Hydroponics"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aFE" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/techstorage/tcomms,/turf/open/floor/circuit,/area/bridge) +"aFF" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aFG" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/security/prison) +"aFH" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aFI" = (/obj/effect/turf_decal/bot,/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "Primary Tool Storage"},/turf/open/floor/plasteel,/area/storage/tools) +"aFJ" = (/obj/structure/closet/crate/hydroponics,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/watertank,/obj/item/grenade/chem_grenade/antiweed,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aFK" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/storage/box/beakers{pixel_y = 4},/obj/item/reagent_containers/dropper,/obj/structure/disposalpipe/segment{dir = 9},/obj/item/pen/blue{pixel_x = -4; pixel_y = -2},/obj/item/pen/red{pixel_x = 4; pixel_y = 4},/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aFL" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/chem_master,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aFM" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/barbershop) +"aFN" = (/obj/structure/flora/junglebush/b,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) +"aFO" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aFP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Security Office"; req_access_txt = "63"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/main) +"aFQ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aFR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aFS" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aFT" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) +"aFU" = (/obj/machinery/atmospherics/components/binary/circulator/cold{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aFV" = (/obj/structure/window/reinforced,/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/table/wood/fancy,/turf/open/floor/carpet,/area/crew_quarters/bar) +"aFW" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aFX" = (/obj/machinery/computer/security/hos{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) +"aFY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet,/area/chapel/main) +"aFZ" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/closed/wall/r_wall,/area/security/prison) +"aGa" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/tcommsat/computer) +"aGb" = (/obj/machinery/suit_storage_unit/hos,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) +"aGc" = (/obj/item/coin/iron,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/maintenance/port/fore) +"aGd" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/central) +"aGe" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/central) +"aGf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aGg" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aGh" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/landmark/start/security_officer,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"aGi" = (/obj/machinery/porta_turret/ai{dir = 1; req_access = list(16)},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"aGj" = (/obj/structure/rack,/obj/effect/turf_decal/bot,/obj/item/storage/toolbox/emergency{pixel_y = 4},/obj/item/analyzer{pixel_y = -4},/obj/item/flashlight{pixel_y = 4},/obj/item/flashlight{pixel_y = 4},/obj/item/extinguisher,/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aGk" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aGl" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/window/reinforced,/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/clipboard,/obj/item/pen,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aGm" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/machinery/door/window/southright{name = "Hydroponics Desk"; req_access_txt = "35"},/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aGn" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/bridge) +"aGo" = (/obj/structure/rack,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/screwdriver,/obj/item/wrench,/obj/item/clothing/gloves/color/fyellow,/obj/item/multitool,/obj/item/multitool,/obj/item/wrench,/turf/open/floor/plasteel,/area/security/brig) +"aGp" = (/mob/living/simple_animal/mouse/brown,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) +"aGq" = (/turf/closed/wall/r_wall,/area/bridge) +"aGr" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aGs" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/bridge) +"aGt" = (/obj/machinery/computer/card/minor/hos{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) +"aGu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) +"aGv" = (/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) +"aGw" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock{name = "Hydroponics Lobby"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"aGx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aGy" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/solars/port) +"aGz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/cable,/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/bridge"; name = "Bridge APC"; pixel_y = -24},/turf/open/floor/plating,/area/maintenance/solars/port) +"aGA" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) +"aGB" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) +"aGC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aGD" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/crew_quarters/toilet"; dir = 8; name = "Dormitory Toilets APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore) +"aGE" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/central) +"aGF" = (/obj/structure/table,/obj/effect/turf_decal/bot,/obj/item/clothing/glasses/meson,/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aGG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aGH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medical Booth"; req_access_txt = "5"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/medical{name = "Medical Booth"}) +"aGI" = (/obj/structure/table,/obj/effect/turf_decal/bot,/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 6},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 5},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 4},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 3},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 2},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 1},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = -1},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 6},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 5},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 4},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 3},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 2},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 1},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = -1},/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aGJ" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aGK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Head of Security's APC"; pixel_y = 24},/obj/machinery/camera{c_tag = "Security - Head of Security's Office"; pixel_x = 22},/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) +"aGL" = (/obj/structure/table/wood,/obj/item/storage/firstaid/regular,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"aGM" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"aGN" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"aGO" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/turf/open/floor/plasteel,/area/hydroponics) +"aGP" = (/obj/machinery/light_switch{pixel_x = -24},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aGQ" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aGR" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/food/snacks/store/cake/chocolate,/obj/machinery/door/poddoor/preopen{id = "kitchenlock"; name = "Kitchen Lockup"},/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) +"aGS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aGT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison) +"aGU" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aGV" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/table,/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"aGW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/closed/wall/r_wall,/area/bridge) +"aGX" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = 6; pixel_y = 3},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -6; pixel_y = 2},/obj/item/reagent_containers/food/drinks/bottle/vodka,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge) +"aGY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -30},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"aGZ" = (/turf/open/floor/plasteel/stairs/medium,/area/hallway/secondary/entry) +"aHa" = (/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/crew_quarters/locker"; dir = 8; name = "Locker Room APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore) +"aHb" = (/obj/structure/chair,/obj/machinery/firealarm{pixel_y = 26},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) +"aHc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_y = -32},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"aHd" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aHe" = (/obj/structure/sign/poster/official/bless_this_spess{pixel_y = -32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) +"aHf" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"aHg" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) +"aHh" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aHi" = (/obj/structure/chair/stool,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) +"aHj" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/tcommsat/computer) +"aHk" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aHl" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aHm" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aHn" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/maintenance/central) +"aHo" = (/obj/structure/rack,/obj/item/circuitboard/machine/telecomms/relay,/obj/item/circuitboard/machine/telecomms/server,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 5},/turf/open/floor/plasteel,/area/tcommsat/computer) +"aHp" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore) +"aHq" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/machinery/porta_turret/ai{dir = 1; req_access = list(16)},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"aHr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/sign/poster/contraband/clown{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/fore) +"aHs" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/port/fore) +"aHt" = (/turf/closed/wall/r_wall,/area/hallway/primary/port/fore) +"aHu" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aHv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aHw" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aHx" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/closed/wall,/area/security/detectives_office) +"aHy" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/closed/wall/r_wall,/area/security/detectives_office) +"aHz" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/security/detectives_office) +"aHA" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/detectives_office) +"aHB" = (/obj/structure/rack,/obj/effect/turf_decal/bot,/obj/item/storage/toolbox/emergency{pixel_y = 4},/obj/item/wrench,/obj/item/wrench{pixel_x = 2; pixel_y = 2},/obj/item/light/tube,/obj/item/light/tube{pixel_x = -2; pixel_y = 2},/obj/item/extinguisher,/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aHC" = (/obj/machinery/vending/cola/random,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aHD" = (/obj/machinery/modular_computer/console/preset/engineering,/turf/open/floor/plasteel/dark,/area/bridge) +"aHE" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plating,/area/tcommsat/computer) +"aHF" = (/turf/open/floor/plasteel/dark,/area/bridge) +"aHG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/central) +"aHH" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aHI" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/bridge) +"aHJ" = (/obj/machinery/light,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"aHK" = (/obj/structure/musician/piano,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"aHL" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/stack/medical/gauze,/obj/item/reagent_containers/blood,/obj/item/stack/medical/suture,/obj/item/stack/medical/mesh,/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"aHM" = (/turf/open/floor/plasteel,/area/bridge) +"aHN" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Security - Interrogation Room"; pixel_x = 22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) +"aHO" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aHP" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/crew_quarters/heads/hos) +"aHQ" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aHR" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/trunk,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Security Office APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/security/main) +"aHS" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"aHT" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison) +"aHU" = (/obj/effect/turf_decal/delivery,/obj/structure/mineral_door/woodrustic{name = "Nature Preserve"},/turf/open/floor/plasteel,/area/hydroponics/garden{name = "Nature Preserve"}) +"aHV" = (/obj/structure/flora/junglebush/large,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) +"aHW" = (/obj/structure/chair/comfy/brown,/obj/effect/landmark/start/head_of_security,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) +"aHX" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aHY" = (/turf/closed/wall/r_wall,/area/crew_quarters/cryopod) +"aHZ" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/door/window/eastleft{name = "Security Office Desk"; req_one_access_txt = "63"},/obj/item/folder/red,/obj/item/stamp/denied{pixel_x = 4; pixel_y = 4},/obj/item/stamp,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"aIa" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/central) +"aIb" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/junction/flip,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aIc" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/central) +"aId" = (/obj/structure/disposaloutlet{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aIe" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"aIf" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"aIg" = (/obj/structure/chair/office/dark{dir = 1},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"aIh" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) +"aIi" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aIj" = (/obj/structure/table/glass,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aIk" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aIl" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) +"aIm" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/requests_console{department = "Kitchen"; departmentType = 2; name = "Kitchen RC"; pixel_x = 30},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"aIn" = (/obj/structure/grille,/turf/open/floor/plating,/area/security/prison) +"aIo" = (/obj/effect/decal/cleanable/oil,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/solars/port) +"aIp" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aIq" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"aIr" = (/obj/structure/table/reinforced,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/item/folder/red,/obj/item/stamp/hos,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) +"aIs" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aIt" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aIu" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aIv" = (/obj/machinery/cryopod{dir = 8},/turf/open/floor/circuit/green,/area/crew_quarters/cryopod) +"aIw" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aIx" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aIy" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aIz" = (/obj/machinery/cryopod{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"aIA" = (/obj/machinery/computer/med_data{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"aIB" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aIC" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/main) +"aID" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/main) +"aIE" = (/turf/open/floor/carpet/royalblue,/area/bridge) +"aIF" = (/obj/structure/table,/obj/machinery/light{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/recharger,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/main) +"aIG" = (/obj/structure/table,/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/paper_bin,/obj/item/pen,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/main) +"aIH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/carpet/royalblue,/area/bridge) +"aII" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet/royalblue,/area/bridge) +"aIJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Fore Maintenance"; req_one_access_txt = "12;46"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/hallway/primary/port/fore) +"aIK" = (/obj/structure/table/wood,/obj/item/camera,/obj/item/folder,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aIL" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/bridge) +"aIM" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"aIN" = (/obj/structure/bed/roller,/obj/machinery/iv_drip,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"aIO" = (/obj/structure/sign/directions/medical{dir = 8; pixel_y = -24},/obj/structure/sign/directions/evac{dir = 1; pixel_y = -32},/obj/structure/sign/directions/supply{dir = 8; pixel_y = -40},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aIP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) +"aIQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/bridge) +"aIR" = (/obj/structure/chair/stool,/obj/effect/landmark/start/botanist,/turf/open/floor/plasteel,/area/hydroponics) +"aIS" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/ai,/obj/item/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 27; pixel_y = -7},/obj/item/radio/intercom{freerange = 1; name = "Common Channel"; pixel_x = 27; pixel_y = 5},/obj/machinery/button/door{id = "AIShutter"; layer = 3.6; name = "AI Core Shutter Control"; pixel_x = 24; pixel_y = -24},/obj/item/radio/intercom{freerange = 1; listening = 0; name = "Custom Channel"; pixel_x = -24; pixel_y = -8},/obj/machinery/button/door{id = "AIChamberShutter"; layer = 3.6; name = "AI Chamber Shutter Control"; pixel_x = -24; pixel_y = -24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"aIT" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/bridge) +"aIU" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aIV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation Monitoring"; req_access_txt = "63"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) +"aIW" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aIX" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"aIY" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aIZ" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aJa" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aJb" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aJc" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aJd" = (/turf/closed/wall,/area/chapel/office) +"aJe" = (/obj/machinery/computer/crew{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"aJf" = (/obj/machinery/camera{c_tag = "Chapel - Aft"; dir = 1},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"aJg" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) +"aJh" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"aJi" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/dark,/area/chapel/office) +"aJj" = (/obj/structure/chair{dir = 4},/obj/structure/cable,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/aft"; dir = 8; name = "Chapel APC"; pixel_x = -26},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"aJk" = (/obj/structure/table/wood,/obj/item/candle,/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"aJl" = (/obj/structure/bodycontainer/crematorium{id = "foo"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/office) +"aJm" = (/obj/machinery/light,/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) +"aJn" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"aJo" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"aJp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera/motion{c_tag = "AI"; network = list("minisat")},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"aJq" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/table/glass,/obj/item/storage/box/beakers{pixel_y = 4},/obj/item/clothing/glasses/science,/turf/open/floor/plasteel,/area/hydroponics) +"aJr" = (/obj/structure/sign/directions/command{dir = 8; pixel_y = -32},/obj/structure/sign/directions/security{dir = 8; pixel_y = -24},/obj/structure/sign/directions/science{dir = 8; pixel_y = -40},/obj/machinery/light,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aJs" = (/obj/structure/noticeboard{name = "Hydroponics Requests Board"; pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aJt" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/toy/figure/syndie,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison) +"aJu" = (/obj/structure/chair/comfy/brown,/turf/open/floor/carpet/royalblue,/area/bridge) +"aJv" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/main) +"aJw" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/brig) +"aJx" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aJy" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/right,/area/security/brig) +"aJz" = (/obj/structure/chair/comfy/brown,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge) +"aJA" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Port Bow Hall - Dorms Access"; network = list("ss13","rd")},/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aJB" = (/obj/machinery/computer/security/mining{dir = 4},/turf/open/floor/plasteel,/area/bridge) +"aJC" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aJD" = (/obj/structure/rack,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/item/storage/belt/medical,/obj/item/tank/internals/emergency_oxygen,/obj/item/clothing/suit/space/eva/paramedic,/obj/item/clothing/head/helmet/space/eva/paramedic,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"aJE" = (/obj/structure/closet/secure_closet/medical2,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"aJF" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore) +"aJG" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/bridge) +"aJH" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/storage/tools) +"aJI" = (/obj/structure/closet/crate/hydroponics,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/cable,/obj/item/shovel/spade,/obj/item/wrench,/obj/item/cultivator,/obj/item/crowbar,/obj/item/wirecutters,/obj/item/reagent_containers/glass/bucket,/obj/item/hatchet,/obj/machinery/power/apc/highcap/five_k{areastring = "/area/hydroponics"; name = "Hydroponics APC"; pixel_y = -28},/turf/open/floor/plasteel,/area/hydroponics) +"aJJ" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/storage/tools) +"aJK" = (/obj/structure/filingcabinet,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/bridge) +"aJL" = (/turf/open/floor/circuit,/area/bridge) +"aJM" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/circuit,/area/bridge) +"aJN" = (/obj/machinery/camera{c_tag = "Security - Prison Aft"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/prison) +"aJO" = (/obj/structure/chair/stool,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/prison) +"aJP" = (/obj/structure/chair/comfy/teal,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/sign/departments/botany{pixel_y = 32},/obj/machinery/camera{c_tag = "Civilian Wing Hallway - Starboard"; dir = 8; pixel_y = -22},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aJQ" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aJR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) +"aJS" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"aJT" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aJU" = (/obj/machinery/vending/cigarette,/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"aJV" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"aJW" = (/obj/machinery/cryopod{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/circuit/green,/area/crew_quarters/cryopod) +"aJX" = (/obj/machinery/light{dir = 4},/obj/machinery/modular_computer/console/preset/civilian{dir = 8},/turf/open/floor/circuit,/area/bridge) +"aJY" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stack/sheet/metal/fifty,/obj/item/storage/box/lights/mixed,/obj/item/stack/sheet/metal/fifty{pixel_x = -3; pixel_y = -7},/turf/open/floor/plasteel,/area/storage/tools) +"aJZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/main) +"aKa" = (/obj/structure/chair/stool,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/prison) +"aKb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/civilian) +"aKc" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aKd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation"; req_access_txt = "63"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/security/brig) +"aKe" = (/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) +"aKf" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/storage/emergency/generic) +"aKg" = (/turf/open/floor/plasteel/stairs/right,/area/hallway/secondary/entry) +"aKh" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet/red,/area/security/brig) +"aKi" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/main) +"aKj" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"aKk" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/effect/landmark/start/detective,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aKl" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aKm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Emergency Storage"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aKn" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) +"aKo" = (/obj/effect/turf_decal/delivery,/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/security/brig) +"aKp" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"aKq" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Chapel"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/chapel/main) +"aKr" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/public/glass{name = "Emergency Storage"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/emergency/generic) +"aKs" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/reagent_containers/food/drinks/drinkingglass,/obj/item/reagent_containers/rag,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"aKt" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aKu" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/storage/emergency/generic) +"aKv" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/bridge) +"aKw" = (/obj/structure/table,/obj/item/storage/box/dice,/obj/item/toy/cards/deck,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/security/prison) +"aKx" = (/obj/machinery/computer/security{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"aKy" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/rnd/production/techfab/department/security,/turf/open/floor/plasteel,/area/security/brig) +"aKz" = (/turf/closed/wall,/area/storage/emergency/generic) +"aKA" = (/obj/structure/table/wood,/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Blast Door Control"; pixel_x = -6; pixel_y = -3; req_access_txt = "19"},/turf/open/floor/carpet/royalblue,/area/bridge) +"aKB" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"aKC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Prison Wing"; req_access_txt = "2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aKD" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aKE" = (/obj/structure/table/wood,/obj/item/storage/fancy/donut_box,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/carpet/royalblue,/area/bridge) +"aKF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Telecommunications Control Room"; req_access_txt = "19;61"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"aKG" = (/obj/structure/table/wood,/obj/item/storage/toolbox/emergency,/obj/item/crowbar/red,/turf/open/floor/carpet/royalblue,/area/bridge) +"aKH" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/stripes/white/full,/obj/machinery/camera{c_tag = "Bridge - Fore"; network = list("ss13","rd")},/turf/open/floor/plasteel/dark,/area/bridge) +"aKI" = (/obj/structure/closet/cabinet,/obj/item/screwdriver,/obj/item/storage/crayons,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"aKJ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aKK" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/vending/snack/blue,/turf/open/floor/plasteel,/area/bridge) +"aKL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/bridge) +"aKM" = (/obj/machinery/camera{c_tag = "Chapel - Starboard"; dir = 8; pixel_y = -22},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"aKN" = (/obj/structure/chair/pew/left{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"aKO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/stairs/left,/area/security/brig) +"aKP" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/bridge) +"aKQ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/chapel/office) +"aKR" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/port/fore) +"aKS" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/bridge) +"aKT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/starboard/central) +"aKU" = (/obj/structure/bodycontainer/morgue,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) +"aKV" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) +"aKW" = (/obj/structure/reagent_dispensers/water_cooler,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aKX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Chapel Morgue"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel/dark,/area/chapel/office) +"aKY" = (/obj/structure/chair/sofa/left,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/status_display{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge) +"aKZ" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"aLa" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/door/poddoor/preopen{id = "hos"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) +"aLb" = (/obj/item/toy/prize/honk,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fore) +"aLc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aLd" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aLe" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aLf" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"aLg" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"aLh" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aLi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Central Maintenance"; req_one_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/central) +"aLj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aLk" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/brig) +"aLl" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/autodrobe,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aLm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/bridge) +"aLn" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/junction/flip,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aLo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aLp" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/chapel/office) +"aLq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aLr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aLs" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"aLt" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aLu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Visitation Maintainance"; req_one_access_txt = "63"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/security/main) +"aLv" = (/obj/machinery/computer/cryopod{dir = 8; pixel_x = 26},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"aLw" = (/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/kirbyplants{icon_state = "plant-06"},/turf/open/floor/plasteel,/area/security/brig) +"aLx" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aLy" = (/obj/machinery/modular_computer/console/preset/command{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"aLz" = (/obj/machinery/newscaster{pixel_y = -28},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aLA" = (/obj/item/candle{pixel_x = -4; pixel_y = -4},/obj/item/candle{pixel_x = -8; pixel_y = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/dark,/area/chapel/office) +"aLB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) +"aLC" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aLD" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"aLE" = (/obj/machinery/computer/communications{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"aLF" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aLG" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"aLH" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/tcommsat/computer) +"aLI" = (/obj/structure/table/wood,/obj/item/storage/box/PDAs,/obj/item/storage/box/ids{pixel_x = 3; pixel_y = 3},/turf/open/floor/carpet/royalblue,/area/bridge) +"aLJ" = (/obj/structure/chair{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/brig) +"aLK" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/bridge) +"aLL" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/brig) +"aLM" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) +"aLN" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/morgue{name = "Confession Booth"},/turf/open/floor/plasteel/dark,/area/chapel/main) +"aLO" = (/obj/item/toy/talking/owl,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) +"aLP" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = -26},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"aLQ" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/vending/coffee,/turf/open/floor/plasteel,/area/bridge) +"aLR" = (/obj/structure/table,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/storage/box/bodybags{pixel_y = 4},/obj/item/stack/packageWrap,/obj/item/hand_labeler,/turf/open/floor/plasteel/dark,/area/chapel/office) +"aLS" = (/obj/structure/disposaloutlet{dir = 8; name = "Corpse Outlet"},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/delivery/red,/turf/open/floor/plasteel/dark,/area/chapel/office) +"aLT" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aLU" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/assist,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aLV" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/camera{c_tag = "Central Maintenance - Aft"; network = list("ss13","rd")},/turf/open/floor/plating,/area/maintenance/central) +"aLW" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/security/brig) +"aLX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/security/main) +"aLY" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/main) +"aLZ" = (/mob/living/simple_animal/chicken{desc = "At least it isn't a court kangaroo."; name = "amusing cluck"; real_name = "amusing cluck"},/turf/open/floor/carpet,/area/security/courtroom) +"aMa" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"aMb" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aMc" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 20},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aMd" = (/obj/machinery/vending/wardrobe/chap_wardrobe,/obj/machinery/camera{c_tag = "Chapel Office"; dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/office) +"aMe" = (/obj/machinery/door/window/northleft{name = "Game Room"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"aMf" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aMg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/central) +"aMh" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/item/reagent_containers/food/drinks/bottle/champagne,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_y = -32},/obj/machinery/keycard_auth{pixel_x = -24},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) +"aMi" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/bridge) +"aMj" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aMk" = (/obj/structure/closet/crate/coffin,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/department/chapel) +"aMl" = (/obj/effect/landmark/start/bartender,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aMm" = (/obj/machinery/computer/med_data,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"aMn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/sign/warning{name = "\improper WARNING: MOVING MACHINERY"},/turf/closed/wall,/area/maintenance/department/chapel) +"aMo" = (/obj/structure/disposalpipe/junction/yjunction,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aMp" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aMq" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aMr" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Civilian Wing Hallway - Port"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aMs" = (/turf/closed/wall,/area/maintenance/department/chapel) +"aMt" = (/obj/machinery/atmospherics/components/unary/tank/air,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/chapel) +"aMu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) +"aMv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) +"aMw" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aMx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) +"aMy" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"aMz" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 10},/turf/closed/wall/r_wall,/area/engine/storage{name = "Canister Storage"}) +"aMA" = (/turf/closed/wall,/area/janitor) +"aMB" = (/turf/closed/wall/r_wall,/area/janitor) +"aMC" = (/obj/structure/table/wood,/obj/item/kitchen/fork,/obj/item/reagent_containers/food/snacks/salad/herbsalad,/obj/item/candle{pixel_x = 8; pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"aMD" = (/turf/closed/wall/rust,/area/maintenance/disposal) +"aME" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aMF" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"aMG" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aMH" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aMI" = (/turf/closed/wall/r_wall,/area/maintenance/disposal) +"aMJ" = (/obj/structure/chair{dir = 4},/obj/machinery/newscaster{pixel_x = -30},/obj/effect/landmark/start/assistant,/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"aMK" = (/obj/vehicle/ridden/wheelchair,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"aML" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/chapel/office) +"aMM" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/sign/poster/official/help_others{pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aMN" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/main) +"aMO" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aMP" = (/obj/structure/table/glass,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -6; pixel_y = 2},/obj/item/reagent_containers/food/drinks/bottle/wine,/turf/open/floor/plasteel,/area/security/brig) +"aMQ" = (/obj/machinery/computer/security{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"aMR" = (/obj/effect/landmark/start/chaplain,/obj/structure/chair/comfy/brown{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet,/area/chapel/main) +"aMS" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aMT" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aMU" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/fountain,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet,/area/chapel/main) +"aMV" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"aMW" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aMX" = (/obj/structure/chair/comfy/brown{buildstackamount = 0; dir = 1},/turf/open/floor/carpet/royalblue,/area/bridge) +"aMY" = (/obj/structure/closet,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) +"aMZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"aNa" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"aNb" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"aNc" = (/obj/structure/rack,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/item/mop,/obj/item/storage/box/mousetraps,/obj/item/storage/box/mousetraps,/obj/item/reagent_containers/spray/cleaner,/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/janitor) +"aNd" = (/obj/structure/table/glass,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/paper_bin,/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) +"aNe" = (/obj/structure/closet/crate,/obj/item/reagent_containers/food/snacks/spaghetti,/obj/item/reagent_containers/food/snacks/spaghetti,/turf/open/floor/plating,/area/hallway/secondary/service) +"aNf" = (/obj/structure/table/glass,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/clipboard,/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) +"aNg" = (/obj/machinery/computer/cargo/request{dir = 4},/turf/open/floor/plasteel,/area/bridge) +"aNh" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"aNi" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/bridge) +"aNj" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/table,/obj/item/book/manual/wiki/security_space_law,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/security/brig) +"aNk" = (/obj/structure/table/glass,/obj/structure/noticeboard{pixel_y = 28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/pen{pixel_y = 8},/obj/item/pen,/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) +"aNl" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/reagent_containers/food/condiment/pack/ketchup{pixel_x = -2; pixel_y = 6},/obj/item/reagent_containers/food/condiment/pack/mustard{pixel_x = 6; pixel_y = 3},/obj/item/candle{pixel_x = -8; pixel_y = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"aNm" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aNn" = (/obj/structure/table,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/reagent_containers/food/drinks/shaker,/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aNo" = (/obj/structure/disposalpipe/segment,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "AIShutter"; name = "AI Core Shutters"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) +"aNp" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aNq" = (/obj/machinery/door/window/northright{name = "Chapel Office"; req_access_txt = "22"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/chapel/office) +"aNr" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"aNs" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aNt" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aNu" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) +"aNv" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aNw" = (/obj/machinery/atmospherics/components/binary/valve,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/chapel) +"aNx" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/securearea,/turf/open/floor/plating,/area/engine/storage{name = "Canister Storage"}) +"aNy" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"aNz" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"aNA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "2"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/security/main) +"aNB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Port Bow Primary Hallway"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aNC" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/camera/motion{c_tag = "Telecomms Control Room"; network = list("tcomms"); pixel_x = 22},/obj/machinery/power/apc/highcap/fifteen_k{areastring = "/area/tcommsat/server"; dir = 1; name = "Telecomms Server APC"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/server) +"aND" = (/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"aNE" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aNF" = (/obj/machinery/computer/secure_data{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"aNG" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/table,/obj/item/taperecorder,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/security/brig) +"aNH" = (/obj/machinery/door/airlock/external/glass{name = "Exterior Engineering Access"; req_access_txt = "11;13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"aNI" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aNJ" = (/obj/structure/table,/obj/item/flashlight/lamp,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/brig) +"aNK" = (/obj/structure/sign/nanotrasen{pixel_x = -32},/turf/open/floor/plasteel,/area/security/courtroom) +"aNL" = (/turf/open/floor/plasteel,/area/security/courtroom) +"aNM" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -32},/turf/open/floor/plasteel,/area/security/brig) +"aNN" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/security/courtroom) +"aNO" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) +"aNP" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aNQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/securearea,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/engine/storage{name = "Canister Storage"}) +"aNR" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop) +"aNS" = (/obj/structure/chair,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) +"aNT" = (/turf/closed/wall/r_wall,/area/teleporter) +"aNU" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aNV" = (/obj/structure/table,/obj/item/locator,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/brig) +"aNW" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/maintenance/disposal) +"aNX" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/instrument/guitar,/obj/machinery/camera{c_tag = "Bar - Port"; dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aNY" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=sec2"; location = "bar"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aNZ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/solars/port) +"aOa" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "E.V.A. Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/eva) +"aOb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "E.V.A. Maintenance"; req_one_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/eva) +"aOc" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"aOd" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"aOe" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) +"aOf" = (/obj/effect/turf_decal/tile/neutral,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aOg" = (/obj/structure/chair/comfy/teal{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aOh" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"aOi" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/chapel/office) +"aOj" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aOk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/turf_decal/delivery,/obj/structure/window/reinforced/spawner,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aOl" = (/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aOm" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light_switch{pixel_y = -24},/obj/structure/table/wood,/obj/item/toy/windupToolbox,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aOn" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig) +"aOo" = (/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/hallway/primary/port/fore"; dir = 4; name = "Port Bow Primary Hallway APC"; pixel_x = 24},/turf/open/floor/plating,/area/maintenance/department/security) +"aOp" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 31},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/bridge) +"aOq" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/effect/turf_decal/delivery,/obj/item/extinguisher,/obj/structure/window/reinforced/spawner,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aOr" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/sign/warning/securearea{pixel_x = -32},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark/side{dir = 1},/area/bridge) +"aOs" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/kirbyplants,/turf/open/floor/plasteel/dark/side{dir = 1},/area/bridge) +"aOt" = (/obj/structure/chair/stool,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main) +"aOu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/chapel/main) +"aOv" = (/obj/structure/table/wood,/obj/item/clipboard,/obj/item/gavelblock,/obj/item/gavelhammer,/obj/machinery/camera{c_tag = "Courtroom"; network = list("ss13","rd")},/turf/open/floor/carpet,/area/security/courtroom) +"aOw" = (/obj/structure/table/wood,/obj/item/clipboard,/obj/item/pen,/turf/open/floor/plasteel,/area/security/courtroom) +"aOx" = (/obj/structure/table/reinforced,/obj/item/grenade/chem_grenade/smart_metal_foam{pixel_x = 4},/obj/item/radio,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aOy" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/vending/cigarette,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aOz" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/camera{c_tag = "Port Bow Hall"; dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aOA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/department/chapel) +"aOB" = (/turf/closed/wall/r_wall,/area/security/courtroom) +"aOC" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"aOD" = (/obj/machinery/door/airlock{name = "Catering"; req_one_access_txt = "25;28"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"aOE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"aOF" = (/obj/structure/closet/crate/freezer/surplus_limbs,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"aOG" = (/obj/structure/chair/comfy/teal{dir = 1},/obj/machinery/light,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aOH" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/port/fore) +"aOI" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/obj/machinery/flasher{id = "ID"; pixel_x = 8; pixel_y = 24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"aOJ" = (/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool) +"aOK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port) +"aOL" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/closed/wall,/area/security/brig) +"aOM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"aON" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aOO" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"aOP" = (/obj/machinery/light{dir = 1},/turf/open/floor/engine,/area/engine/gravity_generator) +"aOQ" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "cold loop to generator"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aOR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/window/reinforced/spawner/east,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aOS" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aOT" = (/turf/closed/wall,/area/crew_quarters/fitness/cogpool) +"aOU" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool) +"aOV" = (/turf/open/floor/plasteel/stairs,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aOW" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/item/clothing/accessory/armband/hydro,/obj/item/encryptionkey/headset_service,/obj/item/clothing/under/misc/vice_officer,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aOX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Pool"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/white/side,/area/crew_quarters/fitness/cogpool) +"aOY" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/window/reinforced/spawner/west,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aOZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/bridge) +"aPa" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Pool"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/side,/area/crew_quarters/fitness/cogpool) +"aPb" = (/obj/structure/grille,/turf/open/floor/plating,/area/hallway/primary/central) +"aPc" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aPd" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aPe" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/disposalpipe/junction{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"aPf" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"aPg" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating/airless,/area/space/nearstation) +"aPh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/meter,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aPi" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 24},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) +"aPj" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aPk" = (/obj/effect/landmark/start/depsec/science,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aPl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aPm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aPn" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/landmark/start/depsec/medical,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aPo" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom) +"aPp" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) +"aPq" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom) +"aPr" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/central) +"aPs" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/main) +"aPt" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) +"aPu" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/bridge) +"aPv" = (/obj/machinery/door/airlock/security/glass{name = "Equipment Room"; req_access_txt = "1"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aPw" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/camera{c_tag = "Central Hall - Courtroom Access"; network = list("ss13","rd")},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/central) +"aPx" = (/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aPy" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aPz" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/courtroom) +"aPA" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aPB" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/paper/guides/jobs/security/courtroom,/obj/item/pen,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet,/area/security/courtroom) +"aPC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aPD" = (/obj/machinery/door/airlock/security/glass{name = "Equipment Room"; req_access_txt = "1"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"aPE" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 8},/obj/item/toy/talking/AI{name = "Nanotrasen-brand toy AI"; pixel_y = 6},/obj/item/clothing/glasses/meson,/obj/machinery/status_display{pixel_x = -32},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"aPF" = (/turf/closed/wall/r_wall,/area/crew_quarters/locker) +"aPG" = (/obj/structure/disposalpipe/sorting/mail/flip{sortType = 21},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aPH" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet,/area/security/courtroom) +"aPI" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/eva) +"aPJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=bar"; location = "serv"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aPK" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/eva) +"aPL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aPM" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) +"aPN" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/space/nearstation) +"aPO" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 8},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aPP" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/machinery/meter,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aPQ" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aPR" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating/airless,/area/crew_quarters/fitness/cogpool) +"aPS" = (/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aPT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating/airless,/area/space/nearstation) +"aPU" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) +"aPV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) +"aPW" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) +"aPX" = (/obj/structure/table,/obj/effect/turf_decal/bot,/obj/item/storage/fancy/donut_box,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aPY" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aPZ" = (/obj/structure/window/plasma/reinforced{dir = 4},/obj/structure/window/reinforced/tinted,/obj/structure/table,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"aQa" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) +"aQb" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aQc" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"aQd" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"aQe" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aQf" = (/obj/structure/table,/obj/structure/bedsheetbin,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"aQg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"aQh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge) +"aQi" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"aQj" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) +"aQk" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aQl" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig) +"aQm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/red,/area/security/brig) +"aQn" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) +"aQo" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/security/courtroom) +"aQp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating/airless,/area/space/nearstation) +"aQq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/space/nearstation) +"aQr" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/space/nearstation) +"aQs" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aQt" = (/obj/machinery/pool/controller,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aQu" = (/obj/structure/table,/obj/item/toy/beach_ball{pixel_y = 12},/obj/item/clothing/glasses/sunglasses{pixel_y = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aQv" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) +"aQw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/main) +"aQx" = (/obj/machinery/camera{c_tag = "Engine Room - Port Bow"},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"aQy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/chapel/main) +"aQz" = (/obj/structure/chair/comfy/teal,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aQA" = (/obj/structure/chair/stool,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"aQB" = (/obj/structure/table,/obj/item/clothing/glasses/sunglasses{pixel_y = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aQC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"aQD" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aQE" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aQF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/circuit/green,/area/crew_quarters/cryopod) +"aQG" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/port/central) +"aQH" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aQI" = (/obj/structure/chair/comfy/teal,/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aQJ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation) +"aQK" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/port/central) +"aQL" = (/turf/closed/wall,/area/maintenance/port/central) +"aQM" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig) +"aQN" = (/obj/structure/chair/comfy/brown,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge) +"aQO" = (/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aQP" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/kirbyplants{icon_state = "plant-02"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aQQ" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aQR" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aQS" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aQT" = (/obj/machinery/door/airlock/engineering{name = "Thermo-Electric Generator"; req_one_access_txt = "10;24"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aQU" = (/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/plasteel/dark,/area/teleporter) +"aQV" = (/obj/structure/extinguisher_cabinet{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"aQW" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) +"aQX" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aQY" = (/obj/structure/window/plasma/reinforced{dir = 4},/obj/structure/window/reinforced/tinted,/obj/structure/table,/obj/item/toy/beach_ball/holoball/dodgeball,/obj/item/toy/beach_ball/holoball/dodgeball,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"aQZ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Service Hallway"; req_one_access_txt = "25;26;28;35"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"aRa" = (/obj/structure/table/wood,/obj/item/lighter,/obj/item/multitool{pixel_x = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge) +"aRb" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/primary/central) +"aRc" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/crew_quarters/fitness/cogpool) +"aRd" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aRe" = (/obj/structure/table/wood,/obj/item/storage/secure/briefcase,/obj/item/assembly/flash,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet/royalblue,/area/bridge) +"aRf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aRg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aRh" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/maintenance/department/eva) +"aRi" = (/obj/machinery/light,/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aRj" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/machinery/sleep_console{dir = 8},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"aRk" = (/obj/structure/disposalpipe/junction/yjunction,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aRl" = (/obj/structure/table/wood,/obj/item/restraints/handcuffs,/obj/item/laser_pointer/blue,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge) +"aRm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/courtroom) +"aRn" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aRo" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) +"aRp" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aRq" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/maintenance/department/eva) +"aRr" = (/mob/living/simple_animal/chicken{name = "Kentucky"; real_name = "Kentucky"},/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) +"aRs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aRt" = (/obj/effect/turf_decal/tile/neutral,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aRu" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/space/basic,/area/space/nearstation) +"aRv" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = -32},/turf/open/space/basic,/area/space/nearstation) +"aRw" = (/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) +"aRx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"aRy" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer) +"aRz" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"aRA" = (/obj/structure/table/optable,/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/reagent_containers/blood/random,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"aRB" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aRC" = (/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"aRD" = (/turf/closed/wall/r_wall/rust,/area/engine/gravity_generator) +"aRE" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"aRF" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/engine/storage_shared{name = "Electrical Substation"}) +"aRG" = (/obj/machinery/power/generator,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aRH" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/blobstart,/obj/machinery/camera{c_tag = "Central Port Maintenance - Starboard"; dir = 8; pixel_y = -22},/turf/open/floor/plating,/area/maintenance/port/central) +"aRI" = (/obj/structure/rack,/obj/item/extinguisher,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/port/central) +"aRJ" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/hydroponics/garden{name = "Nature Preserve"}) +"aRK" = (/obj/structure/sign/departments/holy{pixel_y = -32},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aRL" = (/mob/living/simple_animal/crab/kreb,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) +"aRM" = (/turf/open/floor/carpet,/area/crew_quarters/bar) +"aRN" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aRO" = (/obj/structure/disposalpipe/junction/yjunction,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aRP" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aRQ" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aRR" = (/obj/machinery/portable_atmospherics/pump,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"aRS" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/kirbyplants{icon_state = "plant-10"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aRT" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aRU" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/main) +"aRV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"aRW" = (/turf/open/floor/plating,/area/maintenance/port/central) +"aRX" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/space/nearstation) +"aRY" = (/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"aRZ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/turf/open/space/basic,/area/space/nearstation) +"aSa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge) +"aSb" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aSc" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/central) +"aSd" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) +"aSe" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Chapel"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/chapel/main) +"aSf" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aSg" = (/obj/machinery/power/apc{name = "Security Maintainance APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/security) +"aSh" = (/obj/structure/table,/obj/item/storage/fancy/donut_box,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/red,/area/security/brig) +"aSi" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge) +"aSj" = (/obj/structure/target_stake,/obj/item/target/syndicate,/turf/open/floor/plasteel,/area/science/circuit) +"aSk" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aSl" = (/obj/machinery/computer/teleporter{dir = 1},/turf/open/floor/plasteel/dark,/area/teleporter) +"aSm" = (/obj/machinery/teleport/station,/turf/open/floor/plasteel/dark,/area/teleporter) +"aSn" = (/obj/machinery/teleport/hub,/turf/open/floor/plasteel/dark,/area/teleporter) +"aSo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aSp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aSq" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/space/nearstation) +"aSr" = (/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"aSs" = (/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/obj/effect/turf_decal/delivery,/obj/machinery/camera{c_tag = "Bridge Access"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/bridge) +"aSt" = (/turf/closed/wall/r_wall,/area/maintenance/department/eva) +"aSu" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/space/nearstation) +"aSv" = (/turf/closed/wall,/area/space/nearstation) +"aSw" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation) +"aSx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aSy" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/turf/open/space/basic,/area/space/nearstation) +"aSz" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aSA" = (/obj/structure/closet/secure_closet/medical2,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"aSB" = (/obj/machinery/door/airlock/command{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge) +"aSC" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"aSD" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aSE" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aSF" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/surgical_drapes,/obj/item/scalpel,/obj/item/circular_saw{pixel_y = 16},/obj/item/hemostat,/obj/item/retractor,/obj/item/surgicaldrill,/obj/item/cautery,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"aSG" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/closed/wall/r_wall,/area/hydroponics/garden{name = "Nature Preserve"}) +"aSH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/hydroponics/garden{name = "Nature Preserve"}) +"aSI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aSJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Security Office"; req_access_txt = "63"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/main) +"aSK" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"aSL" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"aSM" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/space/nearstation) +"aSN" = (/obj/structure/table,/obj/machinery/computer/secure_data/laptop{dir = 8; pixel_x = -2; pixel_y = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet/red,/area/security/brig) +"aSO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aSP" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aSQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) +"aSR" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/storage/tools) +"aSS" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "Chapel"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aST" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"aSU" = (/obj/structure/reagent_dispensers/beerkeg,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = -26},/obj/machinery/requests_console{department = "Bar"; departmentType = 2; name = "Bar RC"; pixel_y = -30},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) +"aSV" = (/obj/item/toy/talking/AI,/obj/structure/grille/broken,/turf/open/floor/plating,/area/hallway/primary/central) +"aSW" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge) +"aSX" = (/obj/machinery/washing_machine,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"aSY" = (/obj/machinery/vending/medical,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"aSZ" = (/obj/structure/chair/stool,/obj/machinery/light,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"aTa" = (/obj/structure/window/plasma/reinforced{dir = 4},/obj/structure/table,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) +"aTb" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Central Hall - Starboard"; pixel_x = 22},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aTc" = (/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"aTd" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"},/turf/closed/wall/r_wall,/area/space/nearstation) +"aTe" = (/obj/effect/turf_decal/delivery,/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aTf" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/bridge) +"aTg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/brig) +"aTh" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external/glass{name = "Telecommunications External Access"; req_access_txt = "61"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/tcommsat/computer) +"aTi" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aTj" = (/obj/machinery/pool/filter{pixel_y = 16},/turf/open/pool,/area/crew_quarters/fitness/cogpool) +"aTk" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation) +"aTl" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"aTm" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"aTn" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/department/eva"; dir = 8; name = "EVA Maintenance APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/department/eva) +"aTo" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/detectives_office) +"aTp" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/landmark/start/security_officer,/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel,/area/security/brig) +"aTq" = (/obj/structure/chair{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"aTr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/detectives_office) +"aTs" = (/turf/closed/wall,/area/maintenance/department/eva) +"aTt" = (/obj/structure/closet/secure_closet/detective,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aTu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Bridge Access"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge) +"aTv" = (/turf/open/pool,/area/crew_quarters/fitness/cogpool) +"aTw" = (/obj/structure/pool/ladder{dir = 2; pixel_y = 24},/turf/open/pool,/area/crew_quarters/fitness/cogpool) +"aTx" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = -32},/turf/open/space/basic,/area/space/nearstation) +"aTy" = (/obj/structure/lattice/catwalk,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = -32},/turf/open/space/basic,/area/space/nearstation) +"aTz" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aTA" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aTB" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) +"aTC" = (/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aTD" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/courtroom) +"aTE" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/circuit) +"aTF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet/red,/area/security/brig) +"aTG" = (/turf/closed/wall,/area/router/public) +"aTH" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) +"aTI" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/airlock/public/glass{name = "Public Router"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/router/public) +"aTJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aTK" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/airlock/public/glass{name = "Public Router"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/public) +"aTL" = (/obj/machinery/cryopod{dir = 4},/obj/machinery/camera{c_tag = "Cryogenics"; dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/circuit/green,/area/crew_quarters/cryopod) +"aTM" = (/turf/closed/wall/r_wall,/area/router/public) +"aTN" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = -26},/obj/item/kirbyplants{icon_state = "plant-14"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aTO" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/security/courtroom) +"aTP" = (/obj/machinery/status_display/ai,/turf/closed/wall/r_wall,/area/security/courtroom) +"aTQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Thermo-Electric Generator"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aTR" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/stamp,/obj/item/stamp/denied{pixel_x = 4; pixel_y = 4},/obj/item/pen/red,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/red,/area/security/brig) +"aTS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/central) +"aTT" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/central) +"aTU" = (/obj/machinery/holopad,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aTV" = (/turf/closed/wall,/area/gateway) +"aTW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"aTX" = (/obj/machinery/light{dir = 1; light_color = "#c1caff"},/turf/open/floor/plasteel/white,/area/science/circuit) +"aTY" = (/obj/structure/chair,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/security/courtroom) +"aTZ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "hot loop to space"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"aUa" = (/obj/machinery/light_switch{pixel_x = 24},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aUb" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"aUc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/central) +"aUd" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aUe" = (/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aUf" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"aUg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"aUh" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/eva) +"aUi" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/gateway) +"aUj" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/destTagger,/obj/machinery/requests_console{department = "Public Router"; name = "Public Router RC"; pixel_x = -32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/router/public) +"aUk" = (/turf/closed/wall/r_wall,/area/gateway) +"aUl" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/router/public) +"aUm" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/router/public) +"aUn" = (/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/bot,/obj/machinery/computer/cargo/request,/turf/open/floor/plasteel,/area/router/public) +"aUo" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/gateway) +"aUp" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/closet/crate/science,/turf/open/floor/plasteel,/area/gateway) +"aUq" = (/turf/closed/wall/r_wall,/area/crew_quarters/lounge/jazz) +"aUr" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 10},/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"aUs" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) +"aUt" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"aUu" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/rack,/turf/open/floor/plasteel,/area/gateway) +"aUv" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet/red,/area/security/brig) +"aUw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Jazz Lounge"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) +"aUx" = (/obj/machinery/door/window/northright{name = "Game Room"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"aUy" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/obj/effect/decal/cleanable/dirt,/obj/structure/sign/poster/official/do_not_question{pixel_y = 32},/turf/open/floor/plasteel,/area/security/prison) +"aUz" = (/obj/machinery/computer/telecomms/server{dir = 4; network = "tcommsat"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/circuit,/area/bridge) +"aUA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"aUB" = (/obj/structure/table/wood,/obj/item/flashlight/lamp,/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop) +"aUC" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/courtroom) +"aUD" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom) +"aUE" = (/obj/machinery/light,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom) +"aUF" = (/obj/machinery/computer/bounty{dir = 1},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop) +"aUG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/courtroom) +"aUH" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light/small,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/port/central) +"aUI" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/central) +"aUJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aUK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/warning/electricshock{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/central) +"aUL" = (/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom) +"aUM" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/junction,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aUN" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aUO" = (/obj/machinery/firealarm{pixel_y = 26},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/teleporter"; dir = 4; name = "Teleporter Room APC"; pixel_x = 26},/turf/open/floor/plasteel/dark,/area/teleporter) +"aUP" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/eva) +"aUQ" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/plating,/area/maintenance/department/eva) +"aUR" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 8; icon_state = "intact"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/bridge) +"aUS" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"aUT" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aUU" = (/obj/machinery/pool/drain,/turf/open/pool,/area/crew_quarters/fitness/cogpool) +"aUV" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/courtroom) +"aUW" = (/obj/structure/pool/Lboard,/turf/open/pool,/area/crew_quarters/fitness/cogpool) +"aUX" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plating,/area/maintenance/port/central) +"aUY" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/central) +"aUZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"aVa" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aVb" = (/obj/structure/pool/Rboard,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aVc" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/item/kirbyplants{icon_state = "applebush"},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aVd" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aVe" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/port/central) +"aVf" = (/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aVg" = (/obj/machinery/computer/cryopod{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/circuit/green,/area/crew_quarters/cryopod) +"aVh" = (/obj/effect/turf_decal/bot,/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/gateway) +"aVi" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/router/public) +"aVj" = (/obj/machinery/vending/cola/random,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom) +"aVk" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 8},/area/gateway) +"aVl" = (/obj/machinery/vending/snack/random,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom) +"aVm" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/eva) +"aVn" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/router/public) +"aVo" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/router/public) +"aVp" = (/obj/structure/cable{icon_state = "2-8"},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/obj/machinery/camera{c_tag = "Public Router"; dir = 8; pixel_y = -22},/obj/machinery/button/massdriver{id = "public_out"; pixel_x = 24; pixel_y = -6},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/button/door{id = "pubblock"; name = "Router Access Control"; pixel_x = 24; pixel_y = 24},/turf/open/floor/plasteel,/area/router/public) +"aVq" = (/obj/structure/table,/turf/open/floor/plasteel/white,/area/gateway) +"aVr" = (/obj/structure/table,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/storage/box/cups,/obj/structure/sign/poster/official/here_for_your_safety{pixel_x = 32},/turf/open/floor/plasteel,/area/security/main) +"aVs" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/lounge/jazz) +"aVt" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/space/basic,/area/space/nearstation) +"aVu" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/dark/side,/area/security/courtroom) +"aVv" = (/turf/open/floor/plating,/area/maintenance/department/eva) +"aVw" = (/obj/structure/chair{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/red,/area/security/brig) +"aVx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) +"aVy" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"aVz" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet/red,/area/security/brig) +"aVA" = (/obj/machinery/cryopod{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/circuit/green,/area/crew_quarters/cryopod) +"aVB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) +"aVC" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/central) +"aVD" = (/obj/machinery/vending/clothing,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"aVE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Dormitory Toilets"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) +"aVF" = (/turf/open/floor/plasteel/white,/area/science/circuit) +"aVG" = (/obj/machinery/ore_silo,/obj/effect/turf_decal/bot_white,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{areastring = "/area/ai_monitored/nuke_storage"; dir = 4; name = "Vault APC"; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aVH" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/hallway/secondary/civilian"; dir = 8; name = "Civilian Wing Hallway APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aVI" = (/obj/structure/table,/obj/item/storage/box/zipties,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/carpet/red,/area/security/brig) +"aVJ" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom) +"aVK" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/space/nearstation) +"aVL" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom) +"aVM" = (/obj/structure/chair/stool,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/eva) +"aVN" = (/obj/machinery/vending,/turf/open/floor/plating,/area/maintenance/department/eva) +"aVO" = (/obj/structure/table,/obj/item/tape,/obj/item/taperecorder{pixel_x = -4},/obj/item/radio/off,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/red,/area/security/brig) +"aVP" = (/obj/structure/window/reinforced,/obj/structure/displaycase/captain,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain) +"aVQ" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/security) +"aVR" = (/obj/structure/window/reinforced,/obj/structure/filingcabinet,/obj/machinery/firealarm{dir = 8; pixel_x = 26},/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain) +"aVS" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/port/central) +"aVT" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: WASTE EJECTION"; pixel_x = -32},/turf/open/space/basic,/area/space/nearstation) +"aVU" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aVV" = (/obj/structure/bed,/obj/item/bedsheet/red,/obj/structure/cable{icon_state = "2-8"},/mob/living/simple_animal/bot/secbot/beepsky{desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey, and with a sturdier reinforced chassis, too. "; health = 45; maxHealth = 45; name = "Officer Beepsky"},/turf/open/floor/plating,/area/maintenance/department/security) +"aVW" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel,/area/gateway) +"aVX" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/obj/item/clothing/gloves/color/latex,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"aVY" = (/obj/structure/chair{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) +"aVZ" = (/obj/machinery/computer/security/wooden_tv,/turf/open/floor/plating,/area/maintenance/department/security) +"aWa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/security) +"aWb" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/central) +"aWc" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/central) +"aWd" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/eva) +"aWe" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet/red,/area/security/brig) +"aWf" = (/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aWg" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) +"aWh" = (/obj/effect/landmark/start/lawyer,/obj/structure/chair{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) +"aWi" = (/obj/machinery/cryopod{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/disposal"; dir = 8; name = "Cryogenics APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/circuit/green,/area/crew_quarters/cryopod) +"aWj" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"aWk" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/plasteel/dark/side,/area/security/courtroom) +"aWl" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/photocopier,/turf/open/floor/plasteel/dark/side,/area/security/courtroom) +"aWm" = (/turf/open/floor/plasteel,/area/gateway) +"aWn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aWo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/cryopod) +"aWp" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/computer/gateway_control{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 4},/area/gateway) +"aWq" = (/obj/structure/rack,/obj/machinery/light/small{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/extinguisher,/obj/item/crowbar,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/eva) +"aWr" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Central Maintenance"; req_one_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/hallway/primary/port/fore) +"aWs" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aWt" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/central) +"aWu" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/central) +"aWv" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aWw" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aWx" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/detectives_office) +"aWy" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aWz" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Power Monitoring"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/central) +"aWA" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/central) +"aWB" = (/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) +"aWC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Defendent's Chair"; req_one_access_txt = "63"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aWD" = (/obj/structure/window/reinforced/spawner/east,/obj/item/cigbutt,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/router/public) +"aWE" = (/obj/structure/sign/warning{name = "\improper WARNING: MOVING MACHINERY"},/turf/closed/wall/r_wall,/area/janitor) +"aWF" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/janitor) +"aWG" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/clothing/shoes/magboots,/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) +"aWH" = (/obj/machinery/disposal/bin{name = "Corpse Delivery"},/obj/machinery/light,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/delivery/red,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"aWI" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) +"aWJ" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"aWK" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light_switch{pixel_y = 24},/obj/item/storage/box/lights/mixed,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"aWL" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor/auto{dir = 1; id = "public"},/turf/open/floor/plating,/area/router/public) +"aWM" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"aWN" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/conveyor/auto{id = "public"},/turf/open/floor/plating,/area/router/public) +"aWO" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/ai_monitored/storage/eva) +"aWP" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) +"aWQ" = (/obj/structure/closet/crate/rcd,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) +"aWR" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = 32},/turf/open/space/basic,/area/space/nearstation) +"aWS" = (/obj/structure/table,/obj/item/storage/box/flashes{pixel_x = 8},/obj/item/storage/box/handcuffs{pixel_x = -8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/carpet/red,/area/security/brig) +"aWT" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/window/reinforced/spawner/west,/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/router/public"; dir = 4; name = "Public Router APC"; pixel_x = 24},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/router/public) +"aWU" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) +"aWV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) +"aWW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/central) +"aWX" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/medical"; dir = 8; name = "Medical Booth APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aWY" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{frequency = 1359; name = "Station Intercom (Security)"; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aWZ" = (/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) +"aXa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/central) +"aXb" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/central) +"aXc" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aXd" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/central) +"aXe" = (/obj/machinery/bookbinder,/turf/open/floor/wood,/area/library) +"aXf" = (/obj/machinery/photocopier,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/item/paper/fluff/cogstation/eva,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"aXg" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aXh" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 6},/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) +"aXi" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aXj" = (/obj/structure/transit_tube/station/reverse,/obj/effect/turf_decal/stripes/end{dir = 4},/obj/machinery/camera{c_tag = "Transit Tube Access"; pixel_x = 22},/obj/structure/transit_tube_pod{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/bridge) +"aXk" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Port Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aXl" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Port Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aXm" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/closed/wall/r_wall,/area/tcommsat/computer) +"aXn" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aXo" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"aXp" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/reagent_dispensers/foamtank,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"aXq" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aXr" = (/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"aXs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plating,/area/tcommsat/computer) +"aXt" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/securearea,/turf/open/floor/plating,/area/gateway) +"aXu" = (/turf/closed/wall,/area/security/courtroom/jury) +"aXv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Bar"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"aXw" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/kirbyplants{icon_state = "plant-08"},/turf/open/floor/plasteel/dark/side,/area/security/courtroom) +"aXx" = (/obj/structure/grille,/turf/closed/wall/r_wall,/area/engine/atmos) +"aXy" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva) +"aXz" = (/obj/structure/tank_dispenser/oxygen,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) +"aXA" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/security/courtroom/jury) +"aXB" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/courtroom) +"aXC" = (/obj/machinery/computer/bank_machine,/obj/effect/turf_decal/bot_white,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aXD" = (/obj/effect/turf_decal/bot_white/right,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/structure/closet/crate/silvercrate,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aXE" = (/obj/effect/turf_decal/bot_white,/obj/structure/closet/crate/goldcrate,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aXF" = (/obj/machinery/atmospherics/components/binary/valve/digital{name = "gas to hot loop"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) +"aXG" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom) +"aXH" = (/obj/structure/sign/warning/securearea,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) +"aXI" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"aXJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"aXK" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aXL" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/item/paper/fluff/jobs/security/beepsky_mom,/turf/open/floor/plating,/area/maintenance/department/security) +"aXM" = (/turf/closed/wall,/area/maintenance/department/security) +"aXN" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva) +"aXO" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/security/brig) +"aXP" = (/obj/machinery/door/airlock/maintenance{name = "Pool Maintenance"; req_one_access_txt = "12"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool) +"aXQ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/medical{name = "Medical Booth"}) +"aXR" = (/turf/closed/wall,/area/security/courtroom) +"aXS" = (/obj/structure/chair/comfy/brown{buildstackamount = 0; dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/royalblue,/area/bridge) +"aXT" = (/obj/structure/chair/comfy/brown{buildstackamount = 0; dir = 1},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge) +"aXU" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) +"aXV" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/assembly/timer{pixel_x = 6; pixel_y = -2},/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random{pixel_x = -2; pixel_y = -2},/obj/item/stack/cable_coil/random{pixel_x = 2; pixel_y = 2},/obj/item/multitool,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) +"aXW" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) +"aXX" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva) +"aXY" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plating,/area/maintenance/department/eva) +"aXZ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/department/eva) +"aYa" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/tcommsat/computer) +"aYb" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aYc" = (/obj/effect/landmark/start/assistant,/turf/open/floor/wood,/area/library) +"aYd" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/maintenance/department/eva) +"aYe" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aYf" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/open/floor/plasteel/white,/area/gateway) +"aYg" = (/obj/effect/turf_decal/bot_white/right,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aYh" = (/obj/structure/table,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/radio/off,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/bridge) +"aYi" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aYj" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aYk" = (/turf/open/floor/circuit/green,/area/ai_monitored/nuke_storage) +"aYl" = (/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aYm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aYn" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/storage/box/smart_metal_foam,/obj/item/wrench,/obj/item/radio/off,/obj/item/radio/off,/obj/item/radio/off,/obj/item/assembly/prox_sensor,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"aYo" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/junction/yjunction{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Security"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"aYp" = (/obj/structure/fans/tiny/invisible,/turf/open/space/basic,/area/space) +"aYq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security) +"aYr" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "1"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security) +"aYs" = (/obj/structure/rack,/obj/item/tank/jetpack/carbondioxide,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"aYt" = (/turf/open/floor/plating,/area/maintenance/department/security) +"aYu" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/holopad,/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) +"aYv" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/analyzer,/obj/item/storage/toolbox/electrical,/obj/item/gps,/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) +"aYw" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aYx" = (/obj/machinery/portable_atmospherics/canister/air,/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/maintenance/department/eva) +"aYy" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/side,/area/bridge) +"aYz" = (/obj/effect/turf_decal/bot_white,/obj/effect/landmark/start/ai/secondary,/obj/machinery/camera{c_tag = "Vault"; dir = 4; network = list("vault")},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aYA" = (/obj/machinery/nuclearbomb/selfdestruct,/obj/effect/turf_decal/box/white,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aYB" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/courtroom) +"aYC" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/security/detectives_office"; dir = 1; name = "Detective's Office APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/starboard/central) +"aYD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aYE" = (/obj/structure/closet/crate/trashcart,/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aYF" = (/obj/structure/table/wood,/obj/item/storage/box/evidence,/obj/item/hand_labeler,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"aYG" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light,/obj/structure/disposalpipe/junction/flip{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"aYH" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aYI" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/photocopier,/obj/structure/extinguisher_cabinet{pixel_y = -32},/obj/item/paper/fluff/cogstation/secsolars,/turf/open/floor/plasteel,/area/security/main) +"aYJ" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/courtroom) +"aYK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Civilian Wing Hallway"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"aYL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"aYM" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aYN" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) +"aYO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/courtroom) +"aYP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aYQ" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"aYR" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) +"aYS" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/security/brig) +"aYT" = (/turf/closed/wall/r_wall,/area/security/checkpoint/customs) +"aYU" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation) +"aYV" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"aYW" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/northright{name = "Customs Desk"; req_access_txt = "57"},/obj/machinery/door/poddoor/shutters/preopen{id = "HoPFore"; name = "HoP Fore Desk Shutters"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"aYX" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/flashlight/lamp,/obj/structure/window/reinforced/spawner/north,/obj/machinery/door/poddoor/shutters/preopen{id = "HoPFore"; name = "HoP Fore Desk Shutters"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"aYY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Port Central Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/security/courtroom) +"aYZ" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) +"aZa" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aZb" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/eva) +"aZc" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aZd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "E.V.A. Maintenance"; req_access_txt = "18"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/storage/eva) +"aZe" = (/obj/structure/sign/warning/biohazard{pixel_y = 32},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/chapel) +"aZf" = (/obj/effect/turf_decal/bot_white/left,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aZg" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"aZh" = (/obj/structure/closet/crate,/obj/machinery/light,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/window/reinforced/spawner/east,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/router/public) +"aZi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/office) +"aZj" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/caution{pixel_x = 6; pixel_y = 3},/obj/item/caution{pixel_x = 6; pixel_y = 3},/obj/item/caution{pixel_x = 6; pixel_y = 3},/obj/item/caution{pixel_x = 6; pixel_y = 3},/obj/item/extinguisher{pixel_x = -4; pixel_y = 4},/obj/item/extinguisher{pixel_x = -4; pixel_y = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"aZk" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/mass_driver{id = "public_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/public) +"aZl" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/window/reinforced/spawner/west,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/router/public) +"aZm" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) +"aZn" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera/motion{c_tag = "EVA"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) +"aZo" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/eva) +"aZp" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation) +"aZq" = (/obj/structure/chair{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/bridge) +"aZr" = (/obj/structure/filingcabinet,/obj/item/folder/documents,/obj/effect/turf_decal/bot_white,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aZs" = (/obj/structure/safe,/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/lazarus_injector,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/effect/turf_decal/bot_white/left,/obj/item/stack/sheet/mineral/diamond,/obj/item/clothing/under/costume/soviet,/obj/item/clothing/suit/armor/vest/russian_coat,/obj/item/clothing/head/helmet/rus_helmet,/obj/machinery/light,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aZt" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"aZu" = (/obj/machinery/blackbox_recorder,/obj/effect/turf_decal/bot_white,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"aZv" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) +"aZw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 8},/obj/item/flashlight,/obj/item/flashlight,/obj/item/weldingtool,/obj/item/flashlight,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"aZx" = (/obj/machinery/space_heater,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) +"aZy" = (/turf/closed/wall,/area/lawoffice) +"aZz" = (/obj/structure/lattice,/obj/machinery/camera{c_tag = "Routing Depot - Fore Exterior"; dir = 4},/turf/open/space/basic,/area/maintenance/department/eva) +"aZA" = (/obj/machinery/computer/card{dir = 8},/obj/item/paper/guides/cogstation/job_changes,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"aZB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"aZC" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/paper_bin,/obj/item/pen,/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel/dark,/area/lawoffice) +"aZD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Chapel Maintenance APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/department/chapel) +"aZE" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/hallway/primary/central"; dir = 8; name = "Central Primary Hallway APC"; pixel_x = -26},/turf/open/floor/plating,/area/maintenance/port/central) +"aZF" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aZG" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = 32},/turf/open/space/basic,/area/space/nearstation) +"aZH" = (/obj/structure/disposalpipe/junction,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aZI" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/door/window/northleft{name = "Law Office Counter"; req_access_txt = "38"},/turf/open/floor/plasteel/dark,/area/lawoffice) +"aZJ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"aZK" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/storage/toolbox/electrical,/obj/item/weldingtool,/obj/item/multitool{pixel_x = -6; pixel_y = -2},/obj/item/assembly/signaler{pixel_x = 6; pixel_y = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/storage/tools) +"aZL" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/sign/poster/official/cohiba_robusto_ad{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"aZM" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet,/area/security/courtroom) +"aZN" = (/obj/machinery/computer/station_alert{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/lawoffice) +"aZO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security) +"aZP" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/aiModule/reset/purge{pixel_y = 6},/obj/item/aiModule/reset{pixel_x = -2; pixel_y = 4},/obj/item/aiModule/core/full/custom{pixel_x = -4},/obj/machinery/status_display{pixel_x = 32},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"aZQ" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/plasteel{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"aZR" = (/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva) +"aZS" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva) +"aZT" = (/obj/structure/closet/secure_closet/hos,/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/storage/box/deputy,/obj/item/paper/guides/cogstation/letter_hos,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) +"aZU" = (/obj/structure/chair,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) +"aZV" = (/obj/structure/chair,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) +"aZW" = (/obj/structure/chair,/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) +"aZX" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) +"aZY" = (/obj/machinery/airalarm{pixel_y = 24},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) +"aZZ" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva) +"baa" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) +"bab" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/space/nearstation) +"bac" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/stack/rods/fifty,/obj/item/stack/rods/fifty,/obj/item/storage/toolbox/emergency,/obj/item/stack/sheet/rglass,/obj/item/stack/sheet/rglass,/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) +"bad" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/white/full,/turf/open/floor/plasteel/dark,/area/lawoffice) +"bae" = (/turf/open/floor/plasteel/dark,/area/lawoffice) +"baf" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/camera{c_tag = "Central Plaza - Starboard"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bag" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/storage/belt/utility,/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) +"bah" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/lawoffice) +"bai" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) +"baj" = (/obj/structure/table/glass,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -6; pixel_y = 2},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = 6; pixel_y = 3},/obj/item/reagent_containers/glass/beaker/waterbottle,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) +"bak" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/lawoffice) +"bal" = (/obj/structure/lattice,/obj/structure/grille,/turf/closed/wall/r_wall,/area/space/nearstation) +"bam" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/turf/open/space/basic,/area/space/nearstation) +"ban" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"bao" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) +"bap" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"baq" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bar" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/turf/open/floor/carpet,/area/crew_quarters/bar) +"bas" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/bar) +"bat" = (/obj/structure/chair/stool/bar,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/bar) +"bau" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/junction/flip{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) +"bav" = (/obj/structure/chair/sofa/right,/obj/machinery/firealarm{pixel_y = 26},/obj/item/clipboard,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) +"baw" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/lawoffice) +"bax" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/library) +"bay" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/library) +"baz" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/book/manual/wiki/security_space_law,/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel/dark,/area/lawoffice) +"baA" = (/obj/structure/filingcabinet/chestdrawer,/obj/item/folder/blue,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"baB" = (/obj/structure/rack,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/department/security) +"baC" = (/obj/machinery/vending/cart,/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"baD" = (/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"baE" = (/obj/structure/bookcase/random/reference,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/library) +"baF" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/head_of_personnel,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"baG" = (/obj/machinery/computer/secure_data{dir = 8},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"baH" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/crowbar,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/security) +"baI" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"baJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"baK" = (/obj/structure/table/reinforced,/obj/machinery/light,/obj/item/kitchen/fork,/obj/item/reagent_containers/food/snacks/pastatomato,/obj/machinery/newscaster/security_unit{pixel_y = -30},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) +"baL" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"baM" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/crowbar/large,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/security) +"baN" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"baO" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"baP" = (/obj/structure/closet/secure_closet/captains,/obj/item/reagent_containers/food/drinks/flask/gold,/obj/item/clothing/under/rank/captain/suit,/obj/item/clothing/under/rank/captain/suit/skirt,/obj/machinery/airalarm{pixel_y = 24},/obj/item/clothing/head/centhat{name = "\improper green captain's hat"},/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain) +"baQ" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"baR" = (/obj/structure/chair/sofa/left,/obj/effect/landmark/start/lawyer,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) +"baS" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) +"baT" = (/obj/machinery/iv_drip,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"baU" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"baV" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) +"baW" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/aiModule/core/full/asimov{pixel_x = 2; pixel_y = 10},/obj/effect/spawner/lootdrop/aimodule_neutral{pixel_x = 1; pixel_y = 8},/obj/effect/spawner/lootdrop/aimodule_harmless{pixel_y = 6},/obj/item/aiModule/core/freeformcore{pixel_x = -1; pixel_y = 2},/obj/item/aiModule/supplied/freeform{pixel_x = -2},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"baX" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/displaycase,/turf/open/floor/wood,/area/library) +"baY" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) +"baZ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Port Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bba" = (/obj/effect/landmark/start/assistant,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/circuit/green,/area/crew_quarters/cryopod) +"bbb" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/carpet/royalblue,/area/bridge) +"bbc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge) +"bbd" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) +"bbe" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/bridge) +"bbf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop) +"bbg" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/courtroom) +"bbh" = (/turf/closed/wall,/area/hallway/primary/aft) +"bbi" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"bbj" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/teleporter) +"bbk" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/requests_console{announcementConsole = 1; department = "Telecomms Admin"; departmentType = 5; name = "Telecomms RC"; pixel_y = 30},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"bbl" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bbm" = (/obj/structure/chair/stool,/obj/effect/landmark/start/lawyer,/turf/open/floor/plasteel/dark,/area/lawoffice) +"bbn" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/closet/emcloset,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bbo" = (/obj/structure/closet/crate,/obj/item/book/manual/wiki/security_space_law,/obj/item/book/manual/wiki/security_space_law,/turf/open/floor/plasteel/dark,/area/lawoffice) +"bbp" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet,/area/security/courtroom) +"bbq" = (/obj/effect/landmark/start/librarian,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) +"bbr" = (/obj/structure/filingcabinet/employment,/turf/open/floor/plasteel/dark,/area/lawoffice) +"bbs" = (/obj/structure/table/wood,/obj/item/camera,/obj/item/pen/red,/turf/open/floor/plasteel/dark,/area/lawoffice) +"bbt" = (/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bbu" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plating,/area/space/nearstation) +"bbv" = (/turf/open/space,/area/space) +"bbw" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"bbx" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bby" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/office) +"bbz" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bbA" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bbB" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bbC" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/effect/landmark/start/medical_doctor,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bbD" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/bridge) +"bbE" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bbF" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bbG" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/bridge) +"bbH" = (/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"bbI" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bbJ" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bbK" = (/obj/machinery/light,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bbL" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bbM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"bbN" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bbO" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bbP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "HoP Office Maintenance"; req_access_txt = "57"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/security/checkpoint/customs) +"bbQ" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness/cogpool"; dir = 4; name = "Pool APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/central) +"bbR" = (/obj/structure/closet/crate/hydroponics,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/reagent_containers/food/snacks/grown/wheat,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/cocoapod,/obj/item/reagent_containers/food/snacks/grown/chili,/obj/item/reagent_containers/food/snacks/grown/soybeans,/obj/item/reagent_containers/food/snacks/grown/tomato,/obj/item/reagent_containers/food/snacks/grown/cherries,/obj/structure/sign/poster/contraband/have_a_puff{pixel_y = -32},/turf/open/floor/plasteel,/area/hydroponics) +"bbS" = (/obj/machinery/space_heater,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/gateway) +"bbT" = (/turf/closed/wall/r_wall,/area/quartermaster/sorting) +"bbU" = (/turf/open/floor/plating,/area/quartermaster/sorting) +"bbV" = (/turf/closed/wall/r_wall,/area/quartermaster/warehouse) +"bbW" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/noticeboard{dir = 4; pixel_x = -27},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bbX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bbY" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bbZ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bca" = (/turf/open/floor/engine/vacuum,/area/engine/atmos) +"bcb" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bcc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/space/nearstation) +"bcd" = (/obj/item/kirbyplants{icon_state = "plant-14"},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"bce" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 1; id = "public"},/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "cargoblock"; name = "Public Router"},/turf/open/floor/plating,/area/router/public) +"bcf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bcg" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "cargoblock"; name = "Public Router"},/turf/open/floor/plating,/area/router/public) +"bch" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"bci" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"bcj" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting) +"bck" = (/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"bcl" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bcm" = (/obj/machinery/computer/cargo/request,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"bcn" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bco" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/morgue{name = "Confession Booth (Chaplain)"; req_access_txt = "22"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) +"bcp" = (/obj/machinery/libraryscanner,/obj/machinery/light,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) +"bcq" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"bcr" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) +"bcs" = (/obj/machinery/pdapainter,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"bct" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) +"bcu" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/camera{c_tag = "Aft Maintenance - Air Hookup"},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"bcv" = (/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"bcw" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/mixing) +"bcx" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/head_of_personnel,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"bcy" = (/turf/closed/wall/r_wall,/area/science/mixing) +"bcz" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/plasteel/dark,/area/lawoffice) +"bcA" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"bcB" = (/obj/structure/reagent_dispensers/watertank,/obj/item/extinguisher,/turf/open/floor/plasteel,/area/gateway) +"bcC" = (/obj/machinery/power/apc{name = "Research Division Storage APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/gateway) +"bcD" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"bcE" = (/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"bcF" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"bcG" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 5},/turf/open/space/basic,/area/space/nearstation) +"bcH" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/side,/area/security/courtroom) +"bcI" = (/turf/closed/wall/r_wall,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"bcJ" = (/obj/machinery/button/door{id = "HoPAft"; name = "Aft Shutters"; pixel_x = -24; pixel_y = -24; req_access_txt = "57"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"bcK" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/public/glass{name = "Cryogenics"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/circuit/green,/area/crew_quarters/cryopod) +"bcL" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) +"bcM" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"bcN" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=bridge2"; location = "court"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/courtroom) +"bcO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/space/nearstation) +"bcP" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) +"bcQ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom) +"bcR" = (/turf/closed/wall,/area/hallway/primary/central) +"bcS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Courtroom"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/courtroom) +"bcT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/aft) +"bcU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Jury Room Maintainance"; req_one_access_txt = "12"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/security/courtroom/jury) +"bcV" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/sorting) +"bcW" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/requests_console{department = "Bar"; departmentType = 2; name = "Bar RC"; pixel_y = -30},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bcX" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/hallway/primary/central) +"bcY" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer) +"bcZ" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer) +"bda" = (/obj/structure/table,/obj/item/hand_tele,/obj/machinery/camera{c_tag = "Teleporter Room"; dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/teleporter) +"bdb" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/central) +"bdc" = (/turf/open/floor/engine/vacuum,/area/science/mixing) +"bdd" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/camera{c_tag = "Pool"; dir = 1},/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/toy/poolnoodle/red,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"bde" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/mixing) +"bdf" = (/turf/open/floor/plasteel,/area/science/mixing) +"bdg" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/central) +"bdh" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/toy/poolnoodle/blue,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"bdi" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer) +"bdj" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/central) +"bdk" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"bdl" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/closet/athletic_mixed,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/toy/poolnoodle/yellow,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) +"bdm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) +"bdn" = (/obj/structure/chair{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"bdo" = (/obj/structure/sign/warning/biohazard{pixel_x = -32},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 17},/turf/open/floor/plasteel/dark,/area/chapel/office) +"bdp" = (/obj/structure/chair/stool,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) +"bdq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) +"bdr" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/central) +"bds" = (/obj/structure/chair/stool,/obj/effect/landmark/start/chaplain,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) +"bdt" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bdu" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/hallway/primary/aft) +"bdv" = (/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bdw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/spawner/structure/window/reinforced/tinted,/turf/open/floor/plating,/area/chapel/office) +"bdx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom) +"bdy" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/central) +"bdz" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"bdA" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel) +"bdB" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb,/obj/item/toy/eightball,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"bdC" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bdD" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bdE" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 8; icon_state = "intact"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge) +"bdF" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bdG" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bdH" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bdI" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bdJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Telecommunications Control Room Maintenance"; req_access_txt = "61"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/bridge) +"bdK" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/office) +"bdL" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"bdM" = (/turf/open/floor/plasteel,/area/quartermaster/office) +"bdN" = (/obj/machinery/vending/snack/random,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bdO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Pool External Maintenance"; req_access_txt = "12"},/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool) +"bdP" = (/turf/closed/wall/mineral/wood,/area/crew_quarters/fitness/cogpool) +"bdQ" = (/obj/machinery/door/airlock/command{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/bridge) +"bdR" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 10},/turf/open/space/basic,/area/space/nearstation) +"bdS" = (/obj/machinery/light,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/bridge) +"bdT" = (/obj/effect/turf_decal/bot,/obj/structure/table/reinforced,/obj/item/storage/toolbox/emergency,/obj/item/hand_labeler,/obj/item/hand_labeler,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bdU" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bdV" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office) +"bdW" = (/obj/structure/mineral_door/woodrustic{name = "Sauna"},/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool) +"bdX" = (/obj/structure/table/wood,/obj/item/storage/box/donkpockets,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"bdY" = (/obj/structure/sign/warning/fire,/turf/closed/wall/mineral/wood,/area/crew_quarters/fitness/cogpool) +"bdZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/quartermaster/sorting) +"bea" = (/obj/structure/disposalpipe/junction,/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/poster/official/report_crimes{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"beb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/courtroom/jury) +"bec" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/science/mixing) +"bed" = (/obj/machinery/suit_storage_unit/rd,/turf/open/floor/plasteel,/area/science/mixing) +"bee" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/science/mixing) +"bef" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating/airless,/area/science/test_area) +"beg" = (/obj/effect/turf_decal/bot_white,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"beh" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating/airless,/area/science/test_area) +"bei" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"bej" = (/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bek" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/mixing) +"bel" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bem" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "hot loop to generator"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"ben" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"beo" = (/turf/open/floor/plasteel/white,/area/gateway) +"bep" = (/obj/structure/table/wood,/obj/item/tape,/obj/item/taperecorder{pixel_x = -4},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/hor"; dir = 8; name = "Research Director's Office APC"; pixel_x = -24},/obj/item/reagent_containers/food/snacks/muffin/berry,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"beq" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "generator to cold loop"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"ber" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bes" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/closed/wall/r_wall,/area/space/nearstation) +"bet" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) +"beu" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) +"bev" = (/obj/structure/cable{icon_state = "4-8"},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"bew" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/port/central) +"bex" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom) +"bey" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/closed/wall/r_wall/rust,/area/space/nearstation) +"bez" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/office) +"beA" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/chapel/main) +"beB" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/quartermaster/office) +"beC" = (/obj/structure/rack,/obj/item/storage/toolbox/mechanical,/obj/item/radio/off,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/tcommsat/computer) +"beD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/space/nearstation) +"beE" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/fans/tiny,/obj/structure/plasticflaps,/turf/open/floor/plating,/area/maintenance/disposal) +"beF" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"beG" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/lawyer,/obj/structure/chair/stool,/turf/open/floor/plasteel/dark,/area/lawoffice) +"beH" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"beI" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"beJ" = (/turf/open/floor/plasteel,/area/hallway/primary/central) +"beK" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer) +"beL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom) +"beM" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"beN" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/hallway/primary/central) +"beO" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) +"beP" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) +"beQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/security/detectives_office) +"beR" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hallway/primary/central) +"beS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) +"beT" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"beU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"beV" = (/obj/machinery/button/door{id = "executionspaceblast"; name = "Vent to Space"; pixel_x = 25; pixel_y = -5; req_access_txt = "7"},/obj/machinery/button/ignition{id = "executionburn"; pixel_x = 24; pixel_y = 5},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/maintenance/port/fore) +"beW" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"beX" = (/obj/structure/closet/crate,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"beY" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/noticeboard{pixel_y = 28},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"beZ" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bfa" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/port/fore) +"bfb" = (/obj/machinery/computer/card/minor/qm,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/keycard_auth{pixel_x = -24},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bfc" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/coffee,/turf/open/floor/plasteel,/area/quartermaster/office) +"bfd" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bfe" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/quartermaster/office) +"bff" = (/turf/closed/wall/r_wall,/area/quartermaster/qm) +"bfg" = (/obj/structure/closet,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) +"bfh" = (/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"}) +"bfi" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bfj" = (/mob/living/simple_animal/butterfly,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) +"bfk" = (/mob/living/simple_animal/kiwi,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) +"bfl" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bfm" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security) +"bfn" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "cold loop to space"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"bfo" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/science/mixing) +"bfp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4},/obj/machinery/sparker/toxmix{pixel_x = 25},/turf/open/floor/engine/vacuum,/area/science/mixing) +"bfq" = (/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 5; id = "laborcamp_home"; name = "fore bay 1"; roundstart_template = /datum/map_template/shuttle/labour/cog; width = 9},/turf/open/space/basic,/area/space) +"bfr" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/white,/area/science/circuit) +"bfs" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "QM #1"},/mob/living/simple_animal/bot/mulebot{beacon_freq = 1400; home_destination = "QM #1"; suffix = "#1"},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bft" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/hallway/primary/central) +"bfu" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/dark/side{dir = 8},/area/gateway) +"bfv" = (/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool) +"bfw" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/turf/open/floor/plasteel,/area/security/brig) +"bfx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/gateway) +"bfy" = (/obj/machinery/light/small{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/components/unary/thermomachine/heater/on,/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool) +"bfz" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/chapel/office) +"bfA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Bridge Access"; req_access_txt = "19"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/bridge) +"bfB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Chapel Morgue"; req_access_txt = "22;27"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) +"bfC" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/qm) +"bfD" = (/obj/structure/grille,/turf/open/floor/plating,/area/quartermaster/sorting) +"bfE" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 5; id = "mail"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/quartermaster/sorting) +"bfF" = (/obj/machinery/space_heater,/obj/structure/sign/poster/official/no_erp{pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool) +"bfG" = (/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/turf/open/floor/plating,/area/quartermaster/warehouse) +"bfH" = (/obj/machinery/light{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/button/crematorium{id = "foo"; pixel_x = 8; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/chapel/office) +"bfI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/fifteen_k{areastring = "/area/engine/storage_shared"; dir = 1; name = "Electrical Substation APC"; pixel_y = 26},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"}) +"bfJ" = (/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool) +"bfK" = (/obj/structure/table/wood,/obj/item/storage/fancy/candle_box{pixel_x = -11; pixel_y = 5},/obj/item/reagent_containers/food/drinks/bottle/holywater,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/paper/fluff/cogstation/letter_chap{pixel_x = 10; pixel_y = 2},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office) +"bfL" = (/obj/structure/table/wood,/obj/item/modular_computer/laptop/preset/civilian,/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office) +"bfM" = (/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/structure/bedsheetbin/towel,/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool) +"bfN" = (/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bfO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Jazz Lounge"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) +"bfP" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"bfQ" = (/obj/machinery/light/small,/obj/item/candle,/obj/item/trash/candle,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/office) +"bfR" = (/obj/effect/turf_decal/loading_area{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) +"bfS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"bfT" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/chapel/office) +"bfU" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/turf/open/floor/plating,/area/quartermaster/sorting) +"bfV" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main) +"bfW" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"bfX" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/structure/cable{icon_state = "2-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/department/chapel) +"bfY" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "QM #2"},/mob/living/simple_animal/bot/mulebot{home_destination = "QM #2"; suffix = "#2"},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bfZ" = (/obj/effect/turf_decal/delivery,/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bga" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bgb" = (/obj/structure/disposalpipe/sorting/mail{sortType = 30},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"bgc" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/sign/directions/command{dir = 8; pixel_x = -32; pixel_y = -32},/turf/open/floor/plasteel/dark/corner{dir = 8},/area/hallway/primary/central) +"bgd" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central) +"bge" = (/turf/closed/wall/r_wall,/area/storage/primary) +"bgf" = (/turf/closed/wall,/area/quartermaster/warehouse) +"bgg" = (/obj/machinery/light{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bgh" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 6},/turf/open/space/basic,/area/space/nearstation) +"bgi" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space/basic,/area/space) +"bgj" = (/obj/structure/table,/obj/item/weldingtool/mini,/obj/item/light/tube,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/chapel) +"bgk" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "mail"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/quartermaster/sorting) +"bgl" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/clothing/gloves/color/yellow,/obj/item/multitool,/turf/open/floor/plasteel,/area/storage/primary) +"bgm" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) +"bgn" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel,/area/storage/primary) +"bgo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/chapel/main) +"bgp" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"bgq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"bgr" = (/obj/structure/table/wood,/obj/item/clothing/head/helmet/skull,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"bgs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/office) +"bgt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"bgu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgv" = (/obj/effect/landmark/xeno_spawn,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bgw" = (/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"bgx" = (/obj/structure/table/glass,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgy" = (/obj/structure/closet,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/security/courtroom/jury"; dir = 4; name = "Jury Room APC"; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) +"bgz" = (/obj/structure/chair,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgA" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgB" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/lightreplacer,/obj/item/lightreplacer,/obj/item/stack/rods/fifty,/obj/item/stack/rods/fifty,/turf/open/floor/plasteel,/area/storage/primary) +"bgC" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/light{dir = 1; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/science/mixing) +"bgD" = (/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/item/target,/obj/structure/window/reinforced,/turf/open/floor/plating/airless,/area/science/test_area) +"bgE" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Port Central Maintenance"; req_one_access_txt = "12"},/turf/open/floor/plating,/area/hallway/primary/central) +"bgG" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central) +"bgH" = (/obj/machinery/pipedispenser,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bgI" = (/obj/machinery/pipedispenser/disposal,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bgJ" = (/obj/machinery/portable_atmospherics/pump,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool) +"bgK" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bgL" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bgM" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) +"bgN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Port Central Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/hallway/primary/central) +"bgO" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/delivery,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/machinery/light{dir = 8},/obj/item/wrench,/obj/item/pipe_dispenser,/mob/living/simple_animal/sloth/paperwork,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bgP" = (/obj/item/analyzer,/obj/item/caution,/turf/open/floor/plating,/area/maintenance/disposal) +"bgQ" = (/turf/closed/wall,/area/quartermaster/qm) +"bgR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/meter,/turf/closed/wall/mineral/wood,/area/crew_quarters/fitness/cogpool) +"bgS" = (/obj/machinery/computer/bounty,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bgT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/storage) +"bgU" = (/obj/machinery/computer/cargo,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bgV" = (/turf/closed/wall/r_wall,/area/quartermaster/storage) +"bgW" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hor) +"bgX" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/heads/hor) +"bgY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/status_display,/turf/closed/wall/r_wall,/area/hallway/primary/central) +"bgZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"bha" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool) +"bhb" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"bhc" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool) +"bhd" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/office) +"bhe" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel) +"bhf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/quartermaster/office) +"bhg" = (/obj/structure/chair/stool,/obj/machinery/camera{c_tag = "Pool - Sauna"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 8},/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool) +"bhh" = (/obj/machinery/status_display,/turf/closed/wall/r_wall,/area/security/courtroom) +"bhi" = (/obj/effect/decal/cleanable/dirt,/obj/item/clothing/head/cone,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel) +"bhj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bhk" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bhl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/closed/wall/mineral/wood,/area/crew_quarters/fitness/cogpool) +"bhm" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"bhn" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"bho" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/turf/open/floor/plasteel,/area/storage/primary) +"bhp" = (/obj/machinery/light/small{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bhq" = (/obj/structure/chair/sofa/right,/obj/item/instrument/recorder,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) +"bhr" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bhs" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"bht" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/obj/structure/window/reinforced/spawner,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) +"bhu" = (/obj/effect/turf_decal/bot,/obj/machinery/recharge_station,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bhv" = (/obj/structure/chair/sofa/left,/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) +"bhw" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/poster/contraband/cc64k_ad{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel) +"bhx" = (/obj/machinery/vending/coffee,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/wood,/area/medical/medbay/lobby) +"bhy" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/conveyor/auto{id = "sec"},/obj/machinery/door/poddoor{name = "Security Router"},/turf/open/floor/plating,/area/router/sec) +"bhz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom) +"bhA" = (/obj/item/stack/cable_coil/red,/obj/item/multitool,/obj/item/wrench,/obj/item/stack/sheet/metal/five{pixel_x = 6; pixel_y = -6},/obj/item/paper/fluff/cogstation/letter_arrd,/turf/open/floor/plating,/area/maintenance/disposal) +"bhB" = (/obj/structure/table/wood,/obj/item/stack/packageWrap,/obj/item/paper/fluff/cogstation/bsrb,/obj/item/paper/fluff/cogstation/survey{pixel_x = -4; pixel_y = 2},/turf/open/floor/carpet/royalblue,/area/bridge) +"bhC" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel) +"bhD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Chapel Air Hookup"; req_one_access_txt = "12;22"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) +"bhE" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) +"bhF" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel) +"bhG" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/department/chapel) +"bhH" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/department/chapel) +"bhI" = (/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"bhJ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/turf/open/floor/plasteel,/area/engine/atmos) +"bhK" = (/turf/open/floor/plasteel,/area/quartermaster/storage) +"bhL" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/maintenance_hatch{name = "Waste Disposal"; req_one_access_txt = "12;50"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) +"bhM" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/office) +"bhN" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/obj/item/kirbyplants/dead,/turf/open/floor/plasteel,/area/security/main) +"bhO" = (/obj/structure/chair/sofa/right,/obj/machinery/light_switch{pixel_y = 24},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) +"bhP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"bhQ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"bhR" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"bhS" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Port Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bhT" = (/obj/structure/sign/departments/engineering,/turf/closed/wall,/area/hallway/primary/aft) +"bhU" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/janitor) +"bhV" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen,/obj/item/pen/blue{pixel_x = 4; pixel_y = 4},/obj/item/pen/red{pixel_x = -4; pixel_y = -4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"bhW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom) +"bhX" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) +"bhY" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bhZ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) +"bia" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bib" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bic" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = -28},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bid" = (/obj/structure/chair/sofa/left,/mob/living/simple_animal/pet/cat/Proc,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) +"bie" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bif" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"big" = (/turf/closed/wall,/area/science/circuit) +"bih" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 1; id = "mail"},/turf/open/floor/plating,/area/quartermaster/sorting) +"bii" = (/obj/structure/table/glass,/obj/item/storage/box/matches,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bij" = (/obj/effect/turf_decal/stripes/end{dir = 8},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/quartermaster/storage) +"bik" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) +"bil" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/conveyor{dir = 6; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) +"bim" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/button/massdriver{id = "router_in"; name = "mass driver button (Router)"; pixel_x = 24; pixel_y = -8},/turf/open/floor/plating,/area/maintenance/disposal) +"bin" = (/obj/machinery/computer/mecha{dir = 4},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bio" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) +"bip" = (/obj/effect/landmark/start/quartermaster,/turf/open/floor/plasteel,/area/quartermaster/qm) +"biq" = (/obj/structure/closet/secure_closet/hop,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/item/clothing/under/rank/civilian/head_of_personnel/suit,/obj/item/clothing/under/rank/civilian/head_of_personnel/suit/skirt{name = "head of personnel's suitskirt"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) +"bir" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/quartermaster/office) +"bis" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/machinery/light,/turf/open/floor/plasteel,/area/quartermaster/office) +"bit" = (/obj/machinery/light,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"biu" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"biv" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/quartermaster/office) +"biw" = (/obj/machinery/computer/cargo{dir = 8},/obj/effect/turf_decal/bot,/obj/machinery/button/door{id = "QMLoadDoor"; layer = 4; name = "Cargo Loading Doors"; pixel_x = 24; pixel_y = 6},/obj/machinery/button/door{id = "QMUnloadDoor"; layer = 4; name = "Cargo Unloading Doors"; pixel_x = 24; pixel_y = -6},/obj/machinery/camera{c_tag = "Supply - Cargo Bay"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bix" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Courtroom"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom) +"biy" = (/obj/machinery/vending/clothing,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office) +"biz" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) +"biA" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) +"biB" = (/obj/structure/table/wood,/obj/machinery/computer/security/telescreen/rd,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) +"biC" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"biD" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) +"biE" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"biF" = (/obj/structure/cable{icon_state = "4-8"},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -28},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) +"biG" = (/obj/structure/displaycase/labcage,/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/camera{c_tag = "Research Director's Office - Starboard"; network = list("ss13","rd")},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) +"biH" = (/obj/machinery/light/small,/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"biI" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/item/kirbyplants{icon_state = "plant-20"; pixel_y = 3},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"biJ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"biK" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/science/mixing) +"biL" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/closed/wall,/area/crew_quarters/heads/chief) +"biM" = (/obj/machinery/vending/assist,/obj/effect/turf_decal/bot,/obj/structure/sign/poster/official/foam_force_ad{pixel_x = 32},/turf/open/floor/plasteel,/area/quartermaster/office) +"biN" = (/obj/machinery/conveyor{dir = 4; id = "recycler"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal) +"biO" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) +"biP" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/gateway) +"biQ" = (/turf/closed/wall,/area/crew_quarters/heads/chief) +"biR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "CEPrivacy"; name = "CE Privacy Shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/chief) +"biS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) +"biT" = (/obj/machinery/pipedispenser,/turf/open/floor/plasteel,/area/science/mixing) +"biU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/aft) +"biV" = (/turf/closed/wall,/area/storage/primary) +"biW" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"biX" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"biY" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal) +"biZ" = (/turf/closed/wall/r_wall,/area/quartermaster/office) +"bja" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bjb" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/storage/toolbox/mechanical,/obj/item/wrench,/obj/item/t_scanner,/turf/open/floor/plasteel,/area/storage/primary) +"bjc" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stack/sheet/plasteel/twenty,/turf/open/floor/plasteel,/area/storage/primary) +"bjd" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bje" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bjf" = (/obj/machinery/pipedispenser/disposal/transit_tube,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bjg" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bjh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "E.V.A. Maintenance"; req_one_access_txt = "12"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/hallway/primary/central) +"bji" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bjj" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bjk" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/eva) +"bjl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/r_wall,/area/quartermaster/office) +"bjm" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bjn" = (/turf/closed/wall/r_wall,/area/security/checkpoint/supply) +"bjo" = (/obj/machinery/rnd/production/techfab/department/cargo,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bjp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/eva) +"bjq" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/conveyor{id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) +"bjr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/quartermaster/storage) +"bjs" = (/obj/machinery/computer/robotics{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bjt" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bju" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/item/radio/intercom{frequency = 1359; name = "Station Intercom (Security)"; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) +"bjv" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/security/courtroom/jury) +"bjw" = (/obj/item/storage/secure/safe{pixel_x = 4; pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/central) +"bjx" = (/obj/structure/table/optable,/obj/effect/turf_decal/bot,/obj/item/defibrillator/loaded,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bjy" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bjz" = (/obj/structure/grille/broken,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"bjA" = (/obj/machinery/camera{c_tag = "EVA Maintenace - Fore"; network = list("ss13","rd")},/turf/open/floor/plating,/area/maintenance/department/eva) +"bjB" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/turf/open/floor/plating,/area/security/brig) +"bjC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Jury Room"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/courtroom/jury) +"bjD" = (/turf/closed/wall/r_wall,/area/security/courtroom/jury) +"bjE" = (/obj/structure/table,/obj/structure/extinguisher_cabinet{pixel_y = 29},/obj/item/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/item/phone{pixel_x = -3; pixel_y = 3},/obj/machinery/camera{c_tag = "Atmospherics - Control Room"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/paper/guides/cogstation/letter_atmos,/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) +"bjF" = (/obj/machinery/power/apc{areastring = "/area/maintenance/aft"; dir = 8; name = "Head of Personnel APC"; pixel_x = -24},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable,/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop) +"bjG" = (/obj/structure/rack,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bjH" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/eva) +"bjI" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bjJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) +"bjK" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/turf/open/floor/plasteel,/area/storage/primary) +"bjL" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/tank/internals/air,/obj/item/flashlight,/obj/item/reagent_containers/spray/cleaner,/obj/machinery/camera{c_tag = "Pool Maintenance"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool) +"bjM" = (/obj/machinery/door/airlock/public/glass{name = "Atmospherics Storage"; req_one_access_txt = "24;31"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bjN" = (/obj/machinery/vending/autodrobe,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office) +"bjO" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/item/instrument/piano_synth,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) +"bjP" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) +"bjQ" = (/obj/structure/chair/stool,/obj/effect/landmark/start/assistant/override,/turf/open/floor/plasteel,/area/quartermaster/office) +"bjR" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bjS" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/bot,/obj/structure/sign/poster/official/cohiba_robusto_ad{pixel_x = 32},/turf/open/floor/plasteel,/area/quartermaster/office) +"bjT" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"bjU" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bjV" = (/obj/structure/closet{name = "Evidence Closet 5"},/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) +"bjW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bjX" = (/obj/structure/rack,/obj/machinery/button/door{id = "marketdoor"; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bjY" = (/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) +"bjZ" = (/obj/structure/window/reinforced,/obj/machinery/shower{name = "emergency shower"; pixel_y = 12},/obj/effect/turf_decal/delivery,/obj/machinery/door/window/westright{name = "Emergency Shower"},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/storage/primary) +"bka" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) +"bkb" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 9; id = "mail"},/turf/open/floor/plating,/area/quartermaster/sorting) +"bkc" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light,/obj/machinery/conveyor_switch/oneway{id = "DeliveryConveyer"},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bkd" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 8; id = "mail"},/turf/open/floor/plating,/area/quartermaster/sorting) +"bke" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=sec1"; location = "bridge2"},/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bkf" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"bkg" = (/obj/structure/disposalpipe/segment,/obj/machinery/mineral/stacking_unit_console{machinedir = 2},/turf/closed/wall,/area/maintenance/disposal) +"bkh" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bki" = (/obj/machinery/light,/obj/structure/disposalpipe/segment,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"bkj" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/machinery/conveyor_switch/oneway{id = "mail"},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bkk" = (/obj/machinery/autolathe,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bkl" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/tank/internals/air,/obj/item/flashlight,/obj/item/storage/belt/utility,/obj/item/extinguisher,/turf/open/floor/plasteel,/area/quartermaster/storage) +"bkm" = (/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Supply - Delivery Office Fore"; network = list("ss13","rd")},/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bkn" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) +"bko" = (/turf/open/floor/plasteel,/area/science/circuit) +"bkp" = (/obj/machinery/conveyor_switch/oneway{id = "QMLoad"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bkq" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/conveyor/inverted{dir = 9; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) +"bkr" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/door/poddoor{id = "QMLoadDoor"; name = "Cargo Loading Door"},/turf/open/floor/plating,/area/quartermaster/storage) +"bks" = (/obj/structure/plasticflaps,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) +"bkt" = (/obj/effect/turf_decal/stripes/end{dir = 4},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/door/poddoor{id = "QMLoadDoor"; name = "Cargo Loading Door"},/turf/open/floor/plating,/area/quartermaster/storage) +"bku" = (/obj/structure/closet,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bkv" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) +"bkw" = (/obj/structure/bookcase/random/fiction,/obj/effect/spawner/lootdrop/gambling,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) +"bkx" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/hallway/primary/central) +"bky" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/research_director,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) +"bkz" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"bkA" = (/obj/machinery/light_switch{pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Bridge - Starboard Quarter"; dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) +"bkB" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bkC" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain) +"bkD" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "CEPrivacy"; name = "CE Privacy Shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/heads/chief) +"bkE" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/maintenance/disposal) +"bkF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/security) +"bkG" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/crate/engineering,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/item/rcl/pre_loaded,/obj/item/stock_parts/cell/high/plus,/obj/item/clothing/glasses/meson,/obj/item/cartridge/atmos,/obj/item/cartridge/engineering,/obj/item/cartridge/engineering,/obj/item/cartridge/engineering,/obj/machinery/camera{c_tag = "Chief Engineer's Office"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bkH" = (/obj/machinery/computer/atmos_control{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/checker,/area/engine/atmos) +"bkI" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/storage/primary) +"bkJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"bkK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/departments/security{pixel_x = -32},/obj/item/cigbutt,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"bkL" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal) +"bkM" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bkN" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/maintenance/disposal) +"bkO" = (/obj/machinery/vending/kink,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office) +"bkP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bkQ" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"bkR" = (/obj/machinery/camera{c_tag = "EVA Maintenance - Aft"; dir = 1},/turf/open/floor/plating,/area/maintenance/department/eva) +"bkS" = (/obj/machinery/vending/sustenance,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office) +"bkT" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"bkU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bkV" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/eva) +"bkW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "Pool Exterior Access"; req_access_txt = "13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool) +"bkX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/sorting) +"bkY" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/crate/engineering,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bkZ" = (/turf/open/floor/engine/n2,/area/engine/atmos) +"bla" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"blb" = (/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"blc" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bld" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/storage) +"ble" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/door/airlock/external{name = "Cargo Freighter Dock"; req_access_txt = "31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) +"blf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel's Office"; req_access_txt = "57"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/hop) +"blg" = (/obj/effect/turf_decal/caution/stand_clear,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/quartermaster/storage) +"blh" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Cargo Freighter Dock"; req_access_txt = "31"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bli" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/central) +"blj" = (/obj/structure/sign/warning/docking,/turf/closed/wall/r_wall,/area/space/nearstation) +"blk" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/landmark/start/assistant,/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bll" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"blm" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bln" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"blo" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"blp" = (/turf/closed/wall/r_wall,/area/hallway/secondary/exit) +"blq" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/vending/wardrobe/engi_wardrobe,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/storage/primary) +"blr" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bls" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/sign/poster/official/ion_rifle{pixel_x = -32},/turf/open/floor/plasteel,/area/security/brig) +"blt" = (/obj/machinery/computer/card/minor/ce{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"blu" = (/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"blv" = (/obj/machinery/computer/operating,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"blw" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"blx" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/storage/backpack/duffelbag/med/surgery,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bly" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) +"blz" = (/obj/machinery/computer/atmos_control{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/engine/atmos) +"blA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) +"blB" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) +"blC" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"blD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool) +"blE" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"blF" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/hallway/primary/central) +"blG" = (/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/engine,/area/science/mixing) +"blH" = (/obj/structure/chair,/obj/machinery/button/massdriver{id = "toxinsdriver"; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/mixing) +"blI" = (/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/engine,/area/science/mixing) +"blJ" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (Common)"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"blK" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "marketdoor"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"blL" = (/turf/open/floor/engine/o2,/area/engine/atmos) +"blM" = (/turf/open/floor/engine/air,/area/engine/atmos) +"blN" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"blO" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"blP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/rust,/area/maintenance/department/chapel) +"blQ" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/window/northleft{name = "Delivery Office"; req_one_access_txt = "31;48"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"blR" = (/obj/machinery/computer/bounty{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"blS" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/structure/chair,/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"blT" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/closed/wall/r_wall,/area/science/mixing) +"blU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/closet/cardboard,/turf/open/floor/plating,/area/maintenance/aft) +"blV" = (/obj/machinery/computer/cargo{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"blW" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = -24},/obj/item/storage/toolbox/mechanical,/obj/item/clothing/gloves/color/fyellow,/obj/item/crowbar,/turf/open/floor/plasteel,/area/quartermaster/storage) +"blX" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"blY" = (/obj/structure/disposalpipe/junction/yjunction{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) +"blZ" = (/obj/machinery/conveyor_switch/oneway{dir = 8; id = "QMUnload"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bma" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/effect/landmark/start/assistant/override,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/turf/open/floor/plasteel,/area/quartermaster/office) +"bmb" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/crew_quarters/heads/hor) +"bmc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Security's Office"; req_one_access_txt = "58"},/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/hos) +"bmd" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/research_director,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) +"bme" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/exit) +"bmf" = (/obj/structure/sign/departments/evac,/turf/closed/wall/r_wall,/area/hallway/secondary/exit) +"bmg" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bmh" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bmi" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bmj" = (/obj/machinery/vending/wardrobe/cap_wardrobe,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain) +"bmk" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/dice/d6,/obj/machinery/camera{c_tag = "Jazz Lounge"; dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) +"bml" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bmm" = (/obj/machinery/portable_atmospherics/scrubber/huge,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"bmn" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bmo" = (/turf/closed/wall/rust,/area/maintenance/department/chapel) +"bmp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fore) +"bmq" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=court"; location = "bridge1"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bmr" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bms" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/barthpot,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) +"bmt" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) +"bmu" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/office) +"bmv" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"bmw" = (/obj/machinery/suit_storage_unit/ce,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bmx" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) +"bmy" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bmz" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/storage/primary) +"bmA" = (/obj/item/stack/tile/plasteel{pixel_x = 10; pixel_y = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/hallway/secondary/civilian) +"bmB" = (/obj/machinery/light_switch{pixel_x = 24},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"bmC" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bmD" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bmE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/gateway) +"bmF" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "0-4"},/turf/closed/wall,/area/crew_quarters/fitness/cogpool) +"bmG" = (/turf/open/floor/engine,/area/gateway) +"bmH" = (/obj/machinery/computer/upload/borg{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"bmI" = (/obj/machinery/light{dir = 1},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/chapel/office"; dir = 4; name = "Chapel Office APC"; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/chapel/office) +"bmJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool) +"bmK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool) +"bmL" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bmM" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/window/reinforced/spawner,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) +"bmN" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{name = "Waste Disposal Maintenance"; req_one_access_txt = "12;50"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) +"bmO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/crew_quarters/lounge/jazz) +"bmP" = (/obj/machinery/light/small{dir = 8},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/departments/engineering{pixel_x = -32},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bmQ" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/camera{c_tag = "Engineering Foyer - Starboard"; dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"bmR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Teleport Access"; req_one_access_txt = "17;19"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/dark,/area/teleporter) +"bmS" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/disposal) +"bmT" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) +"bmU" = (/obj/structure/table/wood,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/instrument/saxophone,/obj/item/reagent_containers/food/drinks/bottle/vermouth,/obj/item/clothing/glasses/sunglasses,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) +"bmV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) +"bmW" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/disposal) +"bmX" = (/obj/structure/table,/obj/item/folder/yellow{pixel_y = 4},/obj/item/pen{pixel_y = 4},/obj/item/clothing/gloves/color/latex{pixel_y = 4},/obj/item/clothing/mask/surgical{pixel_y = 4},/obj/item/healthanalyzer,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/item/paper/guides/cogstation/cdn_chap,/turf/open/floor/plasteel/dark,/area/chapel/office) +"bmY" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/maintenance/disposal) +"bmZ" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bna" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bnb" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) +"bnc" = (/obj/structure/sign/directions/command{dir = 1; pixel_x = -32; pixel_y = 32},/obj/structure/sign/directions/security{dir = 1; pixel_x = -32; pixel_y = 40},/obj/structure/sign/directions/science{pixel_x = -32; pixel_y = 24},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bnd" = (/obj/structure/table/wood,/obj/item/storage/photo_album,/obj/item/storage/box/matches,/obj/item/storage/fancy/cigarettes/cigpack_robust,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) +"bne" = (/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal) +"bnf" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) +"bng" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor{dir = 4; id = "recycler"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/disposal) +"bnh" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/door/poddoor{id = "DeliveryDoor"; name = "Delivery Door"},/obj/effect/turf_decal/caution/stand_clear{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bni" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/light{dir = 8},/obj/item/clipboard,/obj/item/stamp,/obj/item/stamp/denied{pixel_x = 4; pixel_y = 4},/obj/item/pen/red,/obj/item/pen/blue{pixel_x = -5; pixel_y = -3},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bnj" = (/obj/structure/sign/warning/securearea{desc = "A warning sign which reads 'BOMB RANGE"; name = "BOMB RANGE"},/turf/closed/wall,/area/science/test_area) +"bnk" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/science/mixing) +"bnl" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/central) +"bnm" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/mixing) +"bnn" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/door/window/southleft{name = "Cargo Desk"; req_access_txt = "31"},/obj/item/folder,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bno" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) +"bnp" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) +"bnq" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/engine/break_room) +"bnr" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bns" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/maintenance/department/eva) +"bnt" = (/obj/machinery/camera{c_tag = "Electrical Substation"; dir = 1},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"}) +"bnu" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"bnv" = (/obj/effect/turf_decal/plaque{icon_state = "L1"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bnw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) +"bnx" = (/obj/effect/turf_decal/plaque{icon_state = "L3"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bny" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/item/paper_bin,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/pen,/obj/item/wirecutters,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bnz" = (/obj/effect/turf_decal/plaque{icon_state = "L5"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bnA" = (/obj/effect/turf_decal/plaque{icon_state = "L7"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bnB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) +"bnC" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Cargo Freighter Dock"; req_access_txt = "31"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bnD" = (/obj/effect/turf_decal/plaque{icon_state = "L9"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bnE" = (/obj/effect/decal/cleanable/dirt,/obj/item/crowbar,/obj/structure/disposalpipe/junction/flip,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"bnF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"bnG" = (/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/open/floor/plasteel,/area/bridge) +"bnH" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/fore) +"bnI" = (/obj/structure/bed,/obj/effect/landmark/start/head_of_personnel,/obj/item/bedsheet/hop,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) +"bnJ" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bnK" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/dark,/area/teleporter) +"bnL" = (/obj/item/beacon,/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/teleporter) +"bnM" = (/obj/effect/turf_decal/delivery,/obj/item/grown/bananapeel,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) +"bnN" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bnO" = (/obj/machinery/status_display,/turf/closed/wall/r_wall,/area/hallway/secondary/exit) +"bnP" = (/obj/effect/turf_decal/plaque{icon_state = "L11"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bnQ" = (/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"bnR" = (/obj/effect/turf_decal/plaque{icon_state = "L13"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bnS" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool) +"bnT" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool) +"bnU" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/tank/internals/air,/obj/item/wrench,/obj/item/flashlight,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/eva) +"bnV" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) +"bnW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) +"bnX" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/closet/secure_closet/security/cargo,/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"bnY" = (/obj/structure/flora/ausbushes/sunnybush,/turf/open/floor/grass,/area/hallway/secondary/exit) +"bnZ" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/pen/blue,/obj/machinery/camera{c_tag = "Customs - Fore"; dir = 4},/obj/structure/window/reinforced/spawner/north,/obj/machinery/door/poddoor/shutters/preopen{id = "HoPFore"; name = "HoP Fore Desk Shutters"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"boa" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 5},/turf/closed/wall,/area/crew_quarters/heads/chief) +"bob" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/turf/closed/wall,/area/crew_quarters/heads/chief) +"boc" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 10},/turf/closed/wall,/area/crew_quarters/heads/chief) +"bod" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{name = "Primary Tool Storage Desk"; req_access_txt = "11"},/obj/item/folder/yellow,/turf/open/floor/plasteel,/area/storage/primary) +"boe" = (/obj/machinery/door/airlock/vault{name = "Vault Door"; req_access_txt = "53"},/obj/effect/mapping_helpers/airlock/locked,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) +"bof" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external/glass{name = "Pool Exterior Access"; req_access_txt = "13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/space/basic,/area/crew_quarters/fitness/cogpool) +"bog" = (/obj/machinery/light{dir = 1},/turf/open/floor/grass,/area/hallway/secondary/exit) +"boh" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/disposal) +"boi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool) +"boj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bok" = (/obj/structure/table/wood,/obj/item/paicard,/obj/item/toy/sword,/obj/item/toy/figure/assistant,/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) +"bol" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/teleporter) +"bom" = (/obj/structure/flora/ausbushes/leafybush,/turf/open/floor/grass,/area/hallway/secondary/exit) +"bon" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"boo" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central) +"bop" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/door/window/eastleft{name = "Operating Theatre"; req_access_txt = "45"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"boq" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bor" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bos" = (/obj/structure/table,/obj/item/stack/sheet/cardboard/fifty,/obj/item/stack/wrapping_paper,/obj/item/stack/sheet/metal,/obj/item/stack/sheet/glass,/turf/open/floor/plasteel,/area/quartermaster/storage) +"bot" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bou" = (/obj/effect/turf_decal/plaque{icon_state = "L2"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bov" = (/obj/effect/turf_decal/loading_area{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/quartermaster/storage) +"bow" = (/obj/effect/turf_decal/stripes/end{dir = 8},/obj/machinery/conveyor{dir = 8; id = "QMUnload"},/turf/open/floor/plating,/area/quartermaster/storage) +"box" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"boy" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) +"boz" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) +"boA" = (/turf/closed/wall,/area/security/detectives_office) +"boB" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 8; id = "QMUnload"},/turf/open/floor/plating,/area/quartermaster/storage) +"boC" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/sign/departments/cargo{pixel_x = 32},/turf/open/floor/plating,/area/quartermaster/warehouse) +"boD" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 8; id = "QMUnload"},/obj/machinery/door/poddoor{id = "QMUnloadDoor"; name = "Cargo Unloading Door"},/turf/open/floor/plating,/area/quartermaster/storage) +"boE" = (/obj/structure/plasticflaps,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 8; id = "QMUnload"},/turf/open/floor/plating,/area/quartermaster/storage) +"boF" = (/obj/effect/turf_decal/stripes/end{dir = 4},/obj/machinery/conveyor{dir = 8; id = "QMUnload"},/obj/machinery/door/poddoor{id = "QMUnloadDoor"; name = "Cargo Unloading Door"},/turf/open/floor/plating,/area/quartermaster/storage) +"boG" = (/obj/machinery/space_heater,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/weldingtool,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/structure/sign/departments/engineering{pixel_x = -32},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"boH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"boI" = (/turf/closed/wall/r_wall,/area/quartermaster/miningoffice) +"boJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/machinery/computer/security/telescreen/toxins{dir = 8; pixel_x = 24},/turf/open/floor/plasteel,/area/science/mixing) +"boK" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/miningoffice) +"boL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing) +"boM" = (/obj/machinery/mineral/ore_redemption{input_dir = 4; output_dir = 8},/obj/effect/turf_decal/bot,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"boN" = (/obj/effect/turf_decal/delivery,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"boO" = (/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/storage/box/drinkingglasses{pixel_y = 4},/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark/side{dir = 4},/area/crew_quarters/bar) +"boP" = (/obj/structure/tank_dispenser/oxygen,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"boQ" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/science/mixing) +"boR" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/science/mixing) +"boS" = (/obj/structure/sign/mining,/turf/closed/wall/r_wall,/area/quartermaster/miningoffice) +"boT" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"boU" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"boV" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) +"boW" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"boX" = (/obj/item/beacon,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) +"boY" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"boZ" = (/obj/effect/landmark/event_spawn,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) +"bpa" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/door/window/westleft{name = "Treatment Center"; req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bpb" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bpc" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"bpd" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bpe" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/door/window/eastright{name = "Operating Theatre"; req_access_txt = "45"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bpf" = (/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bpg" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bph" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bpi" = (/obj/structure/flora/junglebush/b,/turf/open/floor/grass,/area/hallway/secondary/exit) +"bpj" = (/obj/structure/flora/junglebush,/turf/open/floor/grass,/area/hallway/secondary/exit) +"bpk" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bpl" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/autolathe/secure{name = "public autolathe"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office) +"bpm" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/aft) +"bpn" = (/obj/effect/turf_decal/plaque{icon_state = "L4"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bpo" = (/obj/machinery/holopad,/turf/open/floor/carpet/red,/area/security/brig) +"bpp" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bpq" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/engine/air,/area/engine/atmos) +"bpr" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) +"bps" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/lounge/jazz"; name = "Jazz Lounge APC"; pixel_y = -26},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) +"bpt" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) +"bpu" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bpv" = (/turf/closed/wall/r_wall,/area/engine/break_room) +"bpw" = (/obj/effect/turf_decal/plaque{icon_state = "L6"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bpx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bpy" = (/obj/effect/turf_decal/plaque{icon_state = "L8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/landmark/observer_start,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bpz" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"bpA" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bpB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/hallway/primary/aft) +"bpC" = (/obj/effect/turf_decal/plaque{icon_state = "L10"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bpD" = (/turf/open/floor/plating,/area/maintenance/aft) +"bpE" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/aft) +"bpF" = (/obj/effect/turf_decal/plaque{icon_state = "L12"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bpG" = (/obj/effect/turf_decal/plaque{icon_state = "L14"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bpH" = (/obj/machinery/jukebox,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) +"bpI" = (/obj/effect/turf_decal/delivery,/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) +"bpJ" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) +"bpK" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) +"bpL" = (/obj/structure/cable{icon_state = "1-4"},/turf/closed/wall/r_wall,/area/engine/engine_smes{name = "Power Monitoring"}) +"bpM" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/science/mixing) +"bpN" = (/obj/structure/grille,/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"}) +"bpO" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/aft) +"bpP" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bpQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bpR" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/mixing) +"bpS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -32},/turf/open/floor/carpet/red,/area/security/brig) +"bpT" = (/obj/structure/window/reinforced/spawner,/turf/open/floor/grass,/area/hallway/secondary/exit) +"bpU" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) +"bpV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/atmos{name = "Aft Air Hookup"; req_access_txt = "12;24"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"bpW" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/security/brig) +"bpX" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/sign/poster/official/obey{pixel_x = -32},/turf/open/floor/plasteel,/area/security/brig) +"bpY" = (/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bpZ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) +"bqa" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"bqb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/civilian) +"bqc" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/medbay/lobby) +"bqd" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bqe" = (/obj/structure/sign/departments/medbay/alt,/turf/closed/wall,/area/medical/medbay/lobby) +"bqf" = (/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal) +"bqg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/disposal) +"bqh" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop) +"bqi" = (/obj/machinery/button/door{id = "HoPFore"; name = "Fore Shutters"; pixel_x = -24; pixel_y = 24; req_access_txt = "57"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"bqj" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bqk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"bql" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/hallway/secondary/civilian) +"bqm" = (/turf/closed/wall,/area/medical/medbay/lobby) +"bqn" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bqo" = (/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bqp" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) +"bqq" = (/obj/machinery/chem_master,/obj/effect/turf_decal/stripes/line,/obj/machinery/camera{c_tag = "Medbay - Chemistry Lab"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/medical/chemistry) +"bqr" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bqs" = (/obj/structure/closet/emcloset,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"bqt" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/clothing/gloves/color/latex,/obj/item/clothing/suit/apron/surgical,/obj/item/clothing/mask/surgical,/obj/item/healthanalyzer,/obj/item/clothing/neck/stethoscope,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bqu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{name = "Waste Disposal Maintenance"; req_one_access_txt = "12;50"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) +"bqv" = (/obj/structure/window/reinforced/spawner/east,/turf/open/floor/wood,/area/medical/medbay/lobby) +"bqw" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "EngiLockdown"; name = "Engineering Emergency Lockdown"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/camera{c_tag = "Engineering - Entrance"; dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) +"bqx" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bqy" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/camera{c_tag = "Supply - Mining Office"; dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bqz" = (/turf/closed/wall,/area/medical/chemistry) +"bqA" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bqB" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Library Access"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/library) +"bqC" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bqD" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bqE" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bqF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "E.V.A. Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/primary/central) +"bqG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva) +"bqH" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal) +"bqI" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/mixing) +"bqJ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4},/obj/machinery/airlock_sensor/incinerator_toxmix{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/engine,/area/science/mixing) +"bqK" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bqL" = (/obj/structure/chair{dir = 4},/obj/machinery/light_switch{pixel_x = -24},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) +"bqM" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/storage/box/dice,/obj/item/toy/cards/deck,/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) +"bqN" = (/obj/structure/table/glass,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bqO" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bqP" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bqQ" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry) +"bqR" = (/obj/machinery/computer/operating{dir = 1},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bqS" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bqT" = (/obj/machinery/computer/crew,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"bqU" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) +"bqV" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bqW" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva) +"bqX" = (/turf/closed/wall/mineral/titanium/nosmooth,/area/ai_monitored/turret_protected/ai_upload_foyer) +"bqY" = (/obj/structure/sign/directions/medical{pixel_x = -32; pixel_y = -24},/obj/structure/sign/directions/evac{pixel_x = -32; pixel_y = -32},/obj/structure/sign/directions/supply{pixel_x = -32; pixel_y = -40},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bqZ" = (/obj/machinery/mineral/equipment_vendor,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bra" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/maintenance/disposal) +"brb" = (/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/dark,/area/science/server{name = "Computer Core"}) +"brc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva) +"brd" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bre" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/central) +"brf" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/starboard/central) +"brg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"brh" = (/obj/structure/sign/departments/custodian{pixel_x = 32},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"bri" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/hallway/secondary/civilian) +"brj" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Central Starboard Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/civilian) +"brk" = (/obj/machinery/light{dir = 1},/obj/machinery/vending/cola/random,/turf/open/floor/wood,/area/medical/medbay/lobby) +"brl" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/item/paper_bin,/obj/item/reagent_containers/glass/bottle/epinephrine,/obj/item/reagent_containers/dropper,/obj/item/stamp/denied{pixel_x = -8; pixel_y = -2},/obj/item/stamp{pixel_x = -8; pixel_y = 2},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"brm" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"brn" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/hydroponics) +"bro" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/department/eva) +"brp" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/table/glass,/obj/machinery/smartfridge/disks,/turf/open/floor/plasteel,/area/hydroponics) +"brq" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"brr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/warning{name = "\improper WARNING: MOVING MACHINERY"; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal) +"brs" = (/turf/open/floor/plating/airless,/area/space/nearstation) +"brt" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/chapel/office) +"bru" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"brv" = (/obj/machinery/disposal/bin,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) +"brw" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/gateway) +"brx" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/tools) +"bry" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"brz" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/power/apc{areastring = "/area/science/research"; name = "Research Sector APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"brA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster/official/pda_ad600{pixel_y = -32},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) +"brB" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"brC" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/storage/tools) +"brD" = (/obj/structure/table,/obj/machinery/door/window/eastright{name = "Auxiliary Tool Storage Desk"; req_access_txt = "12"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/folder,/turf/open/floor/plasteel,/area/storage/tools) +"brE" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"brF" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "chem1"; name = "chem lab shutters"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/chemistry) +"brG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) +"brH" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/chemistry) +"brI" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Central Hall - Aft"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"brJ" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"brK" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/chem_dispenser,/obj/machinery/airalarm{pixel_y = 24},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/medical/chemistry) +"brL" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating/airless,/area/space/nearstation) +"brM" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Merchant Plaza"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"brN" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) +"brO" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/effect/landmark/start/medical_doctor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"brP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/maintenance/disposal) +"brQ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"brR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Construction Area"; req_access_txt = "31"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"brS" = (/obj/machinery/suit_storage_unit/open,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"brT" = (/obj/machinery/suit_storage_unit/open,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"brU" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/medbay/lobby) +"brV" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"brW" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock{name = "Chapel Maintenance"; req_one_access_txt = "12;22;26;27;50"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"brX" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) +"brY" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/camera{c_tag = "Waste Disposal - Aft"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) +"brZ" = (/obj/item/kirbyplants{icon_state = "plant-02"},/turf/open/floor/wood,/area/medical/medbay/lobby) +"bsa" = (/obj/structure/table/glass,/obj/item/scalpel,/obj/item/storage/box/cups,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/wood,/area/medical/medbay/lobby) +"bsb" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/port/central) +"bsc" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/table/glass,/obj/item/reagent_containers/glass/bottle/ammonia,/obj/item/toy/figure/botanist{pixel_x = 8},/turf/open/floor/plasteel,/area/hydroponics) +"bsd" = (/obj/structure/closet/crate/hydroponics,/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/clothing/accessory/armband/hydro{pixel_y = 4},/obj/item/clothing/accessory/armband/hydro{pixel_y = 4},/obj/item/clothing/accessory/armband/hydro{pixel_y = 4},/obj/item/clothing/suit/hooded/wintercoat/hydro{pixel_y = 4},/turf/open/floor/plasteel,/area/hydroponics) +"bse" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) +"bsf" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/bed/dogbed/ian,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/sign/poster/official/love_ian{pixel_y = 32},/mob/living/simple_animal/pet/dog/corgi/Ian,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) +"bsg" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) +"bsh" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "Recycler Exterior Access"; req_one_access_txt = "13;50"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) +"bsi" = (/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) +"bsj" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/green,/obj/machinery/seed_extractor,/turf/open/floor/plasteel,/area/hydroponics) +"bsk" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hydroponics) +"bsl" = (/obj/machinery/status_display,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) +"bsm" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) +"bsn" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/table/glass,/obj/machinery/plantgenes{pixel_y = 6},/turf/open/floor/plasteel,/area/hydroponics) +"bso" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/storage/tools) +"bsp" = (/turf/open/floor/wood,/area/medical/medbay/lobby) +"bsq" = (/obj/structure/table,/obj/machinery/door/window/southleft{name = "Auxiliary Tool Storage Desk"; req_access_txt = "12"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/book/manual/wiki/engineering_hacking,/turf/open/floor/plasteel,/area/storage/tools) +"bsr" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty{pixel_x = -6; pixel_y = 2},/turf/open/floor/plasteel,/area/storage/tools) +"bss" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/item/hand_labeler{pixel_y = 8},/obj/item/storage/firstaid/regular,/obj/item/book/manual/wiki/medicine{pixel_x = -6},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"bst" = (/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"bsu" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) +"bsv" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/vacuum/external,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal) +"bsw" = (/turf/open/floor/plasteel/stairs/left,/area/hydroponics) +"bsx" = (/obj/structure/lattice,/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool) +"bsy" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal) +"bsz" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"bsA" = (/turf/open/floor/plasteel/stairs/right,/area/hydroponics) +"bsB" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) +"bsC" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/camera{c_tag = "Hydroponics - Aft"},/turf/open/floor/plasteel,/area/hydroponics) +"bsD" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/space/basic,/area/space/nearstation) +"bsE" = (/obj/structure/reagent_dispensers/watertank/high,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/item/reagent_containers/glass/bucket,/turf/open/floor/grass,/area/hydroponics) +"bsF" = (/obj/machinery/vending/hydronutrients,/turf/open/floor/grass,/area/hydroponics) +"bsG" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/obj/structure/sign/poster/contraband/borg_fancy_2{pixel_y = 32},/turf/open/floor/plasteel,/area/maintenance/aft) +"bsH" = (/obj/structure/table/glass,/obj/item/storage/box/syringes{pixel_y = 4},/turf/open/floor/grass,/area/hydroponics) +"bsI" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 8},/turf/open/space/basic,/area/space/nearstation) +"bsJ" = (/obj/structure/table/glass,/obj/item/reagent_containers/spray/plantbgone{pixel_x = 12; pixel_y = 8},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 2; pixel_y = 9},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 6; pixel_y = 4},/turf/open/floor/grass,/area/hydroponics) +"bsK" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light,/turf/open/floor/grass,/area/hydroponics) +"bsL" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/reagentgrinder{pixel_y = 8},/obj/item/storage/box/syringes,/obj/item/storage/box/beakers{pixel_x = -2; pixel_y = -2},/turf/open/floor/plasteel,/area/medical/chemistry) +"bsM" = (/turf/closed/wall,/area/science/robotics/lab) +"bsN" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 1},/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/cable_coil/random,/obj/item/grenade/chem_grenade,/obj/item/grenade/chem_grenade,/obj/item/grenade/chem_grenade,/obj/item/screwdriver{pixel_x = -2; pixel_y = 6},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/medical/chemistry) +"bsO" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/hallway/secondary/civilian) +"bsP" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/white/full,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/medical/chemistry) +"bsQ" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/medical/chemistry) +"bsR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"bsS" = (/obj/machinery/door/window/northleft{name = "Chapel Office"; req_access_txt = "22"},/turf/open/floor/plasteel/dark,/area/chapel/office) +"bsT" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 10},/turf/open/space/basic,/area/space/nearstation) +"bsU" = (/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bsV" = (/turf/closed/wall,/area/maintenance/aft) +"bsW" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start/chaplain,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office) +"bsX" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"bsY" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plating,/area/maintenance/aft) +"bsZ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/aft) +"bta" = (/turf/closed/wall/r_wall,/area/storage/tech) +"btb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/computer/secure_data,/obj/machinery/requests_console{department = "Detective"; departmentType = 5; name = "Detective's Office RC"; pixel_y = 30},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"btc" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Custodial Closet APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/janitor) +"btd" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bte" = (/obj/structure/sign/warning/vacuum/external,/turf/closed/wall/r_wall,/area/quartermaster/miningoffice) +"btf" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/wood,/area/medical/medbay/lobby) +"btg" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel) +"bth" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/medical/medbay/lobby) +"bti" = (/obj/machinery/door/window/eastleft{name = "Waiting Room"},/turf/open/floor/wood,/area/medical/medbay/lobby) +"btj" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"btk" = (/obj/structure/sign/poster/official/nanomichi_ad{pixel_x = 32},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"btl" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"btm" = (/obj/machinery/disposal/bin{name = "Chapel Mailbox"},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/delivery/white,/obj/machinery/requests_console{department = "Chapel"; departmentType = 2; name = "Chapel RC"; pixel_x = -32},/turf/open/floor/plasteel/dark,/area/chapel/office) +"btn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab) +"bto" = (/turf/open/floor/plasteel,/area/science/robotics/lab) +"btp" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"btq" = (/obj/machinery/vending/cigarette,/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"btr" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) +"bts" = (/obj/effect/decal/cleanable/dirt,/obj/structure/light_construct/small{icon_state = "bulb-construct-stage1"; dir = 1},/turf/open/floor/plasteel,/area/maintenance/aft) +"btt" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Civilian Wing Hallway - Aft"; dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) +"btu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/hallway/secondary/civilian) +"btv" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/aft) +"btw" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/plating/airless,/area/router) +"btx" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/aft) +"bty" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"btz" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"btA" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"btB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft) +"btC" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"btD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"btE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Tech Storage"; req_access_txt = "23"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/storage/tech) +"btF" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"btG" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/central) +"btH" = (/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"btI" = (/obj/structure/closet/secure_closet/brig{name = "Detainee Locker"},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"btJ" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/closed/wall/r_wall,/area/hallway/secondary/civilian) +"btK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Aft Maintenance"; req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/exit) +"btL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"btM" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/fountain,/obj/machinery/newscaster{pixel_x = 30},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office) +"btN" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/rack,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/stack/cable_coil/random,/obj/item/weldingtool,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"btO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"btP" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/starboard/central) +"btQ" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/AI,/turf/open/floor/plating,/area/storage/tech) +"btR" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/department/eva) +"btS" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"btT" = (/turf/closed/wall/r_wall,/area/router) +"btU" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/wood,/area/medical/medbay/lobby) +"btV" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/storage/tech) +"btW" = (/obj/structure/table,/obj/machinery/light,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/quartermaster/office) +"btX" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"btY" = (/obj/machinery/door/window/eastright{name = "Waiting Room"},/turf/open/floor/wood,/area/medical/medbay/lobby) +"btZ" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/turf/open/floor/plating,/area/router) +"bua" = (/turf/closed/wall/r_wall,/area/science/robotics/mechbay) +"bub" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"buc" = (/obj/structure/bed,/obj/item/clothing/glasses/sunglasses/blindfold,/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"bud" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/conveyor{id = "router_off"},/turf/open/floor/plating,/area/router) +"bue" = (/turf/closed/wall/r_wall,/area/router/eva) +"buf" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/obj/structure/plasticflaps,/obj/machinery/door/window/northleft{name = "Showers"; req_one_access_txt = "29;47"},/turf/open/floor/plasteel,/area/science/lab) +"bug" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/chapel/office) +"buh" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/closed/wall,/area/maintenance/disposal) +"bui" = (/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"buj" = (/obj/structure/closet/crate,/turf/open/floor/plating,/area/maintenance/aft) +"buk" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Routing Depot"; req_one_access_txt = "10;31"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) +"bul" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/aft) +"bum" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) +"bun" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) +"buo" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bup" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) +"buq" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/router) +"bur" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/department/chapel) +"bus" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/mass_driver{dir = 1; id = "public_in"; name = "Router Driver"},/turf/open/floor/plating,/area/router) +"but" = (/turf/closed/wall/mineral/titanium/nosmooth,/area/hallway/primary/central) +"buu" = (/obj/structure/table,/turf/open/floor/plating,/area/maintenance/department/chapel) +"buv" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) +"buw" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bux" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) +"buy" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"buz" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/cargo_technician,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"buA" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/medical/medbay/lobby) +"buB" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Ferry Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"buC" = (/obj/structure/table/reinforced,/obj/item/integrated_circuit_printer,/obj/item/integrated_electronics/wirer,/turf/open/floor/plasteel/white,/area/science/circuit) +"buD" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"buE" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/conveyor/auto{id = "router"},/turf/open/floor/plating,/area/router) +"buF" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"buG" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop) +"buH" = (/obj/effect/decal/cleanable/dirt,/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse) +"buI" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/chapel) +"buJ" = (/obj/item/beacon,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"buK" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"buL" = (/obj/structure/closet/crate/coffin,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel) +"buM" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/button/door{id = "capblast"; name = "Window Blast Door Control"; pixel_x = -6; pixel_y = -3; req_access_txt = "19"},/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain) +"buN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/rust,/area/chapel/main) +"buO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain) +"buP" = (/obj/item/trash/plate,/obj/item/lighter/greyscale,/obj/item/clothing/mask/cigarette/cigar/cohiba,/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"buQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Chapel Morgue"; req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) +"buR" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/hop) +"buS" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/cmo) +"buT" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/sign/poster/official/soft_cap_pop_art{pixel_x = -32},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"buU" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/chips{pixel_x = 3; pixel_y = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"buV" = (/obj/structure/rack,/obj/item/circuitboard/machine/telecomms/processor,/obj/item/circuitboard/machine/telecomms/bus,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) +"buW" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/janitor) +"buX" = (/obj/structure/chair/stool,/obj/effect/landmark/start/bartender,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"buY" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"buZ" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/soulstone/anybody/chaplain,/obj/item/organ/heart,/obj/item/book/granter/spell/smoke/lesser,/obj/item/nullrod,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office) +"bva" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/closed/wall,/area/janitor) +"bvb" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Electrical Substation"; req_access_txt = "10"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"}) +"bvc" = (/obj/machinery/computer/cargo/request,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/router/eva) +"bvd" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bve" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Construction Area"; req_access_txt = "12"},/turf/open/floor/plating,/area/construction) +"bvf" = (/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office) +"bvg" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/destTagger,/obj/effect/turf_decal/bot,/obj/machinery/requests_console{department = "EVA Router"; name = "EVA Router RC"; pixel_y = 28},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/router/eva) +"bvh" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"bvi" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"bvj" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bvk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel) +"bvl" = (/obj/item/trash/plate,/obj/item/kitchen/fork,/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bvm" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) +"bvn" = (/obj/machinery/rnd/production/protolathe/department/science,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/science/lab) +"bvo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bvp" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/checkpoint) +"bvq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bvr" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) +"bvs" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/maintenance/department/chapel) +"bvt" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bvu" = (/turf/closed/wall/r_wall,/area/chapel/office) +"bvv" = (/turf/closed/wall/r_wall/rust,/area/hydroponics/garden{name = "Nature Preserve"}) +"bvw" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) +"bvx" = (/obj/structure/grille,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) +"bvy" = (/turf/open/floor/plasteel/white,/area/science/mixing) +"bvz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/router/eva) +"bvA" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/effect/landmark/start/cook,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) +"bvB" = (/turf/closed/wall/r_wall/rust,/area/router) +"bvC" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/mob/living/simple_animal/hostile/retaliate/goat{name = "Pete"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) +"bvD" = (/obj/machinery/camera{c_tag = "Bar - Starboard"; dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bvE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/carpet,/area/chapel/main) +"bvF" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/crew_quarters/bar) +"bvG" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"bvH" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/crew_quarters/bar) +"bvI" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/chapel) +"bvJ" = (/obj/structure/chair/comfy/brown,/obj/effect/landmark/start/head_of_personnel,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop) +"bvK" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"bvL" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/bar) +"bvM" = (/obj/structure/lattice,/obj/machinery/camera{c_tag = "Routing Depot - Aft Exterior"; pixel_x = 22},/turf/open/space/basic,/area/router) +"bvN" = (/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/closed/wall,/area/maintenance/department/chapel) +"bvO" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) +"bvP" = (/obj/machinery/space_heater,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/chapel) +"bvQ" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/janitor) +"bvR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"bvS" = (/obj/machinery/portable_atmospherics/canister/air,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/chapel) +"bvT" = (/turf/open/floor/plasteel/dark,/area/chapel/office) +"bvU" = (/obj/item/caution,/obj/effect/decal/cleanable/dirt,/obj/structure/sign/warning/biohazard{pixel_x = -32},/turf/open/floor/plasteel,/area/maintenance/disposal) +"bvV" = (/obj/structure/table,/obj/machinery/light/small,/obj/item/storage/pill_bottle/epinephrine,/obj/item/wrench{pixel_x = -8},/obj/item/extinguisher{pixel_x = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/department/chapel) +"bvW" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bvX" = (/obj/machinery/door/airlock/external{name = "External Construction Access"; req_one_access_txt = "10;31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bvY" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"bvZ" = (/obj/item/folder,/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bwa" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/department/eva) +"bwb" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/camera{c_tag = "Chapel Air Hookup"; dir = 1},/turf/open/floor/plating,/area/maintenance/department/chapel) +"bwc" = (/obj/machinery/computer/atmos_alert{dir = 8},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/chapel) +"bwd" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bwe" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/chapel) +"bwf" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"bwg" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bwh" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/decal/cleanable/dirt,/obj/machinery/requests_console{department = "Routing Depot"; name = "Routing Depot RC"; pixel_y = 28},/obj/machinery/button/massdriver{id = "eva_in"; name = "mass driver button (EVA)"; pixel_x = -24},/obj/machinery/button/massdriver{id = "public_in"; name = "mass driver button (Public)"; pixel_x = -24; pixel_y = 8},/turf/open/floor/plasteel,/area/router) +"bwi" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bwj" = (/obj/machinery/space_heater,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) +"bwk" = (/obj/machinery/chem_master,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/disposal) +"bwl" = (/obj/structure/closet/secure_closet/security,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/sign/poster/official/safety_report{pixel_x = 32},/turf/open/floor/plasteel,/area/security/checkpoint) +"bwm" = (/obj/structure/sign/departments/science,/turf/closed/wall/r_wall,/area/gateway) +"bwn" = (/obj/structure/disposalpipe/junction{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel) +"bwo" = (/obj/structure/cable{icon_state = "4-8"},/mob/living/simple_animal/cockroach,/turf/open/floor/plating,/area/maintenance/starboard/central) +"bwp" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/central) +"bwq" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/conveyor{id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) +"bwr" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bws" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/autolathe/secure{name = "public autolathe"},/turf/open/floor/plating,/area/maintenance/disposal) +"bwt" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bwu" = (/obj/structure/cable{icon_state = "1-2"},/obj/item/trash/can,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/central) +"bwv" = (/obj/machinery/disposal/bin{name = "Mass Driver"},/obj/structure/sign/warning/deathsposal{pixel_x = 32},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) +"bww" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"bwx" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/janitor) +"bwy" = (/obj/machinery/vending/wardrobe/jani_wardrobe,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/janitor) +"bwz" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router) +"bwA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/janitor) +"bwB" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/bot_assembly/medbot,/obj/item/clothing/head/hardhat{pixel_x = -2; pixel_y = 6; pressure_resistance = 6},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router) +"bwC" = (/obj/structure/table,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/radio/off{pixel_x = -3; pixel_y = 1},/obj/item/storage/box/mousetraps,/obj/item/light/tube,/obj/item/radio/off{pixel_x = -3; pixel_y = 1},/obj/machinery/camera{c_tag = "Routing Depot"},/turf/open/floor/plasteel,/area/router) +"bwD" = (/obj/structure/table/reinforced,/obj/item/analyzer,/obj/item/wrench,/obj/item/screwdriver,/turf/open/floor/plasteel/white,/area/science/mixing) +"bwE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel) +"bwF" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel) +"bwG" = (/obj/item/cigbutt,/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/landmark/event_spawn,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bwH" = (/obj/effect/turf_decal/stripes/line,/obj/item/storage/box/mre/menu2/safe,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/glass,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/maintenance/disposal) +"bwI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) +"bwJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"bwK" = (/obj/machinery/camera{c_tag = "Research - Gateway Chamber"; network = list("ss13","rd")},/turf/open/floor/engine,/area/gateway) +"bwL" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/router) +"bwM" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Central Starboard Maintenance"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/mob/living/simple_animal/hostile/retaliate/bat,/turf/open/floor/plating,/area/maintenance/starboard/central) +"bwN" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "Toxins Lab - Port"; network = list("ss13","rd")},/obj/machinery/meter,/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/mixing) +"bwO" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/maintenance/department/chapel) +"bwP" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/break_room) +"bwQ" = (/obj/structure/window/reinforced/spawner/east,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/conveyor{dir = 1; id = "router_off"},/turf/open/floor/plating,/area/router) +"bwR" = (/turf/open/floor/plasteel,/area/engine/break_room) +"bwS" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) +"bwT" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) +"bwU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bwV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/break_room) +"bwW" = (/turf/closed/wall,/area/maintenance/disposal) +"bwX" = (/obj/machinery/conveyor{id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) +"bwY" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/department/eva) +"bwZ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/table,/obj/item/clothing/under/misc/mailman,/obj/item/clothing/head/mailman,/obj/item/wirecutters,/obj/item/stack/packageWrap,/turf/open/floor/plasteel,/area/router) +"bxa" = (/obj/structure/frame/computer,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/router) +"bxb" = (/obj/machinery/light_switch{pixel_x = -24},/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Waste Disposal - Port"; dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal) +"bxc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/maintenance/department/chapel) +"bxd" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel,/area/maintenance/disposal) +"bxe" = (/obj/item/stack/tile/plasteel{pixel_x = 6; pixel_y = 13},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bxf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "EVA Router"; req_access_txt = "19"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/eva) +"bxg" = (/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/stack/tile/plasteel{pixel_x = 8; pixel_y = 14},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel) +"bxh" = (/obj/machinery/disposal/bin{name = "Corpse Disposal"},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/delivery/red,/turf/open/floor/plasteel,/area/maintenance/disposal) +"bxi" = (/obj/structure/closet/l3closet/janitor,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/item/clothing/gloves/color/purple,/obj/item/clothing/gloves/color/purple,/obj/item/clothing/under/costume/maid,/obj/item/clothing/under/costume/maid,/obj/structure/sign/poster/official/bless_this_spess{pixel_x = -32},/turf/open/floor/plasteel,/area/janitor) +"bxj" = (/turf/closed/wall/r_wall,/area/maintenance/aft) +"bxk" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/firealarm{dir = 8; pixel_x = 26},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bxl" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) +"bxm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/eva) +"bxn" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "AI Core Exterior"; dir = 1},/turf/open/floor/plating/airless,/area/maintenance/department/eva) +"bxo" = (/obj/machinery/door/airlock/external{name = "Telecommunications External Access"; req_access_txt = "61"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/tcommsat/computer) +"bxp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel) +"bxq" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/central) +"bxr" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/storage/box/lights/mixed,/obj/item/storage/box/lights/mixed,/obj/item/radio/off{pixel_x = 4; pixel_y = 4},/obj/item/restraints/legcuffs/beartrap,/obj/item/restraints/legcuffs/beartrap,/turf/open/floor/plasteel,/area/janitor) +"bxs" = (/obj/item/storage/toolbox/mechanical/old,/obj/item/reagent_containers/food/snacks/chips{pixel_x = 3; pixel_y = 1},/turf/open/floor/plating,/area/maintenance/disposal) +"bxt" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) +"bxu" = (/obj/structure/rack,/obj/item/circuitboard/machine/telecomms/broadcaster,/obj/item/circuitboard/machine/telecomms/receiver,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) +"bxv" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"bxw" = (/turf/closed/wall/r_wall,/area/maintenance/starboard/aft) +"bxx" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) +"bxy" = (/obj/item/trash/candle,/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/disposal) +"bxz" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/computer/station_alert,/obj/structure/sign/poster/official/safety_eye_protection{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/paper/guides/cogstation/letter_eng,/turf/open/floor/plasteel,/area/engine/break_room) +"bxA" = (/obj/machinery/announcement_system,/turf/open/floor/plasteel/dark,/area/tcommsat/computer) +"bxB" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/computer/message_monitor{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"bxC" = (/obj/structure/closet/emcloset/anchored,/obj/machinery/light/small,/turf/open/floor/plating,/area/tcommsat/computer) +"bxD" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/door/airlock/engineering{name = "Telecommunications Chamber"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) +"bxE" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 29},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) +"bxF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"bxG" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/disposal) +"bxH" = (/turf/closed/wall,/area/storage/tech) +"bxI" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/tcommsat/computer) +"bxJ" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/rack,/obj/item/clothing/gloves/color/fyellow,/obj/item/clothing/suit/hooded/wintercoat/engineering,/obj/item/clothing/suit/hooded/wintercoat/engineering,/obj/item/clothing/shoes/winterboots,/obj/item/clothing/shoes/winterboots,/turf/open/floor/plasteel,/area/tcommsat/computer) +"bxK" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal) +"bxL" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bxM" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/hallway/primary/aft) +"bxN" = (/obj/structure/rack,/obj/machinery/light/small{dir = 8},/obj/effect/spawner/lootdrop/techstorage/command,/turf/open/floor/plating,/area/storage/tech) +"bxO" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bxP" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/external{name = "Central Starboard Exterior Access"; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/starboard/central) +"bxQ" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"bxR" = (/obj/effect/turf_decal/bot,/obj/machinery/conveyor_switch{id = "MiningConveyer"},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bxS" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/central) +"bxT" = (/turf/closed/wall/r_wall,/area/science/xenobiology) +"bxU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bxV" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bxW" = (/obj/effect/turf_decal/tile/yellow,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) +"bxX" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) +"bxY" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"bxZ" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) +"bya" = (/obj/machinery/computer/telecomms/monitor{dir = 1; network = "tcommsat"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"byb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/tcommsat/server) +"byc" = (/obj/machinery/igniter/incinerator_toxmix,/turf/open/floor/engine/vacuum,/area/science/mixing) +"byd" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/fourcolor,/obj/item/pen/fountain{pixel_x = 2; pixel_y = 6},/obj/item/stamp/hop,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop) +"bye" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/photocopier,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"byf" = (/obj/machinery/door/airlock/engineering/glass{name = "Telecommunications Mainframe"; req_access_txt = "61"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel,/area/tcommsat/server) +"byg" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) +"byh" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"byi" = (/turf/closed/wall/r_wall,/area/tcommsat/server) +"byj" = (/turf/open/floor/plasteel,/area/tcommsat/server) +"byk" = (/obj/machinery/telecomms/message_server,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"byl" = (/obj/machinery/door/airlock/engineering/glass{name = "Telecommunications Mainframe"; req_access_txt = "61"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/server) +"bym" = (/obj/machinery/announcement_system,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"byn" = (/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"byo" = (/obj/structure/table/wood,/obj/item/clipboard,/obj/item/pen,/obj/item/pen{pixel_x = 4; pixel_y = 3},/obj/machinery/camera{c_tag = "Chapel Game Room"; dir = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"byp" = (/obj/machinery/telecomms/bus/preset_three,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"byq" = (/obj/machinery/telecomms/receiver/preset_left,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"byr" = (/obj/structure/table/wood,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/flashlight/lamp/green,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bys" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/eva) +"byt" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/central) +"byu" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/blobstart,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/central) +"byv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Central Starboard Exterior Access"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/central) +"byw" = (/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/light{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"byx" = (/obj/machinery/telecomms/processor/preset_three,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"byy" = (/obj/machinery/telecomms/bus/preset_one,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"byz" = (/obj/machinery/telecomms/receiver/preset_right,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"byA" = (/obj/machinery/telecomms/processor/preset_one,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"byB" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"byC" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"byD" = (/obj/machinery/camera{c_tag = "Medbay - Lobby"; network = list("ss13","rd")},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"byE" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/button/massdriver{id = "eva_out"; pixel_x = 24; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/router/eva) +"byF" = (/obj/structure/window/reinforced/spawner,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor/auto{dir = 4; id = "EVA"},/turf/open/floor/plating,/area/router/eva) +"byG" = (/obj/machinery/telecomms/server/presets/service,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"byH" = (/obj/machinery/telecomms/server/presets/common,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"byI" = (/obj/machinery/telecomms/hub/preset,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"byJ" = (/obj/machinery/telecomms/server/presets/security,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"byK" = (/obj/machinery/telecomms/server/presets/command,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"byL" = (/obj/machinery/telecomms/server/presets/science,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"byM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Chapel Maintenance"; dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel) +"byN" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/morgue) +"byO" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/tile/plasteel{pixel_x = 3; pixel_y = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel) +"byP" = (/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel,/area/maintenance/disposal) +"byQ" = (/turf/closed/wall,/area/medical/morgue) +"byR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"byS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel) +"byT" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/hallway/primary/aft) +"byU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"byV" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/plasteel,/area/hallway/primary/central) +"byW" = (/obj/structure/disposalpipe/sorting/mail{dir = 4; sortType = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"byX" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plating/airless,/area/space/nearstation) +"byY" = (/obj/vehicle/ridden/janicart,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/item/key/janitor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/janitor) +"byZ" = (/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/spawner,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/mass_driver{dir = 4; id = "eva_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/eva) +"bza" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bzb" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "Ferry Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bzc" = (/obj/machinery/light/small{dir = 8},/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/security,/turf/open/floor/plating,/area/storage/tech) +"bzd" = (/turf/open/floor/plating,/area/storage/tech) +"bze" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/mob/living/simple_animal/cockroach,/turf/open/floor/plating,/area/maintenance/aft) +"bzf" = (/obj/structure/janitorialcart,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/janitor) +"bzg" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/janitor) +"bzh" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"bzi" = (/obj/item/cardboard_cutout,/turf/open/floor/plating,/area/maintenance/disposal) +"bzj" = (/obj/machinery/light/small{dir = 4},/obj/structure/table,/obj/item/flashlight,/obj/item/flashlight,/obj/item/assembly/flash,/obj/item/assembly/flash,/obj/item/clothing/glasses/meson,/turf/open/floor/plating,/area/storage/tech) +"bzk" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/storage/tech) +"bzl" = (/obj/structure/closet/secure_closet,/obj/effect/spawner/lootdrop/organ_spawner,/obj/effect/spawner/lootdrop/organ_spawner,/obj/effect/spawner/lootdrop/organ_spawner,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/disposal) +"bzm" = (/obj/machinery/conveyor{dir = 5; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) +"bzn" = (/obj/machinery/conveyor{dir = 4; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) +"bzo" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/tank/internals/air,/obj/item/flashlight,/turf/open/floor/plating,/area/maintenance/starboard/central) +"bzp" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/disposal) +"bzq" = (/obj/machinery/light{dir = 8},/obj/structure/sign/warning/pods{pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bzr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/machinery/meter,/turf/closed/wall,/area/hallway/primary/aft) +"bzs" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bzt" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bzu" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 4; id = "MiningConveyer"},/turf/open/floor/plating/airless,/area/quartermaster/miningoffice) +"bzv" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 4; id = "MiningConveyer"},/obj/structure/plasticflaps,/turf/open/floor/plating/airless,/area/quartermaster/miningoffice) +"bzw" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bzx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation Room"; req_access_txt = "63"},/turf/open/floor/plasteel/dark,/area/security/brig) +"bzy" = (/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bzz" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/white,/area/gateway) +"bzA" = (/obj/machinery/power/apc{areastring = "/area/medical/chemistry"; dir = 1; name = "Chemistry APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bzB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bzC" = (/obj/structure/closet/toolcloset,/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bzD" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "evablock"; name = "EVA Router"},/turf/open/floor/plating,/area/router/eva) +"bzE" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/conveyor{dir = 4; id = "router_off"},/turf/open/floor/plating,/area/router) +"bzF" = (/obj/structure/window/reinforced/spawner,/obj/machinery/conveyor{dir = 4; id = "router_off"},/turf/open/floor/plating,/area/router) +"bzG" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bzH" = (/obj/structure/disposalpipe/segment,/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/disposal) +"bzI" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bzJ" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"bzK" = (/obj/machinery/disposal/bin{name = "Chapel Corpse Delivery"},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/stripes/red/full,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"bzL" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) +"bzM" = (/obj/structure/window/reinforced/spawner,/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) +"bzN" = (/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"bzO" = (/obj/machinery/conveyor_switch/oneway{id = "recycler"; name = "Recycler Conveyor Control"},/turf/open/floor/plating,/area/maintenance/disposal) +"bzP" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/router) +"bzQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/maintenance/department/chapel) +"bzR" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"bzS" = (/obj/structure/table,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/item/clothing/gloves/color/latex,/obj/item/healthanalyzer,/obj/item/reagent_containers/spray/cleaner,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"bzT" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/maintenance/port/central"; dir = 4; name = "Central Port Maintenance APC"; pixel_x = 24},/turf/open/floor/plating,/area/maintenance/port/central) +"bzU" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 6},/obj/machinery/meter,/turf/closed/wall,/area/hallway/primary/aft) +"bzV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/hallway/primary/aft) +"bzW" = (/obj/machinery/vending/assist,/turf/open/floor/plating,/area/storage/tech) +"bzX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Toxins Launch Room"; req_access_txt = "7;8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing) +"bzY" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/hallway/primary/aft) +"bzZ" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/quartermaster/miningoffice) +"bAa" = (/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bAb" = (/turf/open/floor/plating/airless,/area/science/xenobiology) +"bAc" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/gateway) +"bAd" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/external{name = "Central Starboard Exterior Access"; req_access_txt = "13"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/central) +"bAe" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel,/area/router) +"bAf" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating/airless,/area/science/xenobiology) +"bAg" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/closed/wall/r_wall,/area/science/xenobiology) +"bAh" = (/obj/item/reagent_containers/food/condiment/pack/mustard{pixel_x = 6; pixel_y = 3},/obj/item/reagent_containers/food/condiment/pack/ketchup{pixel_x = -2; pixel_y = 6},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = -5; pixel_y = 7},/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = 1; pixel_y = 3},/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bAi" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plasteel,/area/router) +"bAj" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/janitor) +"bAk" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Recycler"; req_one_access_txt = "12;50"},/obj/effect/turf_decal/delivery,/turf/open/floor/plating,/area/maintenance/disposal) +"bAl" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing) +"bAm" = (/obj/effect/decal/cleanable/dirt,/obj/item/cigbutt,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel,/area/router) +"bAn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop) +"bAo" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"bAp" = (/obj/structure/bed,/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/item/bedsheet/purple,/obj/effect/landmark/start/janitor,/turf/open/floor/plasteel,/area/janitor) +"bAq" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"bAr" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router) +"bAs" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bAt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/camera{c_tag = "Fore Maintenance - Starboard"; pixel_x = 22},/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_y = 32},/turf/open/floor/plating,/area/maintenance/fore) +"bAu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bAv" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/bed,/obj/item/bedsheet/qm,/obj/effect/landmark/start/quartermaster,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/quartermaster/qm) +"bAw" = (/obj/item/paper/fluff/bee_objectives,/obj/item/toy/plush/beeplushie,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) +"bAx" = (/obj/machinery/conveyor{dir = 1; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) +"bAy" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bAz" = (/obj/structure/disposalpipe/junction/flip{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/starboard/central) +"bAA" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 10},/turf/open/space/basic,/area/space/nearstation) +"bAB" = (/obj/item/beacon,/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bAC" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bAD" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/window/eastleft{name = "Chemistry Desk"; req_access_txt = "33"},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bAE" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/office/light{dir = 8},/obj/machinery/button/door{id = "chem1"; name = "Shutters Control Button"; pixel_x = -8; pixel_y = 24; req_access_txt = "29"},/obj/effect/landmark/start/chemist,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bAF" = (/obj/machinery/gateway/centerstation,/turf/open/floor/engine,/area/gateway) +"bAG" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing) +"bAH" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bAI" = (/obj/machinery/photocopier,/obj/machinery/requests_console{department = "Law Office"; name = "Law Office RC"; pixel_y = 32},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) +"bAJ" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/clothing/neck/stethoscope,/obj/item/clothing/glasses/hud/health,/obj/item/stamp/cmo,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/cmo"; dir = 1; name = "Chief Medical Officer's Office APC"; pixel_y = 24},/mob/living/simple_animal/pet/cat/Runtime,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"bAK" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/disposal) +"bAL" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: WASTE EJECTION"; pixel_x = -32},/turf/open/space/basic,/area/space) +"bAM" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bAN" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/tank/internals/air,/obj/item/flashlight,/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plating,/area/maintenance/starboard/central) +"bAO" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/maintenance/department/chapel) +"bAP" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bAQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/disposal) +"bAR" = (/obj/machinery/door/airlock/engineering/glass{name = "Thermo-Electric Generator Room"; req_access_txt = "10"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"bAS" = (/turf/closed/wall/r_wall/rust,/area/maintenance/disposal) +"bAT" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bAU" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/science/mixing) +"bAV" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel/white,/area/science/mixing) +"bAW" = (/obj/structure/sign/poster/official/get_your_legs,/turf/closed/wall,/area/hallway/secondary/exit) +"bAX" = (/obj/structure/table/wood,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable{icon_state = "1-8"},/obj/item/paper/fluff/cogstation/letter_cap{pixel_x = -2; pixel_y = 4},/obj/item/flashlight/lamp,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) +"bAY" = (/obj/machinery/status_display,/turf/closed/wall,/area/hallway/secondary/exit) +"bAZ" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/carpet,/area/chapel/main) +"bBa" = (/obj/structure/sign/poster/official/help_others,/turf/closed/wall,/area/hallway/secondary/exit) +"bBb" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/grille/broken,/obj/effect/landmark/blobstart,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel) +"bBc" = (/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/white/corner{dir = 8},/area/hallway/secondary/exit) +"bBd" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/popcorn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness) +"bBe" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/sign/warning/pods{pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bBf" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/storage/tech) +"bBg" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/storage/tech) +"bBh" = (/obj/machinery/conveyor{dir = 1; id = "recycler"},/obj/structure/sign/warning/vacuum{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/disposal) +"bBi" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bBj" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/crew_quarters/heads/captain"; dir = 4; name = "Captain's Quarters APC"; pixel_x = 26},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"bBk" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) +"bBl" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/hallway/primary/aft) +"bBm" = (/obj/structure/chair,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/exit) +"bBn" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bBo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/door/airlock/engineering/glass{name = "Thermo-Electric Generator"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"bBp" = (/obj/machinery/conveyor/inverted{dir = 9; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) +"bBq" = (/obj/machinery/recycler,/obj/machinery/conveyor{dir = 4; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) +"bBr" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) +"bBs" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"bBt" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) +"bBu" = (/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"bBv" = (/turf/closed/wall,/area/router) +"bBw" = (/obj/structure/chair,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/exit) +"bBx" = (/obj/structure/table,/obj/item/storage/toolbox/electrical,/obj/item/clothing/gloves/color/yellow,/obj/item/multitool,/obj/item/t_scanner,/turf/open/floor/plating,/area/storage/tech) +"bBy" = (/obj/machinery/recharge_station,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bBz" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bBA" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/structure/ore_box,/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bBB" = (/obj/machinery/conveyor/auto{id = "router"},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 4},/turf/open/floor/plating,/area/router) +"bBC" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router) +"bBD" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 4; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) +"bBE" = (/obj/structure/grille,/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"}) +"bBF" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router) +"bBG" = (/obj/machinery/conveyor/inverted{dir = 10; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) +"bBH" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router) +"bBI" = (/obj/machinery/computer/shuttle/mining,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bBJ" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/science/xenobiology) +"bBK" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/button/door{id = "recycleraccess"; name = "Recycler Access Control"; pixel_y = -24},/turf/open/floor/plasteel,/area/maintenance/disposal) +"bBL" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bBM" = (/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bBN" = (/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix{dir = 1},/turf/open/floor/engine,/area/science/mixing) +"bBO" = (/turf/closed/wall/r_wall,/area/engine/engine_smes{name = "Power Monitoring"}) +"bBP" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/window/eastright{name = "Chemistry Desk"; req_access_txt = "33"},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bBQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central) +"bBR" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "Computer Core APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"bBS" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"bBT" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bBU" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/sign/departments/cargo{pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bBV" = (/obj/machinery/light/small,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router) +"bBW" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bBX" = (/obj/machinery/door/airlock/external{name = "Routing Depot"; req_one_access_txt = "10;31"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) +"bBY" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external{name = "EVA Router"; req_access_txt = "19"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/router/eva) +"bBZ" = (/turf/closed/wall,/area/hallway/secondary/exit) +"bCa" = (/obj/machinery/power/smes/engineering,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"}) +"bCb" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"bCc" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/router/eva) +"bCd" = (/obj/effect/landmark/start/captain,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) +"bCe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Personnel's Desk"; departmentType = 5; name = "Head of Personnel RC"; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) +"bCf" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/chemist,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bCg" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/chemist,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bCh" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/medbay/central) +"bCi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bCj" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/disposal) +"bCk" = (/obj/structure/disposalpipe/junction/flip{dir = 1},/turf/closed/wall,/area/maintenance/disposal) +"bCl" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva) +"bCm" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bCn" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/eva) +"bCo" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/department/eva) +"bCp" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bCq" = (/obj/machinery/conveyor{dir = 4; id = "recycler"},/obj/machinery/door/poddoor{id = "recycleraccess"; name = "Recycler Access"},/turf/open/floor/plating,/area/maintenance/disposal) +"bCr" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/maintenance/disposal) +"bCs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bCt" = (/obj/effect/turf_decal/bot,/obj/structure/table,/obj/machinery/light/small{dir = 4},/obj/item/storage/box/engineer{pixel_y = 4},/turf/open/floor/plasteel,/area/maintenance/disposal) +"bCu" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/router/eva) +"bCv" = (/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"bCw" = (/obj/structure/window/reinforced/spawner/north,/obj/machinery/conveyor/auto{dir = 8; id = "eva"},/turf/open/floor/plating,/area/router/eva) +"bCx" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bCy" = (/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/spawner/north,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor/auto{dir = 8; id = "eva"},/turf/open/floor/plating,/area/router/eva) +"bCz" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/structure/closet/secure_closet/engineering_personal,/obj/item/clothing/under/misc/overalls,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/storage/primary) +"bCA" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bCB" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) +"bCC" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/department/eva) +"bCD" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 29},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bCE" = (/obj/machinery/conveyor/auto{dir = 8; id = "eva"},/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "evablock"; name = "EVA Router"},/turf/open/floor/plating,/area/router/eva) +"bCF" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) +"bCG" = (/obj/item/cigbutt,/obj/item/radio/intercom{frequency = 1359; name = "Station Intercom (Security)"; pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"bCH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bCI" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"bCJ" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) +"bCK" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"bCL" = (/turf/closed/wall/rust,/area/security/detectives_office) +"bCM" = (/turf/closed/wall/r_wall/rust,/area/security/detectives_office) +"bCN" = (/obj/structure/filingcabinet,/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"bCO" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/wood,/area/crew_quarters/fitness) +"bCP" = (/obj/structure/table/wood,/obj/item/storage/briefcase,/obj/item/taperecorder,/obj/item/radio{pixel_x = -6},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"bCQ" = (/obj/structure/table/wood,/obj/machinery/computer/med_data/laptop{dir = 8; pixel_y = 2},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"bCR" = (/obj/structure/window/reinforced/spawner/north,/obj/effect/turf_decal/stripes/line,/obj/machinery/mass_driver{dir = 8; id = "airbridge_in"; name = "Router Driver"},/turf/open/floor/plating,/area/router) +"bCS" = (/obj/structure/closet,/obj/machinery/camera{c_tag = "Central Plaza - Legal Desk"; dir = 1},/turf/open/floor/plasteel/dark,/area/lawoffice) +"bCT" = (/obj/structure/window/reinforced/spawner/north,/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/sorting/mail/flip,/obj/machinery/conveyor{dir = 8; id = "router_off"},/turf/open/floor/plating,/area/router) +"bCU" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating/airless,/area/maintenance/disposal) +"bCV" = (/turf/open/floor/plating/airless,/area/maintenance/disposal) +"bCW" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/machinery/door/airlock/engineering/glass{name = "Thermo-Electric Generator"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"bCX" = (/obj/machinery/rnd/production/circuit_imprinter/department/science,/obj/item/reagent_containers/glass/beaker/sulphuric,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/science/lab) +"bCY" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/sign/warning/nosmoking{pixel_x = 32},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bCZ" = (/obj/machinery/conveyor{dir = 8; id = "router_off"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/router) +"bDa" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"bDb" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Recycler Exterior Access"; req_one_access_txt = "13;50"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) +"bDc" = (/obj/machinery/vending/security,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"bDd" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Aft Maintenance - Port"; pixel_x = 22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"bDe" = (/obj/machinery/disposal/bin{name = "Corpse Delivery"},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/delivery/red,/turf/open/floor/plasteel/dark,/area/chapel/office) +"bDf" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/service,/turf/open/floor/plating,/area/storage/tech) +"bDg" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/medical,/turf/open/floor/plating,/area/storage/tech) +"bDh" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/rnd,/turf/open/floor/plating,/area/storage/tech) +"bDi" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock{name = "Service Hallway"; req_one_access_txt = "25;26;28;35"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"bDj" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/decal/cleanable/dirt,/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/department/chapel) +"bDk" = (/obj/machinery/light,/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 15},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) +"bDl" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bDm" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/hallway/primary/aft"; dir = 1; name = "Aft Primary Hallway APC"; pixel_x = 1; pixel_y = 24},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/aft) +"bDn" = (/obj/machinery/icecream_vat,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) +"bDo" = (/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"bDp" = (/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"bDq" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) +"bDr" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) +"bDs" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) +"bDt" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) +"bDu" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/book/manual/wiki/barman_recipes,/obj/item/reagent_containers/rag,/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bDv" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"bDw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "AIChamberShutter"; name = "AI Chamber Shutters"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) +"bDx" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/hallway/secondary/service) +"bDy" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bDz" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{dir = 1},/obj/machinery/camera{c_tag = "Service Hallway - Aft"; pixel_x = 22},/turf/open/floor/plating,/area/hallway/secondary/service) +"bDA" = (/turf/closed/wall/r_wall,/area/hallway/secondary/service) +"bDB" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"bDC" = (/turf/open/floor/plating,/area/hallway/secondary/service) +"bDD" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 8; id = "router_off"},/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/router) +"bDE" = (/obj/structure/closet/crate/freezer,/obj/item/reagent_containers/food/snacks/store/cheesewheel,/obj/item/reagent_containers/food/snacks/grown/pineapple,/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris,/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris,/obj/item/reagent_containers/food/snacks/grown/tomato,/obj/item/reagent_containers/food/snacks/grown/tomato,/obj/item/reagent_containers/food/snacks/grown/bluecherries,/obj/item/reagent_containers/food/snacks/grown/citrus/lime,/turf/open/floor/plating,/area/hallway/secondary/service) +"bDF" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plating,/area/hallway/secondary/service) +"bDG" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plating,/area/hallway/secondary/service) +"bDH" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/hallway/secondary/service) +"bDI" = (/obj/structure/closet/crate/freezer,/obj/effect/spawner/lootdrop/three_course_meal,/obj/item/reagent_containers/food/snacks/chocolatebar,/obj/item/reagent_containers/food/snacks/chocolatebar,/turf/open/floor/plating,/area/hallway/secondary/service) +"bDJ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"bDK" = (/obj/structure/grille,/turf/open/floor/plating,/area/hallway/secondary/service) +"bDL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bDM" = (/obj/structure/table/reinforced,/obj/item/transfer_valve{pixel_x = 6},/obj/item/transfer_valve{pixel_x = 6},/obj/item/transfer_valve,/obj/item/transfer_valve,/obj/item/transfer_valve{pixel_x = -6},/obj/item/transfer_valve{pixel_x = -6},/obj/machinery/camera{c_tag = "Toxins Lab - Starboard"; dir = 8; pixel_y = -22},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/turf/open/floor/plasteel/white,/area/science/mixing) +"bDN" = (/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bDO" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"bDP" = (/obj/machinery/computer/message_monitor{dir = 4},/obj/machinery/light{dir = 8},/turf/open/floor/circuit,/area/bridge) +"bDQ" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/bridge) +"bDR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/bridge) +"bDS" = (/turf/open/floor/plasteel/stairs,/area/crew_quarters/bar) +"bDT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/science/robotics/lab) +"bDU" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "AIChamberShutter"; name = "AI Chamber Shutters"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) +"bDV" = (/turf/open/floor/plasteel/stairs/left,/area/crew_quarters/bar) +"bDW" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "AI Chamber"; req_access_txt = "65"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) +"bDX" = (/turf/open/floor/plasteel/stairs/right,/area/crew_quarters/bar) +"bDY" = (/obj/structure/sign/barsign,/turf/closed/wall,/area/crew_quarters/bar) +"bDZ" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 26},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bEa" = (/obj/structure/chair/stool/bar,/turf/open/floor/carpet/green,/area/crew_quarters/bar) +"bEb" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/carpet/green,/area/crew_quarters/bar) +"bEc" = (/obj/structure/table,/obj/item/radio/off{pixel_x = -3; pixel_y = 1},/obj/item/radio/off{pixel_x = 7; pixel_y = -3},/obj/item/radio/off{pixel_x = 4; pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/circuit,/area/bridge) +"bEd" = (/obj/machinery/vending/cigarette,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bEe" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor{dir = 8; id = "router_off"},/obj/structure/disposalpipe/sorting/mail{dir = 4},/turf/open/floor/plating,/area/router) +"bEf" = (/obj/structure/reagent_dispensers,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard/fore) +"bEg" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) +"bEh" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/conveyor{dir = 8; id = "router_off"},/turf/open/floor/plating,/area/router) +"bEi" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/maintenance/department/chapel) +"bEj" = (/obj/machinery/light_switch{pixel_x = -24},/obj/structure/closet/crate,/obj/machinery/camera{c_tag = "Waste Disposal - Starboard"},/obj/item/stack/tile/noslip/thirty,/obj/structure/sign/poster/official/ue_no{pixel_y = 32},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/disposal) +"bEk" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/stripes/end{dir = 4},/turf/open/floor/plating,/area/quartermaster/sorting) +"bEl" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bEm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel's Office"; req_access_txt = "57"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) +"bEn" = (/obj/machinery/computer/card{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel,/area/security/checkpoint) +"bEo" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"bEp" = (/turf/closed/wall/r_wall,/area/maintenance/solars/starboard/fore) +"bEq" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) +"bEr" = (/obj/structure/sign/warning/vacuum/external{pixel_x = -32; pixel_y = 32},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"bEs" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/ai_monitored/storage/eva"; dir = 4; name = "EVA APC"; pixel_x = 24},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) +"bEt" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) +"bEu" = (/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_y = 32},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"bEv" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"bEw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Starboard Bow Solar Maintenance"; dir = 1},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) +"bEx" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 8; id = "router_off"},/turf/open/floor/plating,/area/router) +"bEy" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light/small{dir = 4},/obj/item/stock_parts/cell/high/plus,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) +"bEz" = (/obj/structure/chair/stool,/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"bEA" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Starboard Bow Solar Maintenance"; req_access_txt = "10"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) +"bEB" = (/obj/structure/rack,/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/item/radio/off{pixel_x = 7; pixel_y = 4},/obj/item/flashlight,/obj/item/crowbar/red,/obj/item/crowbar/red{pixel_x = -6; pixel_y = 4},/obj/item/radio/off{pixel_x = -8},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/machinery/camera{c_tag = "Starboard Bow Maintenance - Port"; pixel_x = 22},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"bEC" = (/obj/structure/table/glass,/obj/item/storage/fancy/donut_box,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bED" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/wood,/area/crew_quarters/fitness) +"bEE" = (/obj/structure/table,/obj/item/clothing/under/shorts/red,/obj/item/clothing/under/shorts/red,/obj/item/clothing/gloves/boxing{pixel_y = 8},/obj/item/clothing/gloves/boxing{pixel_y = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/wood,/area/crew_quarters/fitness) +"bEF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bEG" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"bEH" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) +"bEI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore) +"bEJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bEK" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/machinery/space_heater,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"bEL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/disposal) +"bEM" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"bEN" = (/obj/machinery/computer/communications{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/camera{c_tag = "Bridge - Captain's Quarters"; dir = 8; pixel_y = -22},/obj/machinery/requests_console{announcementConsole = 1; department = "Captain's Desk"; departmentType = 5; name = "Captain RC"; pixel_x = 30},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) +"bEO" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light_switch{pixel_x = -24},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"bEP" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/sign/poster/official/high_class_martini{pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"bEQ" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/disposal"; dir = 8; name = "Waste Disposal APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/disposal) +"bER" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/newscaster{pixel_y = -28},/turf/open/floor/carpet/green,/area/crew_quarters/bar) +"bES" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"bET" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/wood,/area/crew_quarters/fitness) +"bEU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"bEV" = (/obj/item/radio/intercom{frequency = 1359; name = "Station Intercom (Security)"; pixel_x = 26},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) +"bEW" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/break_room) +"bEX" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) +"bEY" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) +"bEZ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "AIChamberShutter"; name = "AI Chamber Shutters"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) +"bFa" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/router) +"bFb" = (/obj/structure/grille,/turf/open/floor/plating,/area/router) +"bFc" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bFd" = (/obj/structure/closet/crate/trashcart,/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel,/area/maintenance/department/chapel) +"bFe" = (/obj/structure/reagent_dispensers/watertank,/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plating,/area/maintenance/starboard/central) +"bFf" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/aiModule/supplied/oxygen{pixel_x = 2; pixel_y = 10},/obj/item/aiModule/supplied/quarantine{pixel_x = 1; pixel_y = 8},/obj/item/aiModule/zeroth/oneHuman{pixel_y = 4},/obj/effect/spawner/lootdrop/aimodule_harmful{pixel_x = -1; pixel_y = 2},/obj/item/aiModule/supplied/protectStation{pixel_x = -2},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"bFg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/suit_storage_unit/engine,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"bFh" = (/obj/effect/turf_decal/tile/brown,/obj/machinery/light,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bFi" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bFj" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) +"bFk" = (/turf/open/floor/circuit/telecomms,/area/science/xenobiology) +"bFl" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/xenobiology) +"bFm" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/obj/item/paper_bin,/obj/item/pen/fourcolor,/turf/open/floor/plasteel,/area/science/xenobiology) +"bFn" = (/turf/open/floor/plating/asteroid,/area/chapel/main) +"bFo" = (/obj/machinery/smartfridge/extract/preloaded,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/xenobiology) +"bFp" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bFq" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/obj/item/slime_scanner,/obj/item/slime_scanner,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/turf/open/floor/plasteel,/area/science/xenobiology) +"bFr" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating/airless,/area/science/test_area) +"bFs" = (/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bFt" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bFu" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab) +"bFv" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"bFw" = (/obj/machinery/monkey_recycler,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/science/xenobiology"; name = "Xenobiology Lab APC"; pixel_y = -24},/turf/open/floor/plasteel,/area/science/xenobiology) +"bFx" = (/obj/machinery/mecha_part_fabricator,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bFy" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) +"bFz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/item/paper/guides/cogstation/janitor,/turf/open/floor/plasteel,/area/janitor) +"bFA" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bFB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/science/lab) +"bFC" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/snack/random,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bFD" = (/obj/structure/disposaloutlet{dir = 4},/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bFE" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/aft) +"bFF" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/storage/tech) +"bFG" = (/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bFH" = (/obj/machinery/power/apc{name = "Customs APC"; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"bFI" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"bFJ" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bFK" = (/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"bFL" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"bFM" = (/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"bFN" = (/obj/structure/chair{dir = 4},/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/wood,/area/crew_quarters/fitness) +"bFO" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"bFP" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"bFQ" = (/obj/structure/table,/obj/item/clothing/under/shorts/blue,/obj/item/clothing/under/shorts/blue,/obj/item/clothing/gloves/boxing/blue{pixel_y = 8},/obj/item/clothing/gloves/boxing/blue{pixel_y = 8},/turf/open/floor/wood,/area/crew_quarters/fitness) +"bFR" = (/obj/item/kirbyplants{icon_state = "plant-08"},/turf/open/floor/wood,/area/crew_quarters/fitness) +"bFS" = (/obj/machinery/light,/turf/open/floor/wood,/area/crew_quarters/fitness) +"bFT" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"bFU" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"bFV" = (/obj/structure/window/reinforced,/obj/machinery/light,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"bFW" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"bFX" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bFY" = (/obj/structure/lattice/catwalk,/turf/closed/wall/r_wall,/area/engine/atmos) +"bFZ" = (/obj/machinery/chem_heater,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bGa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bGb" = (/obj/machinery/conveyor/auto{id = "router"},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) +"bGc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) +"bGd" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) +"bGe" = (/mob/living/simple_animal/crab/Coffee,/turf/open/floor/plating/asteroid,/area/chapel/main) +"bGf" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/main) +"bGg" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"bGh" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 10},/turf/open/space/basic,/area/space/nearstation) +"bGi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fore) +"bGj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore) +"bGk" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/router) +"bGl" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/poster/contraband/punch_shit{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/fore) +"bGm" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore) +"bGn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) +"bGo" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/turf/open/floor/plating,/area/maintenance/starboard/fore) +"bGp" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"bGq" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/starboard/fore) +"bGr" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bGs" = (/obj/machinery/vending/assist,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"bGt" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bGu" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"bGv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Arcade"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"bGw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Fitness Room"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/wood,/area/crew_quarters/fitness) +"bGx" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/crew_quarters/fitness) +"bGy" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/obj/effect/decal/cleanable/dirt,/obj/machinery/button/massdriver{id = "eng_in"; name = "mass driver button (Engineering)"; pixel_x = 24; pixel_y = -8},/obj/machinery/button/massdriver{id = "router_out"; name = "mass driver button (Other)"; pixel_x = 24; pixel_y = 12},/turf/open/floor/plasteel,/area/router) +"bGz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore) +"bGA" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bGB" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"bGC" = (/obj/structure/closet/emcloset,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/camera{c_tag = "Starboard Quarter Maintenance - Starboard"; network = list("ss13","rd")},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bGD" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"bGE" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bGF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Starboard Quarter Solar Access"; req_access_txt = "10"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) +"bGG" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"bGH" = (/obj/structure/grille/broken,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/spawner/lootdrop/grille_or_trash,/turf/open/floor/plating,/area/maintenance/port/fore) +"bGI" = (/turf/closed/wall/r_wall,/area/hallway/primary/central) +"bGJ" = (/obj/structure/rack,/obj/item/storage/box/bodybags,/obj/item/clothing/gloves/color/grey,/turf/open/floor/plating,/area/maintenance/starboard/central) +"bGK" = (/obj/machinery/conveyor{id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux) +"bGL" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/qm) +"bGM" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/item/kirbyplants{icon_state = "plant-20"; pixel_y = 3},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bGN" = (/obj/structure/closet/wardrobe/white,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bGO" = (/obj/structure/toilet{dir = 4},/obj/structure/window/reinforced/tinted{dir = 1},/obj/machinery/door/window/eastright{name = "Bathroom Stall"},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) +"bGP" = (/obj/machinery/mass_driver{dir = 1; id = "secserv"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) +"bGQ" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/violet/hidden,/turf/open/space/basic,/area/space/nearstation) +"bGR" = (/obj/structure/closet/wardrobe/grey,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/under/misc/staffassistant,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bGS" = (/obj/structure/toilet{dir = 4},/obj/structure/window/reinforced/tinted{dir = 1},/obj/machinery/door/window/eastright{name = "Bathroom Stall"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) +"bGT" = (/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) +"bGU" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/closed/wall,/area/maintenance/port/fore) +"bGV" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/closed/wall,/area/maintenance/port/fore) +"bGW" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/port/fore) +"bGX" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/starboard/central) +"bGY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"bGZ" = (/obj/structure/closet/crate/internals,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/router/eva) +"bHa" = (/obj/structure/closet/crate,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/router/eva"; dir = 4; name = "EVA Router APC"; pixel_x = 24},/obj/machinery/button/door{id = "evablock"; name = "Router Access Control"; pixel_x = 24; pixel_y = 10; req_access_txt = "19"},/turf/open/floor/plasteel,/area/router/eva) +"bHb" = (/obj/structure/closet/wardrobe/black,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bHc" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/obj/structure/window/reinforced/spawner/north,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) +"bHd" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore) +"bHe" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/violet/hidden,/turf/open/space/basic,/area/space/nearstation) +"bHf" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bHg" = (/obj/machinery/atmospherics/pipe/simple/violet/visible,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bHh" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/main) +"bHi" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/landmark/event_spawn,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"bHj" = (/obj/structure/table,/obj/structure/bedsheetbin/towel,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bHk" = (/turf/closed/wall,/area/crew_quarters/locker) +"bHl" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/port/fore) +"bHm" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/port/fore) +"bHn" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bHo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bHp" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"bHq" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bHr" = (/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bHs" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bHt" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bHu" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bHv" = (/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/clothing/under/misc/staffassistant,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bHw" = (/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/clothing/under/misc/staffassistant,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bHx" = (/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/light,/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bHy" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/item/kirbyplants{icon_state = "plant-14"},/turf/open/floor/plasteel,/area/crew_quarters/locker) +"bHz" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) +"bHA" = (/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 5},/turf/closed/wall/r_wall,/area/engine/gravity_generator) +"bHB" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/locker) +"bHC" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bHD" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/maintenance/aft) +"bHE" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bHF" = (/obj/structure/table/reinforced,/obj/item/assembly/timer{pixel_x = -5},/obj/item/assembly/timer{pixel_y = -7},/obj/item/assembly/timer{pixel_y = 6},/obj/item/assembly/timer{pixel_x = 8},/obj/machinery/airalarm/unlocked{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/white,/area/science/mixing) +"bHG" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/maintenance/aft) +"bHH" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/sign/poster/contraband/space_cube{pixel_y = 32},/turf/open/floor/plasteel/dark/side{dir = 4},/area/gateway) +"bHI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"bHJ" = (/obj/item/kirbyplants{icon_state = "plant-03"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"bHK" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall,/area/medical/morgue) +"bHL" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bHM" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/storage/tech) +"bHN" = (/turf/closed/wall,/area/maintenance/solars/starboard/aft) +"bHO" = (/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 8},/turf/closed/wall/r_wall,/area/engine/gravity_generator) +"bHP" = (/obj/structure/sign/warning/vacuum/external{pixel_y = -32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) +"bHQ" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bHR" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bHS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/circuit/telecomms,/area/science/xenobiology) +"bHT" = (/obj/machinery/computer/camera_advanced/xenobio{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bHU" = (/obj/structure/chair/office/light{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bHV" = (/obj/machinery/processor/slime,/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bHW" = (/obj/structure/chair/office/light{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bHX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Port Bow Maintenance"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/port/fore) +"bHY" = (/obj/machinery/computer/camera_advanced/xenobio{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bHZ" = (/turf/closed/indestructible{desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; icon_state = "riveted"; name = "hyper-reinforced wall"},/area/science/test_area) +"bIa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bIb" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bIc" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 14},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bId" = (/obj/structure/table,/obj/item/mmi,/obj/item/mmi,/obj/item/storage/box/bodybags,/obj/structure/window/reinforced/spawner/west,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"bIe" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty{pixel_x = 1},/obj/item/stack/sheet/glass/fifty{pixel_x = 1},/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/machinery/requests_console{department = "Robotics"; departmentType = 2; name = "Robotics RC"; pixel_y = 31; receive_ore_updates = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/robotics/lab) +"bIf" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/door/airlock/maintenance{name = "Chemistry Maintenance"; req_access_txt = "5; 33"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/chemistry) +"bIg" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/reagent_containers/food/snacks/chips,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bIh" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/delivery/white,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bIi" = (/obj/machinery/smartfridge/chemistry/preloaded,/turf/closed/wall,/area/medical/chemistry) +"bIj" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/item/tank/internals/anesthetic,/obj/item/clothing/mask/breath,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"bIk" = (/turf/closed/wall/r_wall,/area/science/robotics/lab) +"bIl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"bIm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bIn" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bIo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/directions/evac{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/hallway/primary/aft) +"bIp" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/primary/aft) +"bIq" = (/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bIr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"bIs" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bIt" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bIu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "5;6"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"bIv" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"bIw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"bIx" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bIy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "External Solar Access"; req_access_txt = "10;13"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) +"bIz" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) +"bIA" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) +"bIB" = (/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) +"bIC" = (/obj/machinery/conveyor/auto{id = "disposal"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"bID" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"bIE" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/open/floor/circuit/telecomms,/area/science/xenobiology) +"bIF" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"bIG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bIH" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bII" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bIJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bIK" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/item/extinguisher{pixel_x = -7; pixel_y = 3},/obj/item/extinguisher,/turf/open/floor/plasteel,/area/science/xenobiology) +"bIL" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/table/glass,/obj/item/reagent_containers/glass/beaker/large{pixel_x = -3; pixel_y = 3},/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bIM" = (/obj/machinery/shower{desc = "The HS-451. Standard Nanotrasen Hygiene Division design, although it looks like this one was installed more recently."; dir = 8; name = "emergency shower"; pixel_y = -4},/obj/structure/window/reinforced/spawner/north,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/medical/chemistry) +"bIN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bIO" = (/obj/effect/turf_decal/tile/purple,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bIP" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bIQ" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bIR" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bIS" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bIT" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/violet/hidden,/turf/open/space/basic,/area/space/nearstation) +"bIU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/junction{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bIV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"bIW" = (/obj/structure/table/wood,/obj/machinery/light,/obj/item/reagent_containers/food/drinks/bottle/absinthe,/obj/item/stack/spacecash/c20,/obj/item/coin/gold,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop) +"bIX" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel) +"bIY" = (/obj/machinery/atmospherics/pipe/simple/violet/hidden,/turf/open/space/basic,/area/space) +"bIZ" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bJa" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bJb" = (/obj/machinery/bloodbankgen,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bJc" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bJd" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bJe" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bJf" = (/obj/machinery/door/airlock/maintenance{name = "Chemistry Maintenance"; req_access_txt = "5; 33"},/obj/machinery/door/firedoor,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/medical/chemistry) +"bJg" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/storage/box/rxglasses{pixel_x = 2},/obj/item/pen,/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bJh" = (/obj/structure/sign/warning/biohazard,/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/medical/morgue) +"bJi" = (/obj/structure/bodycontainer/morgue,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"bJj" = (/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 6},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bJk" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"bJl" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bJm" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/lawoffice"; dir = 1; name = "Information Office APC"; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/lawoffice) +"bJn" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bJo" = (/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) +"bJp" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft) +"bJq" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) +"bJr" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 1},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) +"bJs" = (/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/item/clothing/suit/hooded/wintercoat/science,/obj/item/clothing/suit/hooded/wintercoat/science,/obj/item/clothing/shoes/winterboots,/obj/item/clothing/shoes/winterboots,/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bJt" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bJu" = (/obj/effect/turf_decal/loading_area,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/science/lab"; dir = 8; name = "Research and Development APC"; pixel_x = -24},/turf/open/floor/plasteel/white,/area/science/lab) +"bJv" = (/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bJw" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) +"bJx" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel,/area/science/xenobiology) +"bJy" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/airlock/public/glass,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bJz" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/circuit) +"bJA" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Circuitry Lab"; req_access_txt = "47"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/circuit) +"bJB" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bJC" = (/obj/machinery/camera{c_tag = "Library"; network = list("ss13","rd")},/obj/machinery/airalarm{pixel_y = 24},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/library) +"bJD" = (/obj/machinery/disposal/bin{name = "Corpse Disposal Unit"},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/red/full,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"bJE" = (/obj/machinery/mecha_part_fabricator,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bJF" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bJG" = (/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bJH" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab) +"bJI" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bJJ" = (/obj/machinery/computer/med_data,/obj/structure/window/reinforced/spawner/east,/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel,/area/medical/medbay/central) +"bJK" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/medical/medbay/lobby) +"bJL" = (/obj/machinery/dna_scannernew,/obj/effect/turf_decal/bot,/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel,/area/medical/medbay/central) +"bJM" = (/obj/machinery/camera/preset/toxins{dir = 4},/obj/item/target,/turf/open/floor/plating/airless,/area/science/test_area) +"bJN" = (/obj/machinery/clonepod,/obj/effect/turf_decal/bot,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/medical/medbay/central) +"bJO" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = 24},/obj/item/storage/firstaid/radbgone,/obj/item/reagent_containers/glass/beaker/synthflesh,/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel,/area/medical/medbay/central) +"bJP" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"bJQ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) +"bJR" = (/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bJS" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"bJT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/science/mixing) +"bJU" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"bJV" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{dir = 1; name = "euthanization chamber freezer"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"bJW" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/light,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"bJX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bJY" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/mixing) +"bJZ" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/camera{c_tag = "Xenobiology - Main Access"; network = list("ss13","rd")},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bKa" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bKb" = (/obj/machinery/chem_heater,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light,/turf/open/floor/plasteel,/area/science/xenobiology) +"bKc" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/reagent_containers/glass/beaker/large{pixel_x = -6},/obj/item/reagent_containers/glass/beaker{pixel_x = 4},/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel,/area/science/xenobiology) +"bKd" = (/obj/structure/table,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/clothing/glasses/welding,/obj/item/clothing/glasses/welding,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bKe" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/science/robotics/lab) +"bKf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bKg" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"bKh" = (/obj/machinery/door/window/westleft{name = "Operating Theatre"; req_access_txt = "45"},/turf/open/floor/plasteel,/area/medical/medbay/central) +"bKi" = (/obj/machinery/disposal/bin{name = "Morgue Delivery Bin"},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/red/full,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"bKj" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bKk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Morgue Maintenance"; req_access_txt = "6"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"bKl" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet,/turf/open/floor/plating,/area/router) +"bKm" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/item/storage/box/bodybags,/obj/structure/table,/obj/structure/table,/obj/item/bodybag,/obj/item/pen/blue,/obj/item/pen/red{pixel_y = 6},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"bKn" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/stripes/red/full,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"bKo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/quartermaster/miningoffice) +"bKp" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/hop) +"bKq" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/firedoor,/obj/effect/turf_decal/caution/stand_clear{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/xenobiology) +"bKr" = (/obj/item/stack/packageWrap,/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/router) +"bKs" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bKt" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bKu" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bKv" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bKw" = (/obj/structure/window/reinforced/spawner/west,/obj/structure/sign/poster/official/nanotrasen_logo{pixel_y = -32},/turf/open/floor/wood,/area/library) +"bKx" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"bKy" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bKz" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/genetics) +"bKA" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/genetics) +"bKB" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/warehouse) +"bKC" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall,/area/medical/genetics) +"bKD" = (/obj/machinery/door/airlock/external/glass{name = "Mining Dock Ferry"; req_access_txt = "48"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bKE" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/engine,/area/science/xenobiology) +"bKF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/engine,/area/science/xenobiology) +"bKG" = (/obj/machinery/computer/cargo/request{dir = 1},/obj/machinery/keycard_auth{pixel_x = 24; pixel_y = -8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop) +"bKH" = (/obj/item/beacon,/turf/open/floor/plating/airless,/area/science/test_area) +"bKI" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/engine,/area/science/mixing) +"bKJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/crew_quarters/heads/hop) +"bKK" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hop) +"bKL" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/router) +"bKM" = (/turf/open/floor/engine,/area/science/xenobiology) +"bKN" = (/obj/structure/table,/obj/item/storage/backpack/duffelbag/med/surgery,/obj/structure/window/reinforced/spawner/west,/obj/structure/window/reinforced,/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"bKO" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"bKP" = (/obj/machinery/door/window/southright,/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"bKQ" = (/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"bKR" = (/obj/structure/bookcase/random/religion,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/library) +"bKS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Genetics Lab"; req_access_txt = "9"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bKT" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/white,/area/medical/genetics) +"bKU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/vending/wardrobe/gene_wardrobe,/turf/open/floor/plasteel/white,/area/medical/genetics) +"bKV" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/clipboard{pixel_y = 3},/obj/item/paper_bin,/obj/item/hand_labeler,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/genetics) +"bKW" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/folder/white,/obj/item/storage/pill_bottle/mannitol{pixel_x = 4},/obj/item/storage/pill_bottle/mutadone,/turf/open/floor/plasteel/white,/area/medical/genetics) +"bKX" = (/obj/structure/table_frame,/obj/item/t_scanner{pixel_x = -4},/obj/machinery/camera{c_tag = "Supply - Warehouse Fore"; dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/warehouse) +"bKY" = (/turf/closed/wall,/area/medical/genetics) +"bKZ" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) +"bLa" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bLb" = (/obj/structure/closet/crate,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/item/stack/ore/glass,/obj/item/stack/ore/iron,/obj/item/stack/ore/silver,/obj/item/stack/ore/silver,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bLc" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) +"bLd" = (/mob/living/simple_animal/slime,/turf/open/floor/engine,/area/science/xenobiology) +"bLe" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hop) +"bLf" = (/obj/machinery/door/window/eastleft{name = "Containment Pen"; req_one_access_txt = "55"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/xenobiology) +"bLg" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bLh" = (/obj/structure/bed,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -28},/obj/item/bedsheet/captain,/obj/effect/landmark/start/captain,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) +"bLi" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"bLj" = (/obj/machinery/door/window/westright{name = "Containment Pen"; req_one_access_txt = "55"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/xenobiology) +"bLk" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) +"bLl" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) +"bLm" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"bLn" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/item/caution,/obj/item/shovel,/obj/item/stack/tile/plasteel{pixel_x = 10; pixel_y = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/warehouse) +"bLo" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/junction/yjunction{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router) +"bLp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) +"bLq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Genetics Lab"; req_access_txt = "9"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bLr" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bLs" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/geneticist,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/genetics) +"bLt" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bLu" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bLv" = (/obj/machinery/light,/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bLw" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 6},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bLx" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/science/mixing) +"bLy" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/engine,/area/science/xenobiology) +"bLz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"bLA" = (/obj/machinery/light_switch{pixel_y = -24},/obj/structure/table,/obj/item/stack/sheet/metal,/obj/item/stack/sheet/glass,/obj/item/flashlight,/obj/item/assembly/health,/obj/item/assembly/voice,/obj/item/assembly/timer,/obj/item/assembly/infra,/obj/item/assembly/igniter,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bLB" = (/obj/machinery/light,/obj/item/target,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless,/area/science/test_area) +"bLC" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"bLD" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/aft) +"bLE" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/button/ignition/incinerator/toxmix{pixel_x = -24; pixel_y = 8},/obj/machinery/button/door/incinerator_vent_toxmix{pixel_x = -24; pixel_y = -2},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/mixing) +"bLF" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"bLG" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Research Aft"; dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bLH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bLI" = (/obj/structure/reagent_dispensers/water_cooler,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/medical/medbay/central) +"bLJ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bLK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bLL" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bLM" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/medical/genetics) +"bLN" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bLO" = (/obj/item/pipe{pixel_x = -3},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/mob/living/simple_animal/bot/cleanbot{auto_patrol = 1; icon_state = "cleanbot1"; name = "Mopficcer Sweepsky"},/turf/open/floor/plating,/area/quartermaster/warehouse) +"bLP" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plating,/area/quartermaster/warehouse) +"bLQ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bLR" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bLS" = (/obj/machinery/atmospherics/pipe/simple/violet/visible,/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"bLT" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bLU" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bLV" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bLW" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central) +"bLX" = (/obj/item/kirbyplants{icon_state = "plant-02"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bLY" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bLZ" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bMa" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bMb" = (/obj/machinery/dna_scannernew,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bMc" = (/obj/machinery/computer/scan_consolenew{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bMd" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bMe" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bMf" = (/obj/machinery/computer/scan_consolenew{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/white,/area/medical/genetics) +"bMg" = (/obj/machinery/dna_scannernew,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) +"bMh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) +"bMi" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"bMj" = (/turf/closed/wall,/area/medical/medbay/central) +"bMk" = (/turf/closed/wall,/area/medical/virology) +"bMl" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/virology) +"bMm" = (/obj/structure/table/wood,/obj/machinery/light,/obj/item/clothing/under/misc/assistantformal{pixel_y = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"bMn" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/door/airlock/medical/glass{name = "Monkey Pen"; req_one_access_txt = "9;39"},/turf/open/floor/plasteel/white,/area/medical/virology) +"bMo" = (/obj/structure/closet/l3closet/virology,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/white,/area/medical/virology) +"bMp" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bMq" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Starboard Quarter Maintenance - Port"; dir = 8; pixel_y = -22},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bMr" = (/obj/machinery/vending/wardrobe/viro_wardrobe,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bMs" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plasteel/white,/area/medical/virology) +"bMt" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 10},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bMu" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bMv" = (/turf/open/floor/grass,/area/medical/virology) +"bMw" = (/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/virology) +"bMx" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bMy" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bMz" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/router"; dir = 4; name = "Router APC"; pixel_x = 24},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 19},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel,/area/router) +"bMA" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bMB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/router) +"bMC" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bMD" = (/obj/structure/flora/tree/palm,/obj/machinery/light{dir = 8},/turf/open/floor/grass,/area/medical/virology) +"bME" = (/obj/structure/flora/tree/palm,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/grass,/area/medical/virology) +"bMF" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/window/southright{name = "Cloning Access"; req_one_access_txt = "9;45"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bMG" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bMH" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/crowbar,/obj/machinery/requests_console{department = "Mining"; name = "Mining RC"; pixel_x = -30},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bMI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/grille/broken,/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 15},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/router) +"bMJ" = (/turf/open/floor/plasteel/white,/area/medical/virology) +"bMK" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 5},/turf/open/space/basic,/area/space/nearstation) +"bML" = (/obj/structure/flora/tree/palm,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/virology) +"bMM" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) +"bMN" = (/obj/structure/closet/l3closet/virology,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bMO" = (/obj/structure/closet/secure_closet/medical1,/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bMP" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) +"bMQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bMR" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bMS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/rust,/area/router) +"bMT" = (/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start/virologist,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) +"bMU" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/table,/obj/item/storage/box/donkpockets,/turf/open/floor/plasteel/white,/area/medical/virology) +"bMV" = (/obj/machinery/light,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/virology) +"bMW" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/router) +"bMX" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"bMY" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) +"bMZ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) +"bNa" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) +"bNb" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) +"bNc" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/virologist,/turf/open/floor/plasteel/white,/area/medical/virology) +"bNd" = (/obj/machinery/computer/atmos_alert{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/engine/atmos) +"bNe" = (/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/door/window/northleft{name = "AI Upload Chamber"; req_one_access_txt = "65"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) +"bNf" = (/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/router) +"bNg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/medical/virology) +"bNh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Virology Interior Airlock"; req_access_txt = "39"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) +"bNi" = (/obj/effect/landmark/blobstart,/turf/open/floor/grass,/area/medical/virology) +"bNj" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) +"bNk" = (/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) +"bNl" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor/auto{dir = 4; id = "router"},/turf/open/floor/plating,/area/router) +"bNm" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/paper_bin,/obj/item/pen/red,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/medical/virology) +"bNn" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/mass_driver{dir = 4; id = "router_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router) +"bNo" = (/obj/machinery/conveyor{dir = 1; id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux) +"bNp" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"bNq" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"bNr" = (/obj/structure/table,/obj/machinery/light{dir = 1},/obj/structure/bedsheetbin,/obj/item/clothing/glasses/science,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bNs" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bNt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bNu" = (/obj/machinery/light{dir = 8},/turf/open/floor/grass,/area/medical/virology) +"bNv" = (/obj/structure/sink{dir = 1; pixel_y = 25},/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bNw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) +"bNx" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/virology) +"bNy" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bNz" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/virology) +"bNA" = (/obj/machinery/smartfridge/chemistry/virology/preloaded,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel/white,/area/medical/virology) +"bNB" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/item/clothing/gloves/color/latex,/obj/item/healthanalyzer,/turf/open/floor/plasteel/white,/area/medical/virology) +"bNC" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/machinery/light,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel/white,/area/medical/virology) +"bND" = (/obj/machinery/computer/pandemic,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel/white,/area/medical/virology) +"bNE" = (/obj/machinery/computer/station_alert{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/engine/atmos) +"bNF" = (/turf/open/floor/plasteel/stairs,/area/medical/medbay/central) +"bNG" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"bNH" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) +"bNI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/departments/evac,/turf/open/floor/plating,/area/hallway/secondary/exit) +"bNJ" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/hallway/secondary/exit) +"bNK" = (/obj/machinery/power/solar{id = "aftstarboard"; name = "Aft-Starboard Solar Array"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/aft) +"bNL" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/solar/starboard/aft) +"bNM" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/oil,/turf/open/floor/plasteel,/area/maintenance/port/fore) +"bNN" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/router/eva) +"bNO" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) +"bNP" = (/obj/machinery/power/smes,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) +"bNQ" = (/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) +"bNR" = (/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) +"bNS" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/turf/open/space/basic,/area/solar/starboard/aft) +"bNT" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/port/fore) +"bNU" = (/obj/machinery/power/solar{id = "aftstarboard"; name = "Aft-Starboard Solar Array"},/obj/structure/cable,/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/aft) +"bNV" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bNW" = (/turf/open/floor/plasteel/stairs/left,/area/hallway/secondary/exit) +"bNX" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/stairs/right,/area/hallway/secondary/exit) +"bNY" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/stairs/left,/area/hallway/secondary/exit) +"bNZ" = (/turf/open/floor/plasteel/stairs/right,/area/hallway/secondary/exit) +"bOa" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bOb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/hallway/secondary/exit) +"bOc" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-4"},/turf/open/space/basic,/area/solar/starboard/aft) +"bOd" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/solar/starboard/aft) +"bOe" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external/glass{name = "Departures Shuttle Dock"},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bOf" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space/basic,/area/solar/starboard/aft) +"bOg" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bOh" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bOi" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bOj" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bOk" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/solar/starboard/aft) +"bOl" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bOm" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bOn" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Bathroom Maintenance"; req_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/crew_quarters/toilet/restrooms) +"bOo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/docking,/turf/open/floor/plating,/area/hallway/secondary/exit) +"bOp" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft) +"bOq" = (/obj/machinery/power/tracker,/obj/structure/cable,/turf/open/floor/plating/airless,/area/solar/starboard/aft) +"bOr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/closed/wall/r_wall,/area/science/mixing) +"bOs" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/bz,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"bOt" = (/obj/structure/table,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/gateway) +"bOu" = (/obj/structure/table/reinforced,/obj/item/assembly/prox_sensor{pixel_x = 8},/obj/item/assembly/prox_sensor{pixel_x = 8},/obj/item/assembly/prox_sensor{pixel_x = 8},/obj/item/assembly/prox_sensor{pixel_x = 8},/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_x = 30; receive_ore_updates = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) +"bOv" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/science/mixing) +"bOw" = (/obj/structure/lattice,/obj/item/reagent_containers/food/drinks/bottle/grappa,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation) +"bOx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/science/research{name = "Research Sector"}) +"bOy" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/light{dir = 1; light_color = "#c1caff"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"bOz" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"bOA" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"bOB" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/router/eva) +"bOC" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/router/eva) +"bOD" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/obj/machinery/sparker/toxmix{pixel_x = 25},/turf/open/floor/engine/vacuum,/area/science/mixing) +"bOE" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/hand_labeler,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bOF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bOG" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"bOH" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"bOI" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/computer/security/telescreen{dir = 1; name = "Test Chamber Monitor"; network = list("xeno"); pixel_y = 2},/turf/open/floor/plasteel,/area/science/xenobiology) +"bOJ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/obj/structure/cable{icon_state = "4-8"},/mob/living/simple_animal/pet/cat/space,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) +"bOK" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/window/northright{name = "Secure Xenobiological Containment"; req_one_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) +"bOL" = (/obj/machinery/computer/card{dir = 8},/obj/machinery/keycard_auth{pixel_x = 8; pixel_y = -24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) +"bOM" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/science/xenobiology) +"bON" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"bOO" = (/obj/machinery/portable_atmospherics/scrubber,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/dark,/area/science/explab) +"bOP" = (/obj/machinery/shieldwallgen/xenobiologyaccess,/turf/open/floor/plating,/area/science/xenobiology) +"bOQ" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"bOR" = (/obj/structure/table/wood,/obj/item/pinpointer/nuke,/obj/item/card/id/captains_spare,/obj/item/hand_tele,/obj/item/disk/nuclear,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"bOS" = (/obj/structure/table/wood,/obj/machinery/light,/obj/item/storage/photo_album/Captain,/obj/item/camera{pixel_y = -6},/obj/item/stamp/captain,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"bOT" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/engine,/area/science/xenobiology) +"bOU" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/engine,/area/science/xenobiology) +"bOV" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/eva) +"bOW" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/engine,/area/science/xenobiology) +"bOX" = (/obj/structure/table/reinforced,/obj/item/electropack,/obj/item/assembly/signaler,/turf/open/floor/engine,/area/science/xenobiology) +"bOY" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/machinery/camera{c_tag = "Customs - Aft"; dir = 4},/obj/structure/window/reinforced/spawner,/obj/machinery/door/poddoor/shutters/preopen{id = "HoPAft"; name = "HoP Aft Desk Shutters"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"bOZ" = (/obj/structure/bed,/obj/item/bedsheet/purple,/turf/open/floor/engine,/area/science/xenobiology) +"bPa" = (/obj/item/beacon,/turf/open/floor/engine,/area/science/xenobiology) +"bPb" = (/obj/structure/table/reinforced,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/turf/open/floor/engine,/area/science/xenobiology) +"bPc" = (/obj/structure/chair/comfy/black,/turf/open/floor/engine,/area/science/xenobiology) +"bPd" = (/obj/structure/table/reinforced,/obj/item/book/random/triple,/turf/open/floor/engine,/area/science/xenobiology) +"bPe" = (/obj/structure/table/reinforced,/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/engine,/area/science/xenobiology) +"bPf" = (/obj/machinery/light,/turf/open/floor/engine,/area/science/xenobiology) +"bPg" = (/obj/structure/chair{dir = 4},/turf/open/floor/engine,/area/science/xenobiology) +"bPh" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space/nearstation) +"bPi" = (/obj/structure/chair{dir = 8},/turf/open/floor/engine,/area/science/xenobiology) +"bPj" = (/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner,/obj/machinery/light,/turf/open/floor/engine,/area/science/xenobiology) +"bPk" = (/obj/structure/table/reinforced,/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/suit/apron/surgical,/obj/item/clothing/suit/apron/surgical,/turf/open/floor/engine,/area/science/xenobiology) +"bPl" = (/obj/structure/chair/sofa/right,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/item/book/manual/wiki/research_and_development,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bPm" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bPn" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bPo" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plating/airless,/area/space/nearstation) +"bPp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/structure/window/reinforced/spawner/north,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) +"bPq" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/mineral/stacking_machine{input_dir = 2},/turf/open/floor/plating,/area/maintenance/disposal) +"bPr" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"bPs" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft) +"bPt" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/bridge) +"bPu" = (/obj/effect/landmark/start/cook,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) +"bPv" = (/obj/structure/table/reinforced,/obj/item/clothing/gloves/color/yellow,/obj/item/multitool,/obj/item/multitool{pixel_x = 5; pixel_y = 3},/obj/item/t_scanner{pixel_x = -6; pixel_y = 4},/obj/item/t_scanner{pixel_x = -4},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) +"bPw" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft) +"bPx" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/storage/primary) +"bPy" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"bPz" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"bPA" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"bPB" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bPC" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Waste In"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bPD" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Escape Hall - Fore"; dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bPE" = (/obj/structure/table/glass,/obj/item/clipboard,/obj/item/storage/crayons,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bPF" = (/obj/structure/table/glass,/obj/item/storage/fancy/cigarettes,/obj/item/lighter{pixel_x = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bPG" = (/obj/structure/chair{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bPH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bPI" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bPJ" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bPK" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"bPL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"bPM" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/storage/tech) +"bPN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft) +"bPO" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/effect/turf_decal/tile/red,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/exit) +"bPP" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/medbay/central) +"bPQ" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bPR" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light_switch{pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bPS" = (/obj/structure/bodycontainer/morgue{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"bPT" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/exit) +"bPU" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/highsecurity{name = "AI Upload Access"; req_access_txt = "16"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) +"bPV" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) +"bPW" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/vehicle/ridden/atv,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/qm) +"bPX" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 9},/turf/open/space/basic,/area/space/nearstation) +"bPY" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bPZ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/sorting/mail{sortType = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bQa" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bQb" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera/motion{c_tag = "AI Foyer"; network = list("minisat"); pixel_x = 22},/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/ai"; dir = 1; name = "AI Chamber turret control"; pixel_x = 5; pixel_y = 24; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"bQc" = (/obj/structure/bodycontainer/morgue{dir = 8},/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"bQd" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bQe" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space/basic,/area/space/nearstation) +"bQf" = (/obj/structure/rack,/obj/item/tank/jetpack/carbondioxide,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"bQg" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=sci"; location = "market"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bQh" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bQi" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) +"bQj" = (/obj/structure/bodycontainer/morgue{dir = 8},/obj/machinery/light_switch{pixel_x = 24},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"bQk" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bQl" = (/obj/structure/bed/roller,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bQm" = (/obj/structure/bed/roller,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bQn" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bQo" = (/obj/structure/disposalpipe/junction/yjunction,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"bQp" = (/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/maintenance/aft) +"bQq" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/structure/table/wood,/obj/machinery/airalarm{pixel_y = 24},/obj/item/modular_computer/laptop/preset/civilian,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/paper/guides/cogstation/letter_atmos,/turf/open/floor/plasteel,/area/engine/break_room) +"bQr" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bQs" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) +"bQt" = (/obj/machinery/conveyor/auto{dir = 5; id = "router"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) +"bQu" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bQv" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 24},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bQw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bQx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bQy" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bQz" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bQA" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -28},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel/dark,/area/lawoffice) +"bQB" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/weldingtool,/obj/item/wrench/medical,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bQC" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bQD" = (/obj/machinery/power/apc{name = "Tech Storage APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/storage/tech) +"bQE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft) +"bQF" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) +"bQG" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) +"bQH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) +"bQI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bQJ" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/power/apc{name = "Medbay Treatment Center APC"; pixel_y = -24},/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/cable,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bQK" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/atmospheric_technician,/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"bQL" = (/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bQM" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/break_room) +"bQN" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space/basic,/area/space/nearstation) +"bQO" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/space/basic,/area/space/nearstation) +"bQP" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bQQ" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/dark/side{dir = 8},/area/science/robotics/lab) +"bQR" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/directions/evac{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/primary/aft) +"bQS" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space/basic,/area/space/nearstation) +"bQT" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/radio/intercom{frequency = 1447; name = "Station Intercom (AI Private)"; pixel_y = 24},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/status_display{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) +"bQU" = (/obj/structure/chair/office/light{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/virology) +"bQV" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/space/basic,/area/space/nearstation) +"bQW" = (/obj/machinery/conveyor/auto{dir = 4; id = "router"},/turf/open/floor/plating,/area/router) +"bQX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/science/mixing) +"bQY" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bQZ" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/landmark/start/scientist,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bRa" = (/obj/item/cigbutt,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore) +"bRb" = (/obj/machinery/door/window/southleft{name = "Captain's Equipment"; req_access_txt = "20"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain) +"bRc" = (/obj/machinery/suit_storage_unit/captain,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"bRd" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/engine/storage"; dir = 4; name = "Canister Storage APC"; pixel_x = 24},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) +"bRe" = (/obj/machinery/computer/security/wooden_tv,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/lawoffice) +"bRf" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bRg" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bRh" = (/obj/structure/sign/warning/securearea{pixel_x = -32},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit) +"bRi" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) +"bRj" = (/obj/machinery/atmospherics/components/trinary/filter/flipped,/turf/open/floor/plasteel/white,/area/science/mixing) +"bRk" = (/obj/machinery/disposal/bin,/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/white,/area/science/mixing) +"bRl" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/router) +"bRm" = (/obj/structure/closet/bombcloset,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/white,/area/science/mixing) +"bRn" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation) +"bRo" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden,/turf/open/space/basic,/area/space/nearstation) +"bRp" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 5},/turf/open/space/basic,/area/space/nearstation) +"bRq" = (/obj/machinery/portable_atmospherics/scrubber/huge/movable,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/white,/area/science/mixing) +"bRr" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bRs" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bRt" = (/obj/structure/closet/wardrobe/miner,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/quartermaster/miningoffice"; dir = 8; name = "Mining Office APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bRu" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/qm) +"bRv" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/space/basic,/area/space/nearstation) +"bRw" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bRx" = (/obj/structure/table,/obj/item/circuitboard/machine/cyborgrecharger,/obj/item/disk/design_disk,/obj/machinery/camera/motion{c_tag = "Computer Core"; dir = 1; network = list("minisat")},/turf/open/floor/circuit/green,/area/science/server{name = "Computer Core"}) +"bRy" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bRz" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bRA" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"bRB" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 29},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bRC" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) +"bRD" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -6; pixel_y = 2},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = 6; pixel_y = 3},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/bridge) +"bRE" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/router) +"bRF" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"bRG" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bRH" = (/obj/structure/chair/sofa/right,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 29},/turf/open/floor/wood,/area/medical/medbay/lobby) +"bRI" = (/turf/closed/wall/r_wall,/area/medical/medbay/central) +"bRJ" = (/obj/structure/chair/sofa/left,/obj/effect/landmark/start/assistant,/obj/machinery/status_display{pixel_y = 32},/obj/machinery/camera{c_tag = "Medbay - Waiting Room"; network = list("ss13","rd")},/turf/open/floor/wood,/area/medical/medbay/lobby) +"bRK" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/engine/vacuum,/area/engine/atmos) +"bRL" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bRM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/left,/area/science/research{name = "Research Sector"}) +"bRN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/stairs/medium,/area/science/research{name = "Research Sector"}) +"bRO" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bRP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "E.V.A. Storage"; req_access_txt = "18"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"bRQ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"bRR" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/junction/flip{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bRS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bRT" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin{name = "Lab Delivery"},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bRU" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"bRV" = (/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/dark/side{dir = 9},/area/science/robotics/lab) +"bRW" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/status_display/ai{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bRX" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bRY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bRZ" = (/obj/structure/bookcase/random/nonfiction,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/library) +"bSa" = (/obj/structure/closet/secure_closet/medical3,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/storage/belt/medolier,/obj/item/clothing/neck/stethoscope,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bSb" = (/turf/open/floor/engine/n2o,/area/engine/atmos) +"bSc" = (/obj/machinery/vending/wardrobe/medi_wardrobe,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bSd" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/loading_area,/turf/open/floor/plasteel/dark/side{dir = 1},/area/science/robotics/lab) +"bSe" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel/dark/side{dir = 1},/area/science/robotics/lab) +"bSf" = (/obj/structure/table,/obj/item/analyzer,/obj/item/healthanalyzer,/obj/item/plant_analyzer,/obj/item/aicard,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 29},/turf/open/floor/plating,/area/storage/tech) +"bSg" = (/obj/machinery/rnd/production/techfab/department/medical,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bSh" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/medical/medbay/central) +"bSi" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/engine/n2o,/area/engine/atmos) +"bSj" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/effect/landmark/blobstart,/obj/effect/landmark/xeno_spawn,/obj/machinery/camera{c_tag = "Xenobiology - Kill Chamber"; dir = 4},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) +"bSk" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/public/glass{name = "AI Access"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) +"bSl" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing) +"bSm" = (/obj/machinery/modular_computer/console/preset/engineering,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) +"bSn" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/electricshock,/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"}) +"bSo" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"}) +"bSp" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"}) +"bSq" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) +"bSr" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/ai_monitored/turret_protected/ai_upload_foyer) +"bSs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/ai_monitored/turret_protected/ai_upload_foyer) +"bSt" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/ai_monitored/turret_protected/ai_upload_foyer) +"bSu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"bSv" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"}) +"bSw" = (/obj/machinery/power/port_gen/pacman,/obj/machinery/light,/obj/machinery/light_switch{pixel_y = -24},/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"}) +"bSx" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/open/floor/plasteel,/area/engine/break_room) +"bSy" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bSz" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 11},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/router) +"bSA" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/stairs/right,/area/hallway/primary/central) +"bSB" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/hallway/primary/central) +"bSC" = (/turf/closed/wall,/area/science/lab) +"bSD" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/router) +"bSE" = (/turf/closed/wall/r_wall,/area/science/lab) +"bSF" = (/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/router) +"bSG" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/lab) +"bSH" = (/obj/structure/sign/departments/science,/turf/closed/wall/r_wall,/area/science/lab) +"bSI" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating,/area/router) +"bSJ" = (/obj/structure/closet/crate/science,/obj/item/target,/obj/item/target,/obj/item/target/alien,/obj/item/target/alien,/obj/item/target/syndicate,/obj/item/target/syndicate,/obj/item/gun/energy/laser/practice,/obj/item/gun/energy/laser/practice,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/science/circuit"; dir = 1; name = "Circuitry Lab APC"; pixel_y = 24},/turf/open/floor/plasteel/white,/area/science/circuit) +"bSK" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/white,/area/science/lab) +"bSL" = (/turf/open/floor/plasteel/white,/area/science/lab) +"bSM" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/item/stack/cable_coil/red,/turf/open/floor/plasteel/white,/area/science/lab) +"bSN" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/table,/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/item/folder/white,/obj/item/disk/design_disk,/obj/item/disk/design_disk,/obj/item/disk/tech_disk,/obj/item/disk/tech_disk,/turf/open/floor/plasteel/white,/area/science/lab) +"bSO" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/public/glass{name = "AI Access"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) +"bSP" = (/obj/machinery/computer/rdconsole/core,/turf/open/floor/plasteel,/area/science/lab) +"bSQ" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) +"bSR" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/white,/area/science/lab) +"bSS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"bST" = (/obj/structure/disposalpipe/junction{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"bSU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"bSV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"bSW" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bSX" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/white/full,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_x = 28; pixel_y = 24},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"bSY" = (/obj/structure/table,/obj/item/stock_parts/micro_laser{pixel_x = 4},/obj/item/stock_parts/micro_laser{pixel_x = 4},/obj/item/stock_parts/scanning_module{pixel_x = -6},/obj/item/stock_parts/scanning_module{pixel_x = -6},/obj/item/stock_parts/capacitor,/obj/item/stock_parts/capacitor,/turf/open/floor/plasteel/white,/area/science/lab) +"bSZ" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/science/lab) +"bTa" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"bTb" = (/turf/open/floor/plasteel,/area/science/lab) +"bTc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/science/lab) +"bTd" = (/obj/structure/table,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"bTe" = (/obj/structure/chair/stool,/obj/effect/landmark/start/scientist,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) +"bTf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/science/lab) +"bTg" = (/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/science/robotics/mechbay"; dir = 1; name = "Mech Bay APC"; pixel_y = 28},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"bTh" = (/obj/effect/turf_decal/bot,/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel,/area/science/robotics/lab) +"bTi" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark/side{dir = 5},/area/science/robotics/lab) +"bTj" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker/large{pixel_x = -6},/obj/item/reagent_containers/glass/beaker{pixel_x = 4},/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel/white,/area/science/lab) +"bTk" = (/obj/item/rack_parts,/obj/structure/table_frame,/obj/item/flashlight,/obj/item/flashlight,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{areastring = "/area/quartermaster/warehouse"; dir = 1; name = "Warehouse APC"; pixel_y = 24},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bTl" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/clothing/glasses/welding,/turf/open/floor/plasteel/white,/area/science/lab) +"bTm" = (/obj/machinery/disposal/bin,/obj/machinery/light,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/science/lab) +"bTn" = (/obj/effect/turf_decal/delivery,/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/science/lab) +"bTo" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/debugger,/turf/open/floor/plasteel/white,/area/science/circuit) +"bTp" = (/obj/machinery/vending/wardrobe/law_wardrobe,/obj/effect/turf_decal/bot,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/dark,/area/lawoffice) +"bTq" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/circuit) +"bTr" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/science/circuit) +"bTs" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/circuit) +"bTt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/hallway/primary/central) +"bTu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bTv" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bTw" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bTx" = (/obj/item/stack/tile/plasteel{pixel_x = 8; pixel_y = 14},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bTy" = (/obj/item/kirbyplants,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bTz" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bTA" = (/obj/structure/filingcabinet/medical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bTB" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/medical/medbay/lobby) +"bTC" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bTD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bTE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bTF" = (/obj/structure/grille/broken,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) +"bTG" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/science/circuit) +"bTH" = (/turf/open/floor/engine/plasma,/area/engine/atmos) +"bTI" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/engine/plasma,/area/engine/atmos) +"bTJ" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/disposal) +"bTK" = (/turf/open/floor/engine/co2,/area/engine/atmos) +"bTL" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/engine/co2,/area/engine/atmos) +"bTM" = (/obj/structure/table,/obj/machinery/light,/obj/item/storage/toolbox/mechanical{pixel_x = 1; pixel_y = 6},/obj/item/storage/toolbox/mechanical,/obj/machinery/camera{c_tag = "Research - Development Lab"; dir = 1},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_y = -30; receive_ore_updates = 1},/turf/open/floor/plasteel/white,/area/science/lab) +"bTN" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/science/circuit) +"bTO" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit) +"bTP" = (/obj/machinery/disposal/bin,/obj/machinery/light,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/science/circuit) +"bTQ" = (/obj/machinery/vending/assist,/turf/open/floor/plasteel/white,/area/science/circuit) +"bTR" = (/turf/closed/wall/r_wall,/area/science/circuit) +"bTS" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/item/stock_parts/cell/high/plus,/obj/item/radio/off{pixel_x = -3; pixel_y = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer) +"bTT" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/hallway/primary/central) +"bTU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/conveyor{dir = 4; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) +"bTV" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bTW" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation) +"bTX" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/status_display/ai{pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) +"bTY" = (/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central) +"bTZ" = (/obj/structure/disposalpipe/segment,/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation) +"bUa" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/camera{c_tag = "Atmospherics - Entrance"},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel,/area/engine/atmos) +"bUb" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bUc" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) +"bUd" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bUe" = (/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plating/airless,/area/router/aux) +"bUf" = (/obj/structure/plasticflaps,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/sorting) +"bUg" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor/auto{dir = 1; id = "router"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) +"bUh" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bUi" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) +"bUj" = (/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 8},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"bUk" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/cobweb,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/window/reinforced/spawner/west,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bUl" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bUm" = (/obj/structure/closet/crate/internals,/obj/item/tank/internals/emergency_oxygen/double,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bUn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/hallway/primary/aft) +"bUo" = (/obj/structure/grille,/turf/open/floor/plating/airless,/area/space/nearstation) +"bUp" = (/obj/structure/window/reinforced/spawner/west,/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor/auto{id = "router"},/turf/open/floor/plating,/area/router) +"bUq" = (/turf/closed/wall/r_wall,/area/hallway/primary/aft) +"bUr" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/hallway/primary/aft) +"bUs" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bUt" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel/dark/side{dir = 4},/area/hallway/primary/central) +"bUu" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/gateway) +"bUv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/hallway/primary/aft) +"bUw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bUx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"bUy" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bUz" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/hallway/primary/aft) +"bUA" = (/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/solars/port) +"bUB" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/engine/engine_smes"; dir = 1; name = "Power Monitoring APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) +"bUC" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bUD" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bUE" = (/turf/open/floor/plasteel/stairs/right,/area/hallway/primary/aft) +"bUF" = (/obj/machinery/doppler_array/research/science{dir = 8},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/science/mixing) +"bUG" = (/obj/effect/turf_decal/bot,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/storage/primary) +"bUH" = (/obj/machinery/shieldgen,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/window/reinforced/spawner/west,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bUI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bUJ" = (/obj/effect/landmark/event_spawn,/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/science/lab) +"bUK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{name = "Quartermaster's Office"; req_access_txt = "31;41"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/qm) +"bUL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/window/reinforced/spawner/west,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router) +"bUM" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/qm) +"bUN" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/door/airlock/engineering{name = "Primary Tool Storage"; req_access_txt = "11"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"bUO" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/power/apc{areastring = "/area/storage/primary"; dir = 1; name = "Primary Tool Storage APC"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/storage/primary) +"bUP" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/quartermaster/sorting) +"bUQ" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/button/door{id = "DeliveryDoor"; name = "Cargo Delivery Door Control"; pixel_x = -24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bUR" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/mob/living/simple_animal/bot/firebot,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bUS" = (/obj/structure/closet/secure_closet/quartermaster,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/item/clothing/suit/space/eva,/obj/item/clothing/head/helmet/space/eva,/obj/item/paper/fluff/cogstation/letter_qm,/turf/open/floor/plasteel,/area/quartermaster/qm) +"bUT" = (/obj/effect/turf_decal/delivery,/obj/machinery/light{dir = 1},/obj/structure/filingcabinet/filingcabinet,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bUU" = (/obj/item/beacon,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) +"bUV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 10},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) +"bUW" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/starboard/aft"; dir = 1; name = "Starboard Quarter Maintenance APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bUX" = (/obj/structure/transit_tube/station/reverse/flipped{dir = 1},/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"bUY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/item/grown/bananapeel,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router) +"bUZ" = (/obj/structure/reagent_dispensers/watertank,/obj/item/wirecutters,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bVa" = (/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel,/area/router) +"bVb" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/transit_tube/horizontal,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"bVc" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bVd" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/end{dir = 4},/turf/open/floor/plating,/area/quartermaster/sorting) +"bVe" = (/obj/machinery/photocopier,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bVf" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "Engineering - Power Monitoring"; dir = 1},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) +"bVg" = (/obj/machinery/power/emitter,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/window/reinforced/spawner/west,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bVh" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bVi" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel) +"bVj" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor/auto{id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) +"bVk" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bVl" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bVm" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "0-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bVn" = (/obj/structure/closet/crate,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"bVo" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/storage) +"bVp" = (/obj/machinery/computer/card/minor/rd{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"bVq" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) +"bVr" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bVs" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/cargo_technician,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bVt" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bVu" = (/obj/effect/decal/cleanable/dirt,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/obj/structure/disposalpipe/junction{dir = 8},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/router) +"bVv" = (/obj/structure/sign/departments/xenobio{pixel_x = -32},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit) +"bVw" = (/obj/machinery/conveyor/auto{dir = 1; id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting) +"bVx" = (/obj/machinery/light/small{dir = 4},/obj/machinery/conveyor/auto{dir = 1; id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting) +"bVy" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 1; id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting) +"bVz" = (/obj/structure/rack,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/extinguisher{pixel_x = -4},/obj/item/crowbar/red{pixel_x = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/starboard/central) +"bVA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/router) +"bVB" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bVC" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "AI SMES Access"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer) +"bVD" = (/obj/structure/lattice,/turf/open/space/basic,/area/space) +"bVE" = (/obj/effect/landmark/start/atmospheric_technician,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/atmos) +"bVF" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer) +"bVG" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bVH" = (/obj/effect/landmark/event_spawn,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/janitor) +"bVI" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVK" = (/obj/item/restraints/legcuffs/beartrap,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/central) +"bVL" = (/obj/effect/turf_decal/delivery,/obj/structure/noticeboard/rd{pixel_y = 28},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bVM" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bVN" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain) +"bVO" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bVP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"bVQ" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bVR" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/sign/warning/securearea{pixel_y = 32},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bVS" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bVT" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bVU" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock{name = "Law Office"; req_access_txt = "38"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/lawoffice) +"bVV" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) +"bVW" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/hallway/primary/aft) +"bVX" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos) +"bVY" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/door/firedoor,/obj/machinery/door/window/southright{name = "Primary Tool Storage Desk"; req_access_txt = "11"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/storage/primary) +"bVZ" = (/obj/machinery/power/apc{name = "Cargo Bay APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel,/area/quartermaster/storage) +"bWa" = (/turf/closed/wall/r_wall,/area/science/research{name = "Research Sector"}) +"bWb" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bWc" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bWd" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/sign/poster/official/wtf_is_co2{pixel_y = 32},/turf/open/floor/plasteel,/area/science/explab) +"bWe" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; dir = 1; freq = 1400; location = "Bridge"},/turf/open/floor/plasteel,/area/bridge) +"bWf" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bWg" = (/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Law Office"; dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) +"bWh" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) +"bWi" = (/obj/structure/table/wood,/obj/item/cartridge/lawyer{pixel_x = 2; pixel_y = 8},/obj/item/stamp/law,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) +"bWj" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) +"bWk" = (/obj/structure/table/wood,/obj/item/modular_computer/laptop/preset/civilian,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) +"bWl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Toxins Storage"; req_access_txt = "7;8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/science/mixing) +"bWm" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "AI SMES Access"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer) +"bWn" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bWo" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bWp" = (/obj/machinery/atmospherics/miner/n2o,/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/engine/n2o,/area/engine/atmos) +"bWq" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bWr" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line,/obj/machinery/camera{c_tag = "Research Entrance"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bWs" = (/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bWt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) +"bWu" = (/obj/machinery/vending/assist,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) +"bWv" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating/airless,/area/space/nearstation) +"bWw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/lawoffice) +"bWx" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bWy" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bWz" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bWA" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bWB" = (/obj/structure/rack,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/extinguisher,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bWC" = (/obj/machinery/shower{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bWD" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Medbay"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bWE" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bWF" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bWG" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos) +"bWH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/stairs/medium,/area/hallway/primary/central) +"bWI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer) +"bWJ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{dir = 1},/turf/open/space/basic,/area/space/nearstation) +"bWK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plating,/area/engine/atmos) +"bWL" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bWM" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/warning/vacuum/external{pixel_y = -32},/obj/machinery/camera{c_tag = "Central Hall - AI Access"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bWN" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/science/server{name = "Computer Core"}) +"bWO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bWP" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/command{name = "Computer Core"; req_access_txt = "30"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"bWQ" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating/airless,/area/space/nearstation) +"bWR" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/science/research{name = "Research Sector"}) +"bWS" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/mixing) +"bWT" = (/obj/structure/chair/sofa/left,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/landmark/start/scientist,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bWU" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bWV" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bWW" = (/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bWX" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bWY" = (/obj/structure/sign/warning/nosmoking,/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"bWZ" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/hallway/primary/aft) +"bXa" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/multitool{pixel_y = 4},/obj/item/book/manual/wiki/robotics_cyborgs,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"bXb" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bXc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "2-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel) +"bXd" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"bXe" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/atmospherics/miner/toxins,/turf/open/floor/engine/plasma,/area/engine/atmos) +"bXf" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/button/door{id = "EngiLockdown"; name = "Engineering Emergency Lockdown"; pixel_x = 24; pixel_y = -6; req_access_txt = "11"},/obj/machinery/button/door{name = "Privacy Shutters"; pixel_x = 24; pixel_y = 6},/obj/item/kirbyplants/photosynthetic,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"bXg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/closed/wall/r_wall,/area/science/mixing) +"bXh" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bXi" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bXj" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft) +"bXk" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"bXl" = (/obj/structure/disposalpipe/junction/flip{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bXm" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bXn" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bXo" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bXp" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating,/area/router) +"bXq" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"bXr" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/camera{c_tag = "Research Fore"; dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bXs" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"bXt" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft) +"bXu" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft) +"bXv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/aft) +"bXw" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bXx" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bXy" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/machinery/light,/obj/item/kirbyplants{icon_state = "plant-16"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bXz" = (/obj/machinery/power/apc{name = "Medbay Lobby APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/aft) +"bXA" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bXB" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bXC" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"bXD" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bXE" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bXF" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/security/checkpoint/supply) +"bXG" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"bXH" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hydroponics) +"bXI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain) +"bXJ" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bXK" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/machinery/light,/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bXL" = (/obj/effect/decal/cleanable/dirt,/obj/structure/rack,/obj/item/storage/belt/utility,/turf/open/floor/plasteel,/area/maintenance/aft) +"bXM" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor{dir = 8; id = "router_off"},/turf/open/floor/plating,/area/router) +"bXN" = (/obj/machinery/smartfridge/organ/preloaded,/turf/closed/wall,/area/medical/morgue) +"bXO" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/camera{c_tag = "Xenobiology - Fore"; dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"bXP" = (/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating/airless,/area/space/nearstation) +"bXQ" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bXR" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/miner/carbon_dioxide,/turf/open/floor/engine/co2,/area/engine/atmos) +"bXS" = (/obj/structure/closet/bombcloset,/obj/machinery/camera{c_tag = "Toxins Lab - Access"; network = list("ss13","rd")},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/mixing) +"bXT" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bXU" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/research{name = "Research Sector"}) +"bXV" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating/airless,/area/space/nearstation) +"bXW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bXX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bXY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bXZ" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/item/paper_bin,/obj/item/radio/headset/headset_sci,/obj/item/radio/headset/headset_sci,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bYa" = (/obj/effect/turf_decal/tile/purple,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bYb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/science/mixing) +"bYc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/science/research{name = "Research Sector"}) +"bYd" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/hallway/primary/central) +"bYe" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bYf" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 8; id = "router"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/router) +"bYg" = (/obj/machinery/door/poddoor{id = "toxinsdriver"; name = "toxins launcher bay door"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/science/mixing) +"bYh" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bYi" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/recharger,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bYj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) +"bYk" = (/obj/machinery/vending/wardrobe/science_wardrobe,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bYl" = (/obj/structure/lattice,/obj/structure/disposalpipe/sorting/mail/flip{sortType = 6},/turf/open/space/basic,/area/space/nearstation) +"bYm" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bYn" = (/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bYo" = (/obj/structure/disposalpipe/segment,/obj/machinery/computer/mech_bay_power_console,/turf/open/floor/circuit/green,/area/science/robotics/mechbay) +"bYp" = (/turf/open/floor/plasteel/recharge_floor,/area/science/robotics/mechbay) +"bYq" = (/obj/machinery/light/small{dir = 1},/obj/machinery/mech_bay_recharge_port{dir = 8},/turf/open/floor/circuit/green,/area/science/robotics/mechbay) +"bYr" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/photocopier,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bYs" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research/glass{name = "Toxins Lab Access"; req_access_txt = "7;8"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) +"bYt" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bYu" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/junction/flip{dir = 1},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bYv" = (/turf/closed/wall,/area/science/robotics/mechbay) +"bYw" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bYx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/circuit,/area/science/robotics/mechbay) +"bYy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/circuit,/area/science/robotics/mechbay) +"bYz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bYA" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bYB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"bYC" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft) +"bYD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bYE" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bYF" = (/obj/structure/disposalpipe/segment,/obj/structure/cable,/obj/machinery/recharge_station,/turf/open/floor/circuit/green,/area/science/robotics/mechbay) +"bYG" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/window/reinforced/spawner/west,/obj/machinery/sleeper{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"bYH" = (/obj/structure/sign/poster/contraband/kss13{pixel_y = -32},/obj/structure/cable,/obj/machinery/recharge_station,/turf/open/floor/circuit/green,/area/science/robotics/mechbay) +"bYI" = (/obj/effect/landmark/start/medical_doctor,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bYJ" = (/obj/structure/closet/secure_closet/medical3,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/storage/belt/medical,/obj/item/clothing/neck/stethoscope,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"bYK" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"bYL" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bYM" = (/obj/machinery/vending/wardrobe/cargo_wardrobe,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"bYN" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/storage) +"bYO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bYP" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"bYQ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/aft) +"bYR" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/aft) +"bYS" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/server{name = "Computer Core"}) +"bYT" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"bYU" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"bYV" = (/obj/machinery/rnd/destructive_analyzer,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/science/lab) +"bYW" = (/obj/effect/turf_decal/tile/yellow,/obj/machinery/light,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bYX" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"bYY" = (/turf/open/floor/circuit/green,/area/science/server{name = "Computer Core"}) +"bYZ" = (/obj/structure/disposalpipe/segment,/turf/open/floor/circuit/green,/area/science/server{name = "Computer Core"}) +"bZa" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/storage/box/disks,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"bZb" = (/obj/structure/table,/obj/machinery/button/door{id = "RDServer"; layer = 3.6; name = "RD Server Lockup Control"; pixel_x = -24},/obj/item/circuitboard/machine/rdserver,/obj/item/disk/tech_disk,/turf/open/floor/circuit/green,/area/science/server{name = "Computer Core"}) +"bZc" = (/obj/machinery/computer/robotics{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/segment,/turf/open/floor/circuit/green,/area/science/server{name = "Computer Core"}) +"bZd" = (/obj/effect/landmark/blobstart,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bZe" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/science/server{name = "Computer Core"}) +"bZf" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing) +"bZg" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing) +"bZh" = (/turf/closed/wall,/area/crew_quarters/toilet/restrooms) +"bZi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse) +"bZj" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; target_pressure = 4500},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing) +"bZk" = (/obj/machinery/shower{dir = 4},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"bZl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bZm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=upload"; location = "med"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"bZn" = (/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/toilet{dir = 4},/obj/machinery/door/window/eastright,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"bZo" = (/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bZp" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"bZq" = (/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/toilet{dir = 4},/obj/machinery/door/window/eastright,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"bZr" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/hallway/primary/central) +"bZs" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"bZt" = (/turf/closed/wall,/area/maintenance/starboard/aft) +"bZu" = (/obj/structure/rack,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bZv" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/extinguisher,/obj/item/crowbar,/obj/machinery/camera{c_tag = "Fire Suppression Storage"; pixel_x = 22},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bZw" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/office) +"bZx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Fire Suppression Storage"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bZy" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/starboard/aft) +"bZz" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research/glass{name = "Xenobiology Kill Room"; req_access_txt = "47"},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"bZA" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/library) +"bZB" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing) +"bZC" = (/obj/machinery/computer/libraryconsole,/obj/structure/table/wood,/turf/open/floor/carpet,/area/library) +"bZD" = (/obj/machinery/chem_master,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/science/xenobiology) +"bZE" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bZF" = (/turf/open/floor/wood,/area/library) +"bZG" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/sign/warning/fire{pixel_x = -32; pixel_y = 32},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"bZH" = (/turf/closed/wall,/area/library) +"bZI" = (/obj/machinery/air_sensor/atmos/mix_tank,/turf/open/floor/engine/vacuum,/area/engine/atmos) +"bZJ" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/photocopier,/turf/open/floor/carpet,/area/library) +"bZK" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/library) +"bZL" = (/obj/machinery/air_sensor/atmos/nitrous_tank,/turf/open/floor/engine/n2o,/area/engine/atmos) +"bZM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"bZN" = (/obj/structure/closet/crate/freezer,/obj/item/rack_parts,/obj/item/rack_parts,/obj/item/wrench,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) +"bZO" = (/obj/machinery/air_sensor/atmos/toxin_tank,/turf/open/floor/engine/plasma,/area/engine/atmos) +"bZP" = (/obj/machinery/air_sensor/atmos/carbon_tank,/turf/open/floor/engine/co2,/area/engine/atmos) +"bZQ" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"bZR" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/atmos) +"bZS" = (/turf/closed/wall/r_wall,/area/library) +"bZT" = (/obj/structure/table,/obj/item/book/manual/wiki/robotics_cyborgs{pixel_x = -3; pixel_y = -2},/obj/item/book/manual/ripley_build_and_repair{pixel_x = 3; pixel_y = 2},/obj/item/mmi/posibrain,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/robotics/lab) +"bZU" = (/obj/structure/table/wood,/obj/machinery/door/window/northright{name = "Library Desk Window"; req_access_txt = "37"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) +"bZV" = (/obj/structure/window/reinforced/spawner/east,/obj/structure/table/wood,/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/carpet,/area/library) +"bZW" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/science/mixing) +"bZX" = (/obj/structure/table/wood,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/computer/libraryconsole/bookmanagement,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) +"bZY" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel/white,/area/science/mixing) +"bZZ" = (/obj/machinery/vending/wardrobe/curator_wardrobe,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) +"caa" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel/white,/area/science/mixing) +"cab" = (/obj/structure/bookcase/random/adult{name = "Forbidden Knowledge"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) +"cac" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/light,/turf/open/floor/plasteel/white,/area/science/mixing) +"cad" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel/white,/area/science/mixing) +"cae" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light,/obj/item/storage/firstaid/toxin,/turf/open/floor/plasteel/white,/area/science/mixing) +"caf" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 5},/turf/open/space/basic,/area/space/nearstation) +"cag" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/analyzer,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/white,/area/science/circuit) +"cah" = (/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cai" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"caj" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cak" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"cal" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 10},/turf/open/floor/plasteel/dark/side{dir = 1},/area/engine/atmos) +"cam" = (/obj/machinery/door/poddoor/incinerator_atmos_main,/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) +"can" = (/obj/machinery/power/turbine{dir = 8},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) +"cao" = (/obj/machinery/power/compressor{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) +"cap" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/air_sensor/atmos/incinerator_tank{pixel_x = -32; pixel_y = 32},/obj/machinery/igniter/incinerator_atmos,/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) +"caq" = (/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior,/obj/effect/mapping_helpers/airlock/locked,/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) +"car" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"cas" = (/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior,/obj/effect/mapping_helpers/airlock/locked,/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/engine/vacuum,/area/engine/atmos) +"cat" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input,/turf/open/floor/engine/vacuum,/area/engine/atmos) +"cau" = (/obj/machinery/door/poddoor/incinerator_atmos_aux,/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) +"cav" = (/turf/closed/wall/r_wall,/area/science/explab) +"caw" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/explab) +"cax" = (/turf/closed/wall,/area/science/explab) +"cay" = (/obj/machinery/air_sensor/atmos/nitrogen_tank,/turf/open/floor/engine/n2,/area/engine/atmos) +"caz" = (/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"caA" = (/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/science/explab) +"caB" = (/obj/structure/closet/bombcloset,/turf/open/floor/plasteel,/area/science/explab) +"caC" = (/obj/structure/table,/obj/item/wrench,/obj/item/clothing/suit/fire/firefighter,/obj/item/extinguisher{pixel_x = -7; pixel_y = 3},/obj/item/storage/toolbox/mechanical,/obj/item/stack/cable_coil/red,/turf/open/floor/plasteel,/area/science/explab) +"caD" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/disposal) +"caE" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/science/explab) +"caF" = (/obj/machinery/air_sensor/atmos/oxygen_tank,/turf/open/floor/engine/o2,/area/engine/atmos) +"caG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"caH" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"caI" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/analyzer,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_x = 30; receive_ore_updates = 1},/turf/open/floor/plasteel/white,/area/science/circuit) +"caJ" = (/obj/machinery/air_sensor/atmos/air_tank,/turf/open/floor/engine/air,/area/engine/atmos) +"caK" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/atmospherics/miner/nitrogen,/turf/open/floor/engine/n2,/area/engine/atmos) +"caL" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/miner/oxygen,/turf/open/floor/engine/o2,/area/engine/atmos) +"caM" = (/obj/machinery/light/small,/turf/open/floor/engine/n2,/area/engine/atmos) +"caN" = (/obj/machinery/light/small,/turf/open/floor/engine/o2,/area/engine/atmos) +"caO" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 4},/area/science/robotics/lab) +"caP" = (/obj/structure/chair/office/light,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/explab) +"caQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Medbay Lobby"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white/side,/area/medical/medbay/lobby) +"caR" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/kirbyplants{icon_state = "plant-06"},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"caS" = (/obj/machinery/light/small,/turf/open/floor/engine/air,/area/engine/atmos) +"caT" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/science/explab) +"caU" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/closed/wall/r_wall,/area/science/explab) +"caV" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology - Pen 1"; dir = 4},/turf/open/floor/engine,/area/science/xenobiology) +"caW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) +"caX" = (/turf/open/floor/engine,/area/science/explab) +"caY" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/engine,/area/science/explab) +"caZ" = (/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/machinery/camera{c_tag = "Xenobiology - Pen 2"; dir = 8; pixel_y = -22},/turf/open/floor/engine,/area/science/xenobiology) +"cba" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/turf/closed/wall/r_wall,/area/science/explab) +"cbb" = (/turf/closed/wall/r_wall,/area/science/storage) +"cbc" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 4},/obj/item/stack/sheet/metal/ten,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/item/screwdriver,/obj/item/screwdriver,/obj/item/multitool,/obj/item/multitool,/obj/machinery/camera{c_tag = "Research - Circuitry Lab"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel/white,/area/science/circuit) +"cbd" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/item/clothing/ears/earmuffs,/obj/item/radio,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cbe" = (/obj/structure/table/reinforced,/obj/item/clothing/mask/gas,/turf/open/floor/engine,/area/science/explab) +"cbf" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/window/reinforced/spawner/east,/obj/machinery/sleeper{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"cbg" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/engine,/area/science/storage) +"cbh" = (/obj/machinery/rnd/experimentor,/turf/open/floor/engine,/area/science/explab) +"cbi" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain) +"cbj" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"}) +"cbk" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/quartermaster/qm"; dir = 8; name = "Quartermaster's Office APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/quartermaster/qm) +"cbl" = (/obj/structure/table/reinforced,/obj/item/healthanalyzer,/turf/open/floor/engine,/area/science/explab) +"cbm" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/turf/open/floor/plating,/area/medical/medbay/central) +"cbn" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/engine,/area/science/storage) +"cbo" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel,/area/science/xenobiology) +"cbp" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain) +"cbq" = (/obj/structure/table/reinforced,/obj/item/clipboard,/obj/item/pen,/turf/open/floor/engine,/area/science/explab) +"cbr" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"cbs" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"cbt" = (/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/explab) +"cbu" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/science/storage) +"cbv" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line,/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/open/floor/plasteel,/area/science/explab) +"cbw" = (/turf/open/floor/plasteel/dark,/area/science/explab) +"cbx" = (/obj/structure/table/reinforced,/obj/item/storage/box/syringes,/obj/item/pen/blue,/turf/open/floor/engine,/area/science/explab) +"cby" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"cbz" = (/obj/structure/table/reinforced,/obj/item/clothing/gloves/color/latex,/obj/item/reagent_containers/dropper,/obj/item/pen/red,/turf/open/floor/engine,/area/science/explab) +"cbA" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/ai_monitored/storage/eva) +"cbB" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/misc_lab{name = "Research Observatory"}) +"cbC" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/science/storage) +"cbD" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cbE" = (/turf/closed/wall/r_wall,/area/science/misc_lab{name = "Research Observatory"}) +"cbF" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cbG" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"cbH" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/ai_monitored/storage/eva) +"cbI" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock"; req_access_txt = "24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"cbJ" = (/obj/structure/table/reinforced,/obj/item/analyzer,/obj/item/t_scanner,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/engine/supermatter"; dir = 4; name = "Thermo-Electric Generator APC"; pixel_x = 24},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"cbK" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/structure/sign/departments/chemistry{pixel_x = 32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"cbL" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/atmos) +"cbM" = (/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/item/storage/box/lights/mixed,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/structure/cable{icon_state = "1-10"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cbN" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/structure/sign/warning/vacuum/external{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"cbO" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) +"cbP" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/science/mixing) +"cbQ" = (/obj/structure/closet/secure_closet/freezer/meat,/obj/item/reagent_containers/food/snacks/meat/slab/spider,/obj/item/reagent_containers/food/snacks/meat/slab/xeno,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) +"cbR" = (/obj/structure/cable{icon_state = "1-10"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/central) +"cbS" = (/obj/machinery/conveyor{dir = 4; id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux) +"cbT" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/firealarm{dir = 1; pixel_x = -2; pixel_y = -27},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/atmos) +"cbU" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Air to Distro"},/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/engine/atmos"; name = "Atmospherics APC"; pixel_y = -28},/obj/structure/cable,/turf/open/floor/plasteel,/area/engine/atmos) +"cbV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/obj/structure/window/reinforced/spawner,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/science/server{name = "Computer Core"}) +"cbW" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating/airless,/area/router/aux) +"cbX" = (/obj/structure/table,/obj/item/aicard,/obj/item/disk/tech_disk,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/circuit,/area/bridge) +"cbY" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/science/server{name = "Computer Core"}) +"cbZ" = (/obj/machinery/computer/slot_machine,/obj/structure/window/reinforced/spawner/west,/turf/open/floor/carpet/green,/area/crew_quarters/bar) +"cca" = (/obj/machinery/computer/slot_machine,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/carpet/green,/area/crew_quarters/bar) +"ccb" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/stairs/medium,/area/crew_quarters/bar) +"ccc" = (/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/structure/grille,/turf/open/floor/plating/airless,/area/router/aux) +"ccd" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Robotics Lab"; dir = 4},/turf/open/floor/plasteel/dark/side{dir = 8},/area/science/robotics/lab) +"cce" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/science/circuit) +"ccf" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/conveyor{dir = 1; id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux) +"ccg" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cch" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor/auto{dir = 1; id = "router"},/turf/open/floor/plating,/area/router) +"cci" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/mass_driver{id = "workshop_in"; name = "Router Driver"},/turf/open/floor/plating,/area/router) +"ccj" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Routing Depot"; req_one_access_txt = "10;31"},/turf/open/floor/plating,/area/router) +"cck" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/window/reinforced/spawner/west,/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) +"ccl" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/maintenance/department/chapel) +"ccm" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/science/robotics/lab) +"ccn" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor/auto{dir = 1; id = "router"},/turf/open/floor/plating,/area/router) +"cco" = (/obj/machinery/conveyor/auto{id = "router"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) +"ccp" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"ccq" = (/obj/machinery/light{dir = 1},/obj/structure/sign/poster/official/nanomichi_ad{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"ccr" = (/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 4},/turf/open/floor/plating/airless,/area/router/aux) +"ccs" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 1; id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux) +"cct" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/science/robotics/mechbay) +"ccu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"ccv" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/door/airlock/mining{name = "Mining Office"; req_one_access_txt = "10;24;48"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"ccw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"ccx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"ccy" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 1; id = "router"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/router) +"ccz" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"ccA" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) +"ccB" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/folder/white,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Robotics Desk"; req_access_txt = "29"},/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"ccC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"ccD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"ccE" = (/obj/machinery/mass_driver{id = "eng_in"; name = "Router Driver"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) +"ccF" = (/obj/structure/table,/obj/effect/turf_decal/bot,/obj/item/flashlight,/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel,/area/quartermaster/office) +"ccG" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/camera{c_tag = "Atmospherics East"; dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel,/area/engine/atmos) +"ccH" = (/obj/machinery/mass_driver{dir = 8; id = "disposal_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) +"ccI" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) +"ccJ" = (/obj/machinery/conveyor{dir = 8; id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux) +"ccK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"ccL" = (/obj/effect/landmark/event_spawn,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/rnd/bepis,/turf/open/floor/engine,/area/science/explab) +"ccM" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) +"ccN" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"ccO" = (/obj/structure/grille,/obj/structure/disposalpipe/sorting/mail{dir = 8},/turf/open/floor/plating/airless,/area/router/aux) +"ccP" = (/obj/structure/disposalpipe/junction/yjunction{dir = 8},/obj/structure/grille,/turf/open/floor/plating/airless,/area/router/aux) +"ccQ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/courtroom) +"ccR" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/courtroom) +"ccS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/courtroom) +"ccT" = (/obj/effect/turf_decal/delivery,/obj/machinery/light,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"ccU" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"ccV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Starboard Quarter Maintenance"; req_one_access_txt = "12;48"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/hallway/primary/aft) +"ccW" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"ccX" = (/obj/effect/turf_decal/loading_area{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) +"ccY" = (/obj/structure/cable,/obj/effect/landmark/start/librarian,/obj/machinery/power/apc{areastring = "/area/library"; dir = 4; name = "Library APC"; pixel_x = 24},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) +"ccZ" = (/obj/structure/closet/cardboard,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cda" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"cdb" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/turf/open/floor/plating/airless,/area/router/aux) +"cdc" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/hallway/secondary/entry) +"cdd" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/hallway/secondary/exit) +"cde" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central) +"cdf" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"cdg" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/break_room) +"cdh" = (/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"cdi" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating/airless,/area/router/aux) +"cdj" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/table/wood,/obj/machinery/microwave,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) +"cdk" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cdl" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cdm" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/photocopier,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/paper/guides/cogstation/disposals,/turf/open/floor/plasteel,/area/engine/break_room) +"cdn" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"cdo" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating/airless,/area/space/nearstation) +"cdp" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation) +"cdq" = (/obj/machinery/mass_driver{id = "sq_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) +"cdr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/engine/break_room) +"cds" = (/obj/effect/turf_decal/bot,/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cdt" = (/turf/closed/wall/r_wall,/area/router/eng) +"cdu" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) +"cdv" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) +"cdw" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) +"cdx" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plating,/area/quartermaster/warehouse) +"cdy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall,/area/engine/break_room) +"cdz" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) +"cdA" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/break_room) +"cdB" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/sign/warning/enginesafety,/turf/closed/wall,/area/engine/break_room) +"cdC" = (/turf/closed/wall,/area/engine/break_room) +"cdD" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/obj/item/storage/box/monkeycubes,/obj/item/storage/box/monkeycubes,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_y = 30; receive_ore_updates = 1},/turf/open/floor/plasteel,/area/science/xenobiology) +"cdE" = (/obj/structure/table/wood,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/tape,/obj/item/taperecorder{pixel_x = -4},/obj/machinery/newscaster{pixel_x = 30},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) +"cdF" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plating,/area/quartermaster/warehouse) +"cdG" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "engblock"; name = "Engineering Router"},/turf/open/floor/plating,/area/router/eng) +"cdH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/engine/break_room) +"cdI" = (/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"cdJ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) +"cdK" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/engine/break_room) +"cdL" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/break_room) +"cdM" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cdN" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/door/airlock/command{name = "Chief Engineer's Office"; req_access_txt = "56"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"cdO" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "EngiLockdown"; name = "Engineering Emergency Lockdown"},/turf/open/floor/plasteel,/area/engine/break_room) +"cdP" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/camera{c_tag = "Aft Hall - Primary Tool Storage"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cdQ" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "EngiLockdown"; name = "Engineering Emergency Lockdown"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/break_room) +"cdR" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/sign/poster/contraband/hacking_guide{pixel_x = -32},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"cdS" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/engine/break_room) +"cdT" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/door/airlock/external/glass{name = "Asteroid Mining Access"; req_access_txt = "10;24"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cdU" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{id = "eng"},/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "engblock"; name = "Engineering Router"},/turf/open/floor/plating,/area/router/eng) +"cdV" = (/turf/closed/wall/r_wall,/area/engine/teg_hot) +"cdW" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab) +"cdX" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start/chemist,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"cdY" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cdZ" = (/turf/closed/wall/r_wall,/area/medical/medbay/lobby) +"cea" = (/obj/structure/table/wood,/obj/structure/window/reinforced/spawner/north,/obj/structure/cable{icon_state = "1-2"},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) +"ceb" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics3"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab) +"cec" = (/obj/structure/table/glass,/obj/item/paicard,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/wood,/area/medical/medbay/lobby) +"ced" = (/obj/machinery/computer/med_data{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"cee" = (/obj/structure/chair/office/light{dir = 1; pixel_y = 3},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/landmark/start/medical_doctor,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"cef" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"ceg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/medical/medbay/lobby) +"ceh" = (/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/storage/tech) +"cei" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cej" = (/obj/machinery/vending/medical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"cek" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/medical/medbay/lobby) +"cel" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/landmark/start/medical_doctor,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"cem" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/machinery/door/window/eastright{name = "Medbay Desk"; req_access_txt = "5"},/obj/item/folder/white,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"cen" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/circuit,/area/bridge) +"ceo" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/bridge) +"cep" = (/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior - Starboard Bow"; dir = 1; network = list("tcomms"); pixel_x = 22},/turf/open/space/basic,/area/space) +"ceq" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall/rust,/area/engine/teg_hot) +"cer" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/mass_driver{dir = 1; id = "eng_out"; name = "Router Driver"},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plating,/area/router/eng) +"ces" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/conveyor/auto{id = "eng"},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plating,/area/router/eng) +"cet" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/engine/teg_hot) +"ceu" = (/obj/machinery/vending/snack/random,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"cev" = (/obj/machinery/vending/games,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"cew" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor/auto{dir = 1; id = "service"},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plating,/area/router/eng) +"cex" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"cey" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Arcade"},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"cez" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/storage/firstaid/fire{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/fire{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/fire{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/brute,/obj/item/storage/firstaid/brute,/obj/item/storage/firstaid/brute,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"ceA" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/storage/firstaid/toxin{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/toxin{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/toxin{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/o2,/obj/item/storage/firstaid/o2,/obj/item/storage/firstaid/o2,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"ceB" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"ceC" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/solars/port) +"ceD" = (/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 13; id = "ferry_home"; name = "port bay 2"; width = 5},/turf/open/space/basic,/area/space) +"ceE" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Ferry Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"ceF" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "Ferry Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"ceG" = (/obj/machinery/mass_driver{dir = 4; id = "trash"; name = "Disposal Driver"},/turf/open/floor/plating,/area/maintenance/disposal) +"ceH" = (/obj/structure/fans/tiny,/obj/machinery/door/poddoor{id = "trash"; name = "Disposal Bay Door"},/turf/open/floor/plating,/area/maintenance/disposal) +"ceI" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/hallway/primary/central) +"ceJ" = (/obj/machinery/power/solar_control{dir = 4; name = "Starboard Quarter Solar Control"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) +"ceK" = (/obj/structure/grille,/turf/open/floor/plating,/area/router/eng) +"ceL" = (/obj/effect/turf_decal/delivery,/obj/structure/table,/obj/item/destTagger,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/router/eng) +"ceM" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/button/massdriver{id = "eng_out"; pixel_x = -24; pixel_y = 24},/obj/machinery/button/door{id = "engblock"; name = "Router Access Control"; pixel_x = -24; pixel_y = 32; req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/eng) +"ceN" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/router/eng) +"ceO" = (/obj/effect/turf_decal/delivery,/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 29},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/eng) +"ceP" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/router/eng) +"ceQ" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "2-5"},/turf/open/floor/plating,/area/maintenance/starboard/central) +"ceR" = (/obj/machinery/door/poddoor{id = "TEGMixVent"; name = "Mixing Chamber Vent"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine/vacuum,/area/engine/teg_hot) +"ceS" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/starboard/central) +"ceT" = (/obj/effect/turf_decal/delivery,/obj/machinery/computer/cargo/request{dir = 4},/obj/machinery/light/small,/obj/machinery/requests_console{department = "Engineering Router"; name = "Engineering Router RC"; pixel_y = -32},/turf/open/floor/plasteel,/area/router/eng) +"ceU" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 9},/obj/structure/fireaxecabinet{pixel_y = -32},/turf/open/floor/plasteel,/area/engine/atmos) +"ceV" = (/turf/open/floor/plasteel,/area/router/eng) +"ceW" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/router/eng) +"ceX" = (/obj/effect/turf_decal/delivery,/obj/machinery/power/apc{name = "Engineering Router APC"; pixel_y = -24},/obj/machinery/light/small,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/router/eng) +"ceY" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"ceZ" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/door/airlock/external/glass{name = "Asteroid Mining Access"; req_access_txt = "10;24"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cfa" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/turf/open/floor/engine/vacuum,/area/engine/teg_hot) +"cfb" = (/obj/machinery/light{dir = 8},/obj/machinery/photocopier,/turf/open/floor/carpet/blue,/area/medical/medbay/central) +"cfc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/hallway/primary/aft) +"cfd" = (/obj/structure/closet/crate/wooden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cfe" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Port Bow Hall - Starboard"; network = list("ss13","rd")},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cff" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/turf/open/floor/engine/vacuum,/area/engine/teg_hot) +"cfg" = (/obj/structure/chair{dir = 8},/obj/machinery/light_switch{pixel_y = 24},/obj/effect/landmark/start/research_director,/obj/machinery/camera{c_tag = "Research Director's Office - Port"; network = list("ss13","rd")},/obj/machinery/keycard_auth{pixel_x = -8; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"cfh" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) +"cfi" = (/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) +"cfj" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) +"cfk" = (/obj/structure/closet/secure_closet/engineering_electrical,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) +"cfl" = (/turf/closed/wall,/area/engine/engine_smes{name = "Power Monitoring"}) +"cfm" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall,/area/engine/engine_smes{name = "Power Monitoring"}) +"cfn" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"cfo" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/turf/open/floor/engine/vacuum,/area/engine/teg_hot) +"cfp" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 1},/turf/open/floor/engine/vacuum,/area/engine/teg_hot) +"cfq" = (/obj/structure/lattice/catwalk,/turf/open/floor/plating/airless,/area/space/nearstation) +"cfr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/door/airlock/external/glass{name = "Mixing Chamber Access"; req_one_access_txt = "10;24"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/engine/teg_hot) +"cfs" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos) +"cft" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/camera{c_tag = "Engineering - Mixing Chamber"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/engine/teg_hot) +"cfu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/teg_hot) +"cfv" = (/obj/effect/turf_decal/delivery,/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/firealarm{pixel_y = 26},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) +"cfw" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/camera{c_tag = "Engineering Construction Area"; dir = 4},/obj/structure/reagent_dispensers/watertank,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"cfx" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"cfy" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/terminal{dir = 1},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"}) +"cfz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/central) +"cfA" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/turf/open/floor/engine/vacuum,/area/engine/teg_hot) +"cfB" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/turf/open/floor/engine/vacuum,/area/engine/teg_hot) +"cfC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/engine/vacuum,/area/engine/teg_hot) +"cfD" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space/basic,/area/space/nearstation) +"cfE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall/r_wall,/area/engine/teg_hot) +"cfF" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/teg_hot) +"cfG" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage"; req_access_txt = "19;23"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/storage/tech) +"cfH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/engine/vacuum,/area/engine/teg_hot) +"cfI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/sparker{id = "TEGMixIgniter"; pixel_x = 24},/obj/effect/decal/cleanable/ash,/obj/effect/decal/remains/human,/turf/open/floor/engine/vacuum,/area/engine/teg_hot) +"cfJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/teg_hot) +"cfK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/teg_hot) +"cfL" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/door/airlock/atmos{name = "Atmospherics Access"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) +"cfM" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos) +"cfN" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cfO" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cfP" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos) +"cfQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Library Access"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/library) +"cfR" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/cigarette,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cfS" = (/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cfT" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/engine/atmos) +"cfU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/item/beacon,/turf/open/floor/plasteel,/area/engine/break_room) +"cfV" = (/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock"; req_access_txt = "24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/atmos) +"cfW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/plasma/reinforced/spawner/north,/obj/structure/window/plasma/reinforced/spawner,/obj/structure/lattice,/turf/open/space/basic,/area/engine/teg_hot) +"cfX" = (/obj/item/pipe,/obj/structure/cable{icon_state = "2-5"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) +"cfY" = (/obj/machinery/light/small{dir = 4},/obj/item/stack/sheet/metal,/obj/item/stack/sheet/metal,/obj/item/stack/sheet/metal,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) +"cfZ" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/stairs/right,/area/science/research{name = "Research Sector"}) +"cga" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cgb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external/glass{name = "Mixing Chamber Access"; req_one_access_txt = "10;24"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/engine/teg_hot) +"cgc" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/storage/primary) +"cgd" = (/obj/structure/fans/tiny,/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/maintenance/disposal) +"cge" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock"; req_access_txt = "24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/atmos) +"cgf" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cgg" = (/obj/effect/landmark/start/atmospheric_technician,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/atmos) +"cgh" = (/obj/machinery/pipedispenser,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/stripes/end{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/atmos) +"cgi" = (/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/teg_hot) +"cgj" = (/obj/machinery/conveyor/auto{id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting) +"cgk" = (/obj/machinery/light/small{dir = 8},/obj/machinery/conveyor/auto{id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting) +"cgl" = (/obj/machinery/button/door{id = "TEGMixVent"; name = "Mixing Chamber Vent"; pixel_y = 24; req_access_txt = "10"},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "atmos mix to burn"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) +"cgm" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/caution/stand_clear{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) +"cgn" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"cgo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,/turf/open/floor/plasteel/dark,/area/engine/teg_hot) +"cgp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/machinery/button/ignition{id = "TEGMixIgniter"; name = "Mix Igniter"; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) +"cgq" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cgr" = (/obj/machinery/vending/wardrobe/robo_wardrobe,/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/science/robotics/lab) +"cgs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cgt" = (/obj/structure/rack,/obj/item/caution,/obj/item/caution,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cgu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) +"cgv" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cgw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) +"cgx" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/atmos) +"cgy" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/rust,/area/maintenance/solars/starboard/aft) +"cgz" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/atmos) +"cgA" = (/obj/machinery/pipedispenser/disposal,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/atmos) +"cgB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cgC" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/hallway/primary/central) +"cgD" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/teg_hot) +"cgE" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) +"cgF" = (/obj/structure/grille,/obj/structure/window/reinforced/spawner/north,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/server{name = "Computer Core"}) +"cgG" = (/obj/structure/grille,/obj/structure/window/reinforced/spawner/north,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/server{name = "Computer Core"}) +"cgH" = (/obj/structure/cable{icon_state = "2-8"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"}) +"cgI" = (/obj/structure/cable{icon_state = "2-4"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"}) +"cgJ" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"}) +"cgK" = (/obj/structure/cable{icon_state = "1-8"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"}) +"cgL" = (/obj/machinery/computer/rdservercontrol{dir = 1},/obj/machinery/light{dir = 8},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/dark,/area/science/server{name = "Computer Core"}) +"cgM" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"cgN" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"}) +"cgO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"}) +"cgP" = (/obj/structure/cable{icon_state = "1-4"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"}) +"cgQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/server{name = "Computer Core"}) +"cgR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) +"cgS" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; target_pressure = 4500},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) +"cgT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/disposal) +"cgU" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "manual mix to burn"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) +"cgV" = (/obj/structure/reagent_dispensers/water_cooler,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cgW" = (/obj/docking_port/stationary{dir = 4; dwidth = 3; height = 5; id = "mining_home"; name = "mining shuttle bay"; roundstart_template = /datum/map_template/shuttle/mining/delta; width = 7},/turf/open/space/basic,/area/space) +"cgX" = (/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"cgY" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/deliveryChute{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"cgZ" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"cha" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/sorting/mail{dir = 4; sortType = 1},/turf/open/floor/plating,/area/maintenance/disposal) +"chb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) +"chc" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"chd" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/landmark/start/cargo_technician,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"che" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) +"chf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"chg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) +"chh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plating,/area/tcommsat/computer) +"chi" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/closed/wall/r_wall,/area/tcommsat/computer) +"chj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/obj/machinery/meter,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) +"chk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/closed/wall/r_wall,/area/engine/teg_hot) +"chl" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) +"chm" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/closed/wall/r_wall/rust,/area/hydroponics/garden{name = "Nature Preserve"}) +"chn" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 1},/obj/machinery/light{dir = 8},/obj/machinery/power/apc{areastring = "/area/maintenance/disposal/incinerator"; dir = 8; name = "Incinerator APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/engine/atmos) +"cho" = (/turf/closed/wall/r_wall/rust,/area/maintenance/department/eva) +"chp" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/engine/atmos) +"chq" = (/obj/machinery/pipedispenser/disposal/transit_tube,/obj/effect/turf_decal/stripes/end,/turf/open/floor/plasteel/dark,/area/engine/atmos) +"chr" = (/obj/machinery/atmospherics/components/binary/valve/digital,/turf/open/floor/plasteel/dark,/area/engine/teg_hot) +"chs" = (/turf/open/floor/plasteel/dark,/area/engine/teg_hot) +"cht" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) +"chu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/teg_hot) +"chv" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"chw" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"chx" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/atmos) +"chy" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/closed/wall/r_wall,/area/engine/teg_hot) +"chz" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel,/area/engine/teg_hot) +"chA" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/teg_hot) +"chB" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/teg_hot) +"chC" = (/turf/closed/wall/r_wall/rust,/area/space/nearstation) +"chD" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/components/binary/pump/on{dir = 1},/turf/open/floor/plasteel,/area/engine/teg_hot) +"chE" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/teg_cold) +"chF" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/structure/table,/obj/item/analyzer,/obj/item/pipe_dispenser,/obj/item/wrench,/turf/open/floor/plasteel/dark,/area/engine/teg_cold) +"chG" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/engine/teg_cold) +"chH" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/closed/wall/r_wall/rust,/area/maintenance/fore) +"chI" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/machinery/meter,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/engine/teg_cold) +"chJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security) +"chK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 4},/turf/open/floor/plating,/area/engine/teg_cold) +"chL" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos) +"chM" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/atmos) +"chN" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/engine/teg_hot) +"chO" = (/obj/structure/table,/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 4; name = "Atmos RC"; pixel_x = 30},/obj/item/clothing/head/welding{pixel_x = -5; pixel_y = 3},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 7},/obj/item/clothing/glasses/welding,/obj/item/multitool,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/atmos) +"chP" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Law Office"; req_access_txt = "38"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/lawoffice) +"chQ" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"chR" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/science/mixing"; dir = 1; name = "Toxins Lab APC"; pixel_y = 24},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/engine,/area/science/storage) +"chS" = (/obj/machinery/suit_storage_unit/atmos,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/engine/atmos) +"chT" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/engine,/area/science/storage) +"chU" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/wood,/area/library) +"chV" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"chW" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"chX" = (/obj/structure/sign/warning/nosmoking,/turf/closed/wall/r_wall,/area/engine/teg_hot) +"chY" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/table,/obj/machinery/light{dir = 8},/obj/item/storage/hypospraykit/fire,/obj/item/grenade/chem_grenade/smart_metal_foam,/obj/item/grenade/chem_grenade/smart_metal_foam,/obj/item/wrench,/turf/open/floor/plasteel,/area/engine/teg_hot) +"chZ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel,/area/engine/teg_hot) +"cia" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/teg_hot) +"cib" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot) +"cic" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"cid" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/table,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/item/analyzer,/turf/open/floor/plasteel,/area/engine/teg_hot) +"cie" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/engine/teg_cold) +"cif" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"cig" = (/obj/structure/window/reinforced/spawner/west,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"cih" = (/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"cii" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"cij" = (/obj/structure/table/reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/door/window/westleft{name = "Science Desk"; req_one_access_txt = "29;47"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/lab) +"cik" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/mass_driver{dir = 8; id = "router_in"; name = "Router Driver"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"cil" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"cim" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 11},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"cin" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) +"cio" = (/obj/structure/disposalpipe/junction{dir = 4},/turf/closed/wall,/area/science/robotics/mechbay) +"cip" = (/obj/machinery/mass_driver{id = "cargo_in"; name = "Router Driver"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"ciq" = (/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) +"cir" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/teg_cold) +"cis" = (/obj/structure/sign/warning/vacuum{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cit" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/port/fore) +"ciu" = (/obj/structure/barricade/wooden,/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/poster/ripped{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/port/fore) +"civ" = (/obj/structure/girder/displaced,/turf/open/floor/plating,/area/maintenance/port/fore) +"ciw" = (/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/port/fore) +"cix" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/port/fore) +"ciy" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/maintenance/port/fore) +"ciz" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/item/reagent_containers/food/drinks/trophy,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore) +"ciA" = (/obj/effect/turf_decal/tile/brown,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"ciB" = (/obj/structure/frame/computer,/obj/structure/disposalpipe/segment,/turf/open/floor/plating/airless,/area/maintenance/port/fore) +"ciC" = (/obj/structure/table,/obj/item/paper/pamphlet/gateway,/turf/open/floor/plasteel/white,/area/gateway) +"ciD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/teg_cold) +"ciE" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"ciF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"ciG" = (/obj/machinery/conveyor{dir = 4; id = "disposal_off"},/turf/open/floor/plating,/area/maintenance/disposal) +"ciH" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 6},/obj/machinery/meter,/obj/structure/disposalpipe/junction/flip{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/teg_cold) +"ciI" = (/turf/closed/wall/r_wall/rust,/area/quartermaster/warehouse) +"ciJ" = (/turf/closed/wall/rust,/area/quartermaster/warehouse) +"ciK" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"ciL" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/primary) +"ciM" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) +"ciN" = (/obj/structure/table/reinforced,/obj/item/storage/box/donkpockets{pixel_y = 4},/obj/machinery/door/poddoor/preopen{id = "kitchenlock"; name = "Kitchen Lockup"},/obj/machinery/door/window/northleft{name = "Kitchen Slider"; req_access_txt = "28"},/obj/machinery/door/window/southleft{name = "Bar Slider"; req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/grimy,/area/crew_quarters/kitchen) +"ciO" = (/obj/machinery/mass_driver{dir = 4; id = "disposal_out"; name = "Router Driver"},/turf/open/floor/plating,/area/maintenance/disposal) +"ciP" = (/obj/effect/turf_decal/delivery,/obj/item/weldingtool,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"ciQ" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"ciR" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/door/airlock/security{name = "Cargo Security Checkpoint"; req_access_txt = "63"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"ciS" = (/obj/machinery/conveyor/auto{dir = 9; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) +"ciT" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/closet/radiation,/obj/machinery/firealarm{dir = 4; pixel_x = -28; pixel_y = -4},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"ciU" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/gravity_generator) +"ciV" = (/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) +"ciW" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 11},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"ciX" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) +"ciY" = (/obj/structure/table,/obj/item/storage/toolbox/emergency,/obj/item/wrench,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{areastring = "/area/engine/teg_hot"; dir = 8; name = "Hot Loop APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/engine/teg_hot) +"ciZ" = (/obj/machinery/atmospherics/components/binary/valve/digital,/turf/open/floor/plasteel,/area/engine/teg_hot) +"cja" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cjb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cjc" = (/obj/structure/fans/tiny,/obj/structure/plasticflaps,/obj/machinery/door/poddoor{name = "Disposal Router"},/turf/open/floor/plating,/area/maintenance/disposal) +"cjd" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"cje" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"cjf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Cargo Detainment Cell"; req_access_txt = "63"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"cjg" = (/obj/machinery/conveyor/auto{dir = 1; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) +"cjh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/teg_hot) +"cji" = (/obj/structure/fans/tiny,/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 1; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) +"cjj" = (/turf/closed/wall,/area/crew_quarters/theatre/mime) +"cjk" = (/obj/machinery/vending/autodrobe,/turf/open/floor/plasteel/checker,/area/crew_quarters/theatre/mime) +"cjl" = (/obj/structure/closet/crate/wooden/toy,/obj/item/toy/figure/mime,/turf/open/floor/plasteel/checker,/area/crew_quarters/theatre/mime) +"cjm" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) +"cjn" = (/obj/structure/reagent_dispensers/cooking_oil,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) +"cjo" = (/obj/structure/table,/obj/item/flashlight/seclite,/turf/open/floor/plating,/area/maintenance/port/fore) +"cjp" = (/turf/closed/wall/r_wall,/area/crew_quarters/theatre/mime) +"cjq" = (/turf/closed/wall/rust,/area/maintenance/port/central) +"cjr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/science/server{name = "Computer Core"}) +"cjs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_hot) +"cjt" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/quartermaster/office"; dir = 1; name = "Cargo Office APC"; pixel_y = 24},/obj/structure/sign/poster/contraband/scum{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"cju" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/table,/obj/machinery/light_switch{pixel_x = 24},/obj/item/clothing/ears/earmuffs,/obj/item/extinguisher{pixel_x = -12; pixel_y = -2},/obj/machinery/camera{c_tag = "Engineering - Hot Loop"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/engine/teg_hot) +"cjv" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet,/area/library) +"cjw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/wood,/area/library) +"cjx" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood,/area/library) +"cjy" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/port/central) +"cjz" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/kirbyplants/photosynthetic,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cjA" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/quartermaster/office) +"cjB" = (/obj/item/stack/cable_coil/cut/red,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) +"cjC" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/clothing/mask/cigarette,/obj/structure/sign/poster/official/twelve_gauge{pixel_x = 32},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cjD" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/maintenance/department/eva) +"cjE" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = 32},/turf/open/space/basic,/area/space/nearstation) +"cjF" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = 32},/turf/open/space/basic,/area/space/nearstation) +"cjG" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"cjH" = (/obj/structure/lattice,/obj/structure/sign/warning/electricshock{pixel_x = -32},/turf/open/space/basic,/area/space/nearstation) +"cjI" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer) +"cjJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "E.V.A. Storage"; req_access_txt = "18"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"cjK" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/teg_cold) +"cjL" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/engine/teg_cold) +"cjM" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/item/storage/toolbox/mechanical,/obj/item/radio/off,/obj/item/multitool{pixel_x = -6},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/department/eva) +"cjN" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/camera{c_tag = "Security - Visitation Area"; dir = 1},/turf/open/floor/plasteel,/area/security/main) +"cjO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore) +"cjP" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cjQ" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) +"cjR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Security's Office"; req_one_access_txt = "58"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/hos) +"cjS" = (/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"cjT" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/landmark/start/security_officer,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/brig) +"cjU" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/teg_cold) +"cjV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Engineering Sector"},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cjW" = (/obj/structure/bed,/obj/machinery/light_switch{pixel_y = -24},/obj/item/bedsheet/hos,/obj/effect/landmark/start/head_of_security,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/button/door{id = "hos"; name = "HoS Office Shutters"; pixel_y = -32; pixel_x = -5},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) +"cjX" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 9},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/engine/teg_cold) +"cjY" = (/obj/machinery/computer/station_alert{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/keycard_auth{pixel_x = 8; pixel_y = 24},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"cjZ" = (/obj/item/beacon,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) +"cka" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"ckb" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 4},/area/science/robotics/lab) +"ckc" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/aft/secondary"; dir = 8; name = "Aft Air Hookup APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"ckd" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cke" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/wood,/area/library) +"ckf" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"ckg" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/landmark/event_spawn,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva) +"ckh" = (/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central) +"cki" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"ckj" = (/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central) +"ckk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/camera{c_tag = "Research Maintenance"; dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/circuit,/area/science/robotics/mechbay) +"ckl" = (/turf/open/space/basic,/area/space/station_ruins) +"ckm" = (/turf/closed/wall/r_wall,/area/engine/teg_cold) +"ckn" = (/obj/machinery/door/airlock/external/glass{name = "External Solar Access"; req_access_txt = "10;13"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) +"cko" = (/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/engine/engineering"; dir = 4; name = "Engine Room APC"; pixel_x = 24},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"ckp" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/landmark/start/chemist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"ckq" = (/obj/structure/closet/crate/hydroponics,/obj/machinery/light_switch{pixel_y = -24},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) +"ckr" = (/obj/effect/landmark/start/cargo_technician,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"cks" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"ckt" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/teg_hot) +"cku" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/teg_hot) +"ckv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{name = "Warehouse"; req_one_access_txt = "10;31"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"ckw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_hot) +"ckx" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"cky" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/engine/teg_hot) +"ckz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/table,/obj/item/pipe_dispenser,/turf/open/floor/plasteel,/area/engine/teg_hot) +"ckA" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/engine/teg_hot) +"ckB" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/closet/crate/engineering,/obj/machinery/light_switch{pixel_x = -24},/obj/item/rcl/pre_loaded,/obj/item/rcl/pre_loaded,/obj/item/stack/cable_coil/red,/obj/item/stack/cable_coil/red,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/machinery/camera{c_tag = "Engineering - Cold Loop"; dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_cold) +"ckC" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/valve/digital{name = "gas to cold loop"},/turf/open/floor/plasteel,/area/engine/teg_cold) +"ckD" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/structure/sign/warning/fire{pixel_x = 32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"ckE" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"ckF" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/engine/teg_cold"; dir = 4; name = "Cold Loop APC"; pixel_x = 24},/turf/open/floor/plasteel,/area/engine/teg_cold) +"ckG" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"ckH" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"ckI" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva) +"ckJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/engine/teg_hot) +"ckK" = (/obj/structure/closet/secure_closet/miner,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/item/clothing/under/rank/cargo/miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"ckL" = (/obj/structure/closet/secure_closet/miner,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/item/clothing/under/rank/cargo/miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"ckM" = (/obj/structure/closet/secure_closet/miner,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/item/clothing/under/rank/cargo/miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"ckN" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel,/area/science/xenobiology) +"ckO" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) +"ckP" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"ckQ" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"ckR" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/science/lab) +"ckS" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"ckT" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"ckU" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"ckV" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"ckW" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"ckX" = (/obj/machinery/atmospherics/components/binary/valve,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"ckY" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) +"ckZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/ai_monitored/storage/eva) +"cla" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"clb" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"clc" = (/obj/machinery/vending/wardrobe/chem_wardrobe,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"cld" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cle" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/science/misc_lab"; dir = 1; name = "Research Observatory APC"; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"clf" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology - Pen 3"; dir = 4},/turf/open/floor/engine,/area/science/xenobiology) +"clg" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"clh" = (/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cli" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/science/xenobiology) +"clj" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/science/xenobiology) +"clk" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/science/xenobiology) +"cll" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/science/xenobiology) +"clm" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/space/nearstation) +"cln" = (/obj/structure/window/reinforced/spawner/west,/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating/airless,/area/space/nearstation) +"clo" = (/obj/structure/window/reinforced/spawner/east,/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating/airless,/area/space/nearstation) +"clp" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/science/xenobiology) +"clq" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/science/xenobiology) +"clr" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/science/xenobiology) +"cls" = (/obj/structure/window/reinforced/spawner,/obj/structure/grille,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating/airless,/area/space/nearstation) +"clt" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/science/xenobiology) +"clu" = (/obj/machinery/door/window/northleft{name = "Library Desk Door"; req_access_txt = "37"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) +"clv" = (/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"clw" = (/obj/effect/landmark/start/librarian,/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) +"clx" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) +"cly" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) +"clz" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"clA" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"clB" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"clC" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"clD" = (/obj/machinery/telecomms/server/presets/medical,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"clE" = (/obj/machinery/ntnet_relay,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"clF" = (/obj/machinery/telecomms/server/presets/supply,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"clG" = (/obj/machinery/telecomms/server/presets/engineering,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"clH" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"}) +"clI" = (/obj/machinery/telecomms/bus/preset_four,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"clJ" = (/obj/machinery/telecomms/broadcaster/preset_left,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"clK" = (/obj/machinery/telecomms/processor/preset_four,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"clL" = (/obj/machinery/telecomms/bus/preset_two,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"clM" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"clN" = (/obj/machinery/telecomms/processor/preset_two,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) +"clO" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"clP" = (/obj/structure/table,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/analyzer,/obj/item/stock_parts/subspace/analyzer,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"clQ" = (/obj/structure/table,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/crystal,/obj/item/stock_parts/subspace/crystal,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"clR" = (/obj/structure/table,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/transmitter,/obj/item/stock_parts/subspace/transmitter,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"clS" = (/obj/structure/table,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"clT" = (/obj/structure/table,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/item/stock_parts/micro_laser,/obj/item/stock_parts/micro_laser,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"clU" = (/obj/structure/table,/obj/item/stock_parts/scanning_module,/obj/item/stock_parts/scanning_module,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"clV" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/camera{c_tag = "Supply - Security Post"; dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"clW" = (/turf/closed/wall/rust,/area/storage/tech) +"clX" = (/turf/closed/wall/rust,/area/maintenance/starboard/aft) +"clY" = (/obj/effect/turf_decal/stripes/line,/obj/structure/closet/firecloset,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_hot) +"clZ" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/structure/chair{dir = 4},/obj/machinery/camera{c_tag = "Escape Hall - Port"; dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"cma" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/chair{dir = 8},/obj/machinery/camera{c_tag = "Escape Hall - Starboard"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"cmb" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/camera{c_tag = "Supply - Mining Dock"; dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cmc" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Starboard Quarter Solar Maintenance"; dir = 4},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) +"cmd" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cme" = (/obj/structure/bed,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"cmf" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_hot) +"cmg" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot) +"cmh" = (/obj/structure/sign/warning/radiation,/turf/closed/wall/r_wall,/area/engine/gravity_generator) +"cmi" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"cmj" = (/turf/open/floor/plasteel,/area/engine/gravity_generator) +"cmk" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"cml" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cmm" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/plasteel,/area/engine/break_room) +"cmn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cmo" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cmp" = (/obj/machinery/door/airlock/engineering{name = "Gravity Generator"; req_access_txt = "11"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/gravity_generator) +"cmq" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"cmr" = (/obj/machinery/gravity_generator/main/station,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/gravity_generator) +"cms" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"cmt" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"cmu" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/cable,/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"cmv" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cmw" = (/obj/machinery/camera{c_tag = "Engineering - Gravity Generator"; dir = 1},/turf/open/floor/engine,/area/engine/gravity_generator) +"cmx" = (/obj/machinery/light,/turf/open/floor/engine,/area/engine/gravity_generator) +"cmy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Starboard Quarter Maintenance"; req_one_access_txt = "12;48"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/exit) +"cmz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Starboard Quarter Maintenance"; req_one_access_txt = "12;48"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/hallway/secondary/exit) +"cmA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Bar Backroom"; req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) +"cmB" = (/obj/structure/window/reinforced/spawner/west,/obj/effect/turf_decal/delivery,/obj/machinery/door/window/northright{name = "Emergency Shower"},/turf/open/floor/plasteel,/area/medical/chemistry) +"cmC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) +"cmD" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/deliveryChute,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"cmE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/teg_hot) +"cmF" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central) +"cmG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot) +"cmH" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "cargoblock"; name = "Cargo Router"},/turf/open/floor/plating,/area/quartermaster/sorting) +"cmI" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/item/radio/off{pixel_x = -3; pixel_y = 1},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"cmJ" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/machinery/door/airlock/external/glass{name = "Mining Dock"; req_one_access_txt = "10;24;48"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cmK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"cmL" = (/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/aft) +"cmM" = (/obj/structure/sign/poster/official/safety_internals{pixel_x = -32},/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/starboard/aft) +"cmN" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/item/radio/intercom{frequency = 1359; name = "Station Intercom (Security)"; pixel_y = -28},/turf/open/floor/plasteel/dark,/area/lawoffice) +"cmO" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; dir = 1; freq = 1400; location = "Engineering"},/turf/open/floor/plasteel,/area/engine/break_room) +"cmP" = (/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) +"cmQ" = (/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/machinery/camera{c_tag = "Xenobiology - Pen 4"; dir = 8; pixel_y = -22},/turf/open/floor/engine,/area/science/xenobiology) +"cmR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"cmS" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/robotics/lab) +"cmT" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/folder/red,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/door/window/northright{name = "Security Checkpoint"; req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"cmU" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"cmV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cmW" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/requests_console{department = "Cargo"; name = "Cargo RC"; pixel_x = -30},/obj/machinery/camera{c_tag = "Supply - Quartermaster's Office"; dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) +"cmX" = (/obj/machinery/light/small,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"cmY" = (/obj/machinery/door/airlock/engineering{name = "Hot Loop"; req_one_access_txt = "10;24"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot) +"cmZ" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/window/reinforced/spawner/west,/obj/machinery/atmospherics/components/unary/cryo_cell{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"cna" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/window/reinforced/spawner/east,/obj/machinery/atmospherics/components/unary/cryo_cell{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"cnb" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/obj/item/storage/box/beakers{pixel_x = -4},/obj/item/storage/box/syringes{pixel_x = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/science/xenobiology) +"cnc" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"cnd" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"cne" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"cnf" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"cng" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/quartermaster/qm) +"cnh" = (/obj/machinery/door/airlock/engineering{name = "Cold Loop"; req_access_txt = "10"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_cold) +"cni" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/starboard/aft) +"cnj" = (/obj/machinery/camera{c_tag = "Research - Observatory"; dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cnk" = (/obj/machinery/light,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"cnl" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1; pixel_x = 5},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cnm" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/gateway) +"cnn" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cno" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_cold) +"cnp" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/bridge) +"cnq" = (/obj/structure/disposalpipe/segment{dir = 10},/mob/living/simple_animal/cockroach,/turf/open/floor/plating,/area/maintenance/port/central) +"cnr" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_cold) +"cns" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/teg_cold) +"cnt" = (/obj/structure/fans/tiny,/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/obj/machinery/door/poddoor{name = "Disposal Router"},/turf/open/floor/plating,/area/maintenance/disposal) +"cnu" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/gateway) +"cnv" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/bot,/obj/effect/decal/cleanable/dirt,/obj/structure/frame/computer,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cnw" = (/obj/effect/turf_decal/bot,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/storage) +"cnx" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot) +"cny" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"cnz" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/structure/sign/departments/chemistry{pixel_y = 32},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cnA" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/office) +"cnB" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"cnC" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/engine,/area/science/explab) +"cnD" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/science/xenobiology) +"cnE" = (/obj/docking_port/stationary{dir = 2; dwidth = 9; height = 22; id = "emergency_home"; name = "CogStation Escape Dock"; width = 29},/turf/open/space/basic,/area/space) +"cnF" = (/obj/structure/disposalpipe/segment,/obj/item/reagent_containers/food/drinks/bottle/kahlua/empty,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/port/fore) +"cnG" = (/obj/machinery/door/airlock/external/glass{name = "Shuttle Maintenance Access"},/obj/structure/fans/tiny,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"cnH" = (/obj/machinery/door/airlock/external/glass{name = "Departures Shuttle Dock"},/obj/structure/fans/tiny,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"cnI" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/space/nearstation) +"cnJ" = (/obj/structure/girder,/turf/open/floor/plating/airless,/area/space/nearstation) +"cnK" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot) +"cnL" = (/obj/structure/closet/crate/science,/obj/item/stack/sheet/metal/ten,/obj/item/stack/sheet/glass/five,/obj/item/stack/rods/twentyfive,/obj/item/target/syndicate,/obj/item/target/alien,/obj/item/target,/obj/item/target/clown,/turf/open/floor/plasteel,/area/science/mixing) +"cnM" = (/obj/machinery/mass_driver{dir = 8; id = "pb_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) +"cnN" = (/obj/structure/bookcase/random/fiction,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/library) +"cnO" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/science/storage) +"cnP" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/turf/open/floor/wood,/area/library) +"cnQ" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/camera{c_tag = "Supply - Warehouse Exterior"; dir = 1},/turf/open/space/basic,/area/quartermaster/warehouse) +"cnR" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) +"cnS" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/fifteen_k{areastring = /area/maintenance/solars/starboard/aft; dir = 1; name = "Starboard Quarter Solars APC"; pixel_y = 26},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) +"cnT" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing) +"cnU" = (/obj/machinery/door/poddoor/incinerator_toxmix,/turf/open/floor/engine/vacuum,/area/science/mixing) +"cnV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/engine,/area/science/storage) +"cnW" = (/obj/structure/chair/office/dark{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) +"cnX" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/vehicle/ridden/wheelchair,/turf/open/floor/plasteel,/area/medical/medbay/central) +"cnY" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/vehicle/ridden/wheelchair,/turf/open/floor/plasteel,/area/medical/medbay/central) +"cnZ" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/machinery/holopad,/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_y = -32},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"coa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cob" = (/obj/structure/closet/l3closet/virology,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 8},/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/open/floor/plasteel/white,/area/medical/virology) +"coc" = (/obj/machinery/camera{c_tag = "Medbay - Reception"; dir = 4},/turf/open/floor/plasteel/stairs,/area/medical/medbay/central) +"cod" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/machinery/light,/obj/structure/window/reinforced/spawner/east,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/medical/medbay/lobby) +"coe" = (/obj/structure/bodycontainer/morgue,/obj/machinery/camera{c_tag = "Medbay Morgue"; dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"cof" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_hot) +"cog" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"}) +"coh" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"}) +"coi" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"coj" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cok" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot) +"col" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"com" = (/obj/machinery/chem_master,/obj/effect/turf_decal/stripes/end{dir = 8},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel,/area/medical/chemistry) +"con" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/start/station_engineer,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/storage/primary) +"coo" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/storage/primary) +"cop" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "CEPrivacy"; name = "CE Privacy Shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/heads/chief) +"coq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departures"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"cor" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departures"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"cos" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engineering Workshop"; req_access_txt = "11"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) +"cot" = (/obj/machinery/computer/apc_control{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"cou" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start/chief_engineer,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"cov" = (/obj/structure/sign/warning/nosmoking{pixel_y = -32},/turf/closed/wall,/area/medical/medbay/central) +"cow" = (/obj/machinery/door/airlock/external/glass{name = "Asteroid Mining Access"; req_one_access_txt = "10;48"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cox" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"coy" = (/obj/structure/sign/poster/official/safety_internals{pixel_x = -32},/obj/effect/turf_decal/stripes/line,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"coz" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"coA" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Aft Maintenance - Starboard Quarter"; dir = 8; pixel_y = -22},/turf/open/floor/plating,/area/maintenance/aft) +"coB" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Aft Hallway - MedSci Port"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"coC" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/camera{c_tag = "Aft Maintenance - Starboard Bow"; pixel_x = 22},/turf/open/floor/plating,/area/maintenance/aft) +"coD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"coE" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Aft Hall - MedSci Starboard"; dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"coF" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/landmark/start/assistant,/obj/machinery/camera{c_tag = "Aft Hall - Workshop"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"coG" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/obj/machinery/camera{c_tag = "Research - Experimentation Lab"; dir = 8; pixel_y = -22},/turf/open/floor/engine,/area/science/explab) +"coH" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"coI" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/dark/side{dir = 4},/area/gateway) +"coJ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "Virology Access"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/medical/virology) +"coK" = (/obj/machinery/camera{c_tag = "Medbay - Monkey Pen"; dir = 4},/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/virology) +"coL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=cargo"; location = "eng2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"coM" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"coN" = (/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"coO" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/camera{c_tag = "Central Hall"; dir = 4},/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central) +"coP" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/machinery/camera{c_tag = "Central Plaza - Port"; dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"coQ" = (/obj/machinery/camera{c_tag = "Central Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central) +"coR" = (/obj/machinery/camera{c_tag = "Ferry Docking Bay"; dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"coS" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "Ferry Docking Bay - Starboard"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"coT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/teg_hot) +"coU" = (/obj/machinery/computer/secure_data{dir = 1},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/camera{c_tag = "Security - Front Desk"; dir = 1},/turf/open/floor/plasteel,/area/security/main) +"coV" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/camera{c_tag = "Medbay Entrance"; dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"coW" = (/obj/machinery/light/small{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/engineering,/obj/machinery/camera{c_tag = "Technical Storage"; dir = 4},/turf/open/floor/plating,/area/storage/tech) +"coX" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/camera{c_tag = "Medbay - Operating Theatre"; dir = 8; network = list("ss13","medbay"); pixel_y = -22},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"coY" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/item/reagent_containers/glass/beaker/cryoxadone,/obj/item/reagent_containers/glass/beaker/cryoxadone,/obj/machinery/camera{c_tag = "Medbay - Cryogenics"; dir = 1},/obj/item/reagent_containers/glass/beaker/cryoxadone,/obj/item/reagent_containers/glass/beaker/cryoxadone,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"coZ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpa" = (/obj/structure/closet/crate/radiation,/obj/item/storage/firstaid/radbgone,/obj/item/clothing/suit/radiation,/obj/item/clothing/head/radiation,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/engine/teg_cold) +"cpb" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/open/floor/plasteel,/area/medical/virology) +"cpc" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpd" = (/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/crew_quarters/fitness) +"cpe" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/stripes/white/full,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/engine,/area/science/explab) +"cpf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"cpg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/science/explab) +"cph" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"cpi" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 5},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"cpj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"cpk" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold) +"cpl" = (/obj/machinery/newscaster{pixel_x = 30},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpm" = (/obj/effect/turf_decal/delivery,/obj/machinery/photocopier,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; name = "Cargo RC"; pixel_y = 30},/obj/machinery/camera{c_tag = "Supply - Delivery Office Aft"; network = list("ss13","rd")},/obj/item/paper/guides/cogstation/disposals,/obj/item/paper/fluff/cogstation/mulebot,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"cpn" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpo" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_cold) +"cpp" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{id = "cargo"},/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "cargoblock"; name = "Cargo Router"},/turf/open/floor/plating,/area/quartermaster/sorting) +"cpq" = (/obj/effect/landmark/event_spawn,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) +"cpr" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/public/glass,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"cps" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) +"cpt" = (/obj/machinery/newscaster{pixel_x = -30},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"cpu" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/holopad,/turf/open/floor/wood,/area/library) +"cpv" = (/obj/structure/table,/obj/machinery/newscaster{pixel_x = 30},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cpw" = (/obj/machinery/computer/operating,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/sign/poster/official/space_cops{pixel_y = 32},/turf/open/floor/plasteel/white,/area/science/robotics/lab) +"cpx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central) +"cpy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"cpz" = (/turf/closed/wall/r_wall,/area/medical/virology) +"cpA" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold) +"cpB" = (/obj/effect/landmark/carpspawn,/turf/open/space/basic,/area/space) +"cpC" = (/obj/effect/landmark/carpspawn,/turf/open/space/basic,/area/space/station_ruins) +"cpD" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/engine,/area/science/storage) +"cpE" = (/obj/structure/fans/tiny,/obj/structure/plasticflaps,/turf/open/floor/plating,/area/maintenance/disposal) +"cpF" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold) +"cpG" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/maintenance/department/eva) +"cpH" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/directions/engineering{dir = 4; pixel_y = -24},/obj/structure/sign/directions/supply{dir = 4; pixel_y = -32},/obj/structure/sign/directions/evac{dir = 4; pixel_y = -40},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cpI" = (/obj/machinery/chem_dispenser,/obj/effect/turf_decal/stripes/end{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel,/area/medical/chemistry) +"cpJ" = (/turf/closed/wall/r_wall/rust,/area/quartermaster/office) +"cpK" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_hot) +"cpL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/engine/teg_hot) +"cpM" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/engine/atmos) +"cpN" = (/obj/structure/closet/secure_closet/atmospherics,/obj/item/cartridge/atmos,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/dark,/area/engine/atmos) +"cpO" = (/obj/structure/closet/secure_closet/atmospherics,/obj/item/cartridge/atmos,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/atmos) +"cpP" = (/obj/machinery/camera{c_tag = "Research - Gateway Atrium"; dir = 1},/turf/open/floor/plasteel/white,/area/gateway) +"cpQ" = (/obj/machinery/vending/wardrobe/atmos_wardrobe,/obj/effect/turf_decal/stripes/line{dir = 6; layer = 2.03},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/engine/atmos) +"cpR" = (/obj/structure/closet/crate/engineering/electrical,/obj/item/electronics/apc,/obj/item/electronics/apc,/obj/item/electronics/airalarm,/obj/item/electronics/airalarm,/obj/item/electronics/firelock,/obj/item/electronics/firelock,/obj/item/electronics/firealarm,/obj/item/electronics/firealarm,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold) +"cpS" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold) +"cpT" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_cold) +"cpU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold) +"cpV" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/engine/teg_cold) +"cpW" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cpX" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine/air,/area/engine/atmos) +"cpY" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_hot) +"cpZ" = (/obj/structure/table,/obj/item/tank/internals/air,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel/dark,/area/engine/teg_hot) +"cqa" = (/obj/machinery/autolathe,/obj/effect/turf_decal/delivery,/obj/machinery/light{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold) +"cqb" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cqc" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold) +"cqd" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/mob/living/simple_animal/hostile/retaliate/goose{check_friendly_fire = 1; desc = "It may not be as wise as an owl, but the Head of Security's pet is far more dangerous."; faction = list("neutral","silicon","turret","station"); name = "Officer Snooty"},/turf/open/floor/plasteel,/area/security/main) +"cqe" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=eng1"; location = "sci"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"cqg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqh" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"cqi" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/crew_quarters/fitness) +"cqj" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"cqk" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=med"; location = "cargo"},/turf/open/floor/plasteel,/area/quartermaster/office) +"cql" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=eng2"; location = "evac"},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"cqm" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/item/storage/box/disks_nanite,/obj/item/book/manual/wiki/research_and_development{pixel_x = 4; pixel_y = -8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"cqn" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/teg_cold) +"cqo" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_cold) +"cqp" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_cold) +"cqq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Warehouse"; req_one_access_txt = "10;24"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_cold) +"cqr" = (/obj/machinery/power/apc{areastring = "/area/maintenance/starboard/central"; name = "Central Starboard Maintenance APC"; pixel_y = -26},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/starboard/central) +"cqs" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/table/wood,/obj/item/clipboard,/obj/item/paper/guides/jobs/engi/solars,/obj/item/pen,/obj/machinery/camera{c_tag = "Engineering Foyer - Port"; network = list("ss13","rd")},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) +"cqt" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/noticeboard/qm{dir = 4; pixel_x = -32},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"cqu" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/computer/atmos_alert,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) +"cqv" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) +"cqw" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/machinery/disposal/bin,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/stripes/white/full,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cqx" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/modular_computer/console/preset/engineering,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cqy" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/table/wood,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cqz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) +"cqA" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold) +"cqB" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/bottle/absinthe,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"cqC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/engine/teg_cold) +"cqD" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold) +"cqE" = (/obj/machinery/conveyor_switch{id = "EngiCargoConveyer"},/obj/machinery/button/door{id = "EngiDeliverDoor"; name = "Engineering Delivery Door Control"; pixel_x = 24},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold) +"cqF" = (/obj/effect/turf_decal/delivery,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"cqG" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) +"cqH" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"cqI" = (/obj/structure/chair/stool,/obj/effect/landmark/start/atmospheric_technician,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cqJ" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cqK" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/sign/plaques/atmos{pixel_x = 32},/turf/open/floor/plasteel,/area/engine/break_room) +"cqL" = (/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold) +"cqM" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/engine/teg_cold) +"cqN" = (/turf/closed/wall/rust,/area/maintenance/department/security) +"cqO" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold) +"cqP" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"cqQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqS" = (/obj/machinery/computer/rdconsole/experiment{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_x = -30; receive_ore_updates = 1},/turf/open/floor/plasteel,/area/science/explab) +"cqT" = (/obj/effect/turf_decal/stripes/line,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"cqU" = (/obj/machinery/door/airlock/external{name = "Escape Pod"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"cqV" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"cqW" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/window/reinforced/spawner,/obj/structure/disposalpipe/junction/flip{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cqX" = (/obj/docking_port/stationary{dir = 4; dwidth = 5; height = 7; id = "supply_home"; name = "Cargo Shuttle"; width = 12},/turf/open/space/basic,/area/space) +"cqY" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/status_display{pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cqZ" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_y = -32},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cra" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Auxiliary Tool Storage"},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/tools) +"crb" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/turf/open/floor/plating,/area/engine/teg_cold) +"crc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"crd" = (/obj/effect/turf_decal/bot,/obj/structure/table/reinforced,/obj/item/destTagger,/obj/item/destTagger,/obj/item/destTagger,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = 32},/obj/machinery/button/massdriver{id = "cargo_out"; pixel_x = -8; pixel_y = -4},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"cre" = (/obj/machinery/door/airlock/external/glass{name = "Asteroid Mining Access"; req_one_access_txt = "10;48"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"crf" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"crg" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/door/airlock/medical/glass{name = "Chemistry Lab"; req_access_txt = "5; 33"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"crh" = (/obj/machinery/mass_driver{dir = 1; id = "cargo_out"; name = "Router Driver"},/turf/open/floor/plating,/area/quartermaster/sorting) +"cri" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/turf/open/floor/plasteel,/area/engine/break_room) +"crj" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) +"crk" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central) +"crl" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"crm" = (/obj/machinery/door/firedoor,/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/machinery/door/poddoor{id = "EngiDeliverDoor"; name = "Engineering Delivery Door"},/turf/open/floor/plating,/area/engine/teg_cold) +"crn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "chem1"; name = "chem lab shutters"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/medical/chemistry) +"cro" = (/turf/closed/wall/r_wall/rust,/area/maintenance/starboard/aft) +"crp" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/storage/tech) +"crq" = (/obj/structure/closet/crate/freezer,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/medical/morgue"; dir = 4; name = "Morgue APC"; pixel_x = 24},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"crr" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/camera{c_tag = "Central Hall - Fore"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/hallway/primary/central) +"crs" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"crt" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) +"cru" = (/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"crv" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"crw" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"crx" = (/obj/machinery/camera{c_tag = "Engine Room - Port Quarter"; dir = 1},/obj/structure/cable,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"cry" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10; pixel_x = -5},/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random{pixel_x = -2; pixel_y = -2},/obj/item/stack/cable_coil/random{pixel_x = 2; pixel_y = 2},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/camera{c_tag = "Robotics - Surgery"; dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab) +"crz" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/camera/motion{c_tag = "Telecomms Satellite"; dir = 1; network = list("tcomms")},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) +"crA" = (/obj/machinery/aug_manipulator,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab) +"crB" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior - Port"; dir = 8; network = list("tcomms")},/turf/open/space/basic,/area/space/nearstation) +"crC" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior Starboard"; dir = 4; network = list("tcomms")},/turf/open/space/basic,/area/space/nearstation) +"crD" = (/obj/machinery/camera/motion{c_tag = "Telecomms Server Room"; dir = 1; network = list("tcomms")},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) +"crE" = (/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior - Port Quarter"; network = list("tcomms")},/turf/open/space/basic,/area/space) +"crF" = (/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior - Starboard Quarter"; network = list("tcomms"); pixel_x = 22},/turf/open/space/basic,/area/space) +"crG" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating/airless,/area/science/test_area) +"crH" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating/airless,/area/science/test_area) +"crI" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/science/mixing) +"crJ" = (/obj/structure/window/reinforced,/obj/machinery/mass_driver{dir = 8; id = "toxinsdriver"},/obj/effect/turf_decal/stripes/end{dir = 4},/turf/open/floor/plating,/area/science/mixing) +"crK" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating/airless,/area/science/test_area) +"crL" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating/airless,/area/science/test_area) +"crM" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating/airless,/area/science/test_area) +"crN" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/science/xenobiology) +"crO" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/effect/turf_decal/stripes/end,/turf/open/floor/plasteel,/area/science/xenobiology) +"crP" = (/obj/structure/lattice,/turf/closed/wall,/area/hallway/secondary/entry) +"crQ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/sign/poster/official/safety_internals{pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"crR" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"crS" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/door/airlock/external{name = "Escape Pod"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"crT" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/sign/poster/official/safety_internals{pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"crU" = (/obj/effect/turf_decal/stripes/line,/obj/item/crowbar,/obj/structure/sign/poster/official/safety_internals{pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"crV" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/public/glass,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"crW" = (/obj/machinery/computer/rdconsole/robotics{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab) +"crX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/start/medical_doctor,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"crY" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"crZ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/left,/area/hallway/primary/aft) +"csa" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/sign/warning/pods{pixel_x = -32; pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"csb" = (/obj/structure/sign/warning/pods{pixel_x = 32; pixel_y = 32},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) +"csc" = (/obj/structure/fans/tiny/invisible,/obj/docking_port/stationary{dir = 2; dwidth = 1; height = 4; name = "escape pod loader"; roundstart_template = /datum/map_template/shuttle/escape_pod/default; width = 3},/turf/open/space/basic,/area/space) +"csd" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"cse" = (/obj/structure/table/wood,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/item/clipboard,/obj/item/paper/monitorkey,/obj/item/pen/fountain,/obj/item/stamp/ce,/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 5; name = "Chief Engineer's RC"; pixel_y = -32},/mob/living/simple_animal/parrot/Poly,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"csf" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director's RC"; pixel_y = -32; receive_ore_updates = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"csg" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office) +"csh" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"csi" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/shutters/preopen{id = "chem1"; name = "chem lab shutters"},/turf/open/floor/plating,/area/medical/chemistry) +"csj" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"csk" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/science/explab) +"csl" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) +"csm" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"csn" = (/obj/machinery/computer/security{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -32},/turf/open/floor/plasteel,/area/security/main) +"cso" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/medical/genetics) +"csp" = (/obj/structure/cable{icon_state = "1-2"},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_x = 28},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"csq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Cold Loop"; req_access_txt = "10"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold) +"csr" = (/obj/structure/table,/obj/machinery/computer/libraryconsole/bookmanagement,/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_x = 30},/turf/open/floor/plasteel,/area/bridge) +"css" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold) +"cst" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/teg_cold) +"csu" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark/side{dir = 8},/area/gateway) +"csv" = (/obj/structure/table,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/item/storage/toolbox/mechanical,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/paper/guides/cogstation/letter_supp,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"csw" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"csx" = (/obj/structure/closet/secure_closet/RD,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/cable{icon_state = "1-2"},/obj/item/paper/fluff/cogstation/letter_rd,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"csy" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/xmastree,/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) +"csz" = (/obj/effect/turf_decal/tile/yellow,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"csA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Visitation"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/main) +"csB" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) +"csC" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) +"csD" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/bridge) +"csE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) +"csF" = (/obj/structure/bed,/obj/effect/landmark/start/research_director,/obj/item/bedsheet/rd,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) +"csG" = (/obj/machinery/holopad,/obj/effect/landmark/event_spawn,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) +"csH" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/library) +"csI" = (/obj/structure/table/wood,/obj/machinery/light_switch{pixel_x = 4; pixel_y = -24},/obj/item/flashlight/lamp/green,/obj/structure/cable{icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_x = -6; pixel_y = -32},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) +"csJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"csK" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/machinery/door/window/northright{name = "Medbay Desk"; req_access_txt = "5"},/obj/item/clipboard,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/item/paper/guides/cogstation/letter_med,/obj/item/clothing/glasses/hud/health,/obj/item/pen,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"csL" = (/obj/effect/landmark/xmastree/rdrod,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) +"csM" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"csN" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) +"csO" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"csP" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"csQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) +"csR" = (/turf/open/floor/engine,/area/science/storage) +"csS" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"csT" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/science/circuit) +"csU" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/storage/tech) +"csV" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/machinery/button/door{id = "robotics"; name = "Shutters Control Button"; pixel_y = 8; req_access_txt = "29"; pixel_x = -24},/turf/open/floor/plasteel/dark/side{dir = 8},/area/science/robotics/lab) +"csW" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"csX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"csY" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/science/xenobiology) +"csZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) +"cta" = (/obj/effect/landmark/blobstart,/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine,/area/science/xenobiology) +"ctb" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/landmark/blobstart,/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine,/area/science/explab) +"ctc" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"ctd" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"cte" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"ctf" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"ctg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"cth" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"cti" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"ctj" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/science/mixing) +"ctk" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/turf/open/floor/plasteel,/area/engine/atmos) +"ctl" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/white/full,/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel,/area/engine/workshop) +"ctm" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/sorting/mail/flip{sortType = 2},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"ctn" = (/obj/structure/closet/secure_closet/engineering_chief,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/obj/item/paper/guides/cogstation/letter_chief,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"cto" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"ctp" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"ctq" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/sorting) +"ctr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/office) +"cts" = (/obj/structure/rack,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/turf/open/floor/plasteel/white,/area/gateway) +"ctt" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"ctu" = (/obj/structure/table,/obj/effect/turf_decal/bot,/obj/machinery/camera{c_tag = "Supply - Cargo Office"; dir = 1},/obj/machinery/newscaster{pixel_y = -28},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/storage/box/disks,/turf/open/floor/plasteel,/area/quartermaster/office) +"ctv" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"ctw" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/office) +"ctx" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"cty" = (/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"ctz" = (/obj/structure/table,/obj/item/stamp/qm,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/structure/cable{icon_state = "4-8"},/obj/item/coin/silver{pixel_x = -12},/obj/item/key{pixel_x = 8; pixel_y = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) +"ctA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{name = "Cargo Bay"; req_one_access_txt = "31;48"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) +"ctB" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) +"ctC" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/storage) +"ctD" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/medical/virology) +"ctE" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/modular_computer/console/preset/engineering,/obj/structure/cable{icon_state = "1-2"},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel,/area/engine/workshop) +"ctF" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/medical/virology) +"ctG" = (/turf/closed/wall,/area/engine/workshop) +"ctH" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"ctI" = (/obj/structure/table/reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/engine,/area/science/explab) +"ctJ" = (/obj/structure/plasticflaps,/turf/open/floor/plating,/area/engine/workshop) +"ctK" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop) +"ctL" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology - Pen 5"; dir = 4},/turf/open/floor/engine,/area/science/xenobiology) +"ctM" = (/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/machinery/camera{c_tag = "Xenobiology - Pen 6"; dir = 8; pixel_y = -22},/turf/open/floor/engine,/area/science/xenobiology) +"ctN" = (/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"ctO" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/sign/warning/biohazard{pixel_x = -32},/turf/open/floor/plasteel/white,/area/medical/virology) +"ctP" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"ctQ" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating/airless,/area/science/xenobiology) +"ctR" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"ctS" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/sign/warning/biohazard{pixel_x = -32; pixel_y = 32},/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"ctT" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/machinery/camera{c_tag = "Xenobiology - Aft"; network = list("ss13","rd")},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"ctU" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"ctV" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/hallway/secondary/exit"; name = "Escape Shuttle Hallway APC"; pixel_y = -28},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) +"ctW" = (/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"ctX" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/toolcloset,/turf/open/floor/plasteel,/area/engine/workshop) +"ctY" = (/obj/structure/sign/departments/xenobio{pixel_x = -32; pixel_y = 32},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"ctZ" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cua" = (/obj/structure/chair/comfy/black{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cub" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cuc" = (/obj/machinery/door/airlock/virology/glass{name = "Monkey Pen"; req_access_txt = "39"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"cud" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/camera{c_tag = "Xenobiology - Aft Access"; dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"cue" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "8;55"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/science/xenobiology) +"cuf" = (/obj/machinery/light,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cug" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cuh" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cui" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cuj" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cuk" = (/obj/structure/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cul" = (/obj/structure/chair/comfy/black,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cum" = (/obj/structure/rack,/obj/item/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/healthanalyzer{pixel_x = 4; pixel_y = -4},/obj/item/healthanalyzer{pixel_x = 4; pixel_y = -4},/obj/item/healthanalyzer{pixel_x = 4; pixel_y = -4},/obj/item/assembly/prox_sensor,/obj/item/assembly/prox_sensor,/obj/item/assembly/prox_sensor,/obj/item/assembly/prox_sensor,/obj/item/assembly/prox_sensor,/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab) +"cun" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/food/snacks/meat/steak,/obj/machinery/camera{c_tag = "Xenobiology - Test Chamber"; dir = 1},/turf/open/floor/engine,/area/science/xenobiology) +"cuo" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/hallway/primary/aft) +"cup" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cuq" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cur" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cus" = (/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cut" = (/obj/docking_port/stationary{dir = 2; dwidth = 7; height = 9; id = "whiteship_home"; name = "SS13: Merchant Dock"; width = 13},/turf/open/space/basic,/area/space) +"cuu" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/toolcloset,/turf/open/floor/plasteel,/area/engine/workshop) +"cuv" = (/obj/structure/bed,/obj/item/bedsheet/medical,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"cuw" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/kirbyplants/photosynthetic,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/workshop) +"cux" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation) +"cuy" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space/nearstation) +"cuz" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/space/basic,/area/space/nearstation) +"cuA" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/space/basic,/area/space/nearstation) +"cuB" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation) +"cuC" = (/obj/structure/lattice/catwalk,/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/space/basic,/area/space/nearstation) +"cuD" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space/nearstation) +"cuE" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space/nearstation) +"cuF" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/junction{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/workshop) +"cuG" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space/nearstation) +"cuH" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/workshop) +"cuI" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/table,/obj/machinery/airalarm{pixel_y = 24},/obj/item/storage/toolbox/emergency,/obj/item/screwdriver,/turf/open/floor/plasteel,/area/engine/workshop) +"cuJ" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/table,/obj/machinery/light{dir = 1},/obj/item/storage/toolbox/mechanical,/obj/item/screwdriver,/turf/open/floor/plasteel,/area/engine/workshop) +"cuK" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/secure_closet/engineering_welding,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/engine/workshop"; dir = 1; name = "Engineering Workshop APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/engine/workshop) +"cuL" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/workshop) +"cuM" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/structure/chair{dir = 1},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/workshop) +"cuN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall,/area/engine/workshop) +"cuO" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/storage/primary) +"cuP" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/atmospheric_technician,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cuQ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/gateway) +"cuR" = (/turf/closed/wall,/area/router/air) +"cuS" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/mass_driver{dir = 1; id = "workshop_out"; name = "Router Driver"},/turf/open/floor/plating,/area/engine/workshop) +"cuT" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/conveyor{id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop) +"cuU" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/sign/poster/official/build{pixel_x = -32},/turf/open/floor/plasteel,/area/engine/workshop) +"cuV" = (/turf/open/floor/plasteel,/area/engine/workshop) +"cuW" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cuX" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay"; req_access_txt = "5"},/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cuY" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"cuZ" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark/side{dir = 4},/area/science/robotics/lab) +"cva" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/engine/workshop) +"cvb" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/engine/workshop) +"cvc" = (/obj/structure/chair/stool,/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/workshop) +"cvd" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/workshop) +"cve" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) +"cvf" = (/turf/open/floor/plasteel/freezer,/area/medical/virology) +"cvg" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/workshop) +"cvh" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/computer/rdconsole/production{dir = 8},/turf/open/floor/plasteel,/area/engine/workshop) +"cvi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/workshop) +"cvj" = (/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/conveyor{id = "DeliveryConveyer"},/turf/open/floor/plating,/area/quartermaster/sorting) +"cvk" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 1; id = "DeliveryConveyer"},/turf/open/floor/plating,/area/quartermaster/sorting) +"cvl" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/router/air) +"cvm" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Airbridge Router APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/router/air) +"cvn" = (/obj/structure/table,/obj/item/destTagger,/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/router/air) +"cvo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/medical/virology) +"cvp" = (/obj/effect/turf_decal/bot,/obj/machinery/computer/cargo/request,/obj/machinery/camera{c_tag = "Airbridge Router"; pixel_x = 22},/obj/machinery/requests_console{department = "Airbridge Router"; name = "Airbridge Router RC"; pixel_y = 28},/turf/open/floor/plasteel,/area/router/air) +"cvq" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor{dir = 1; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop) +"cvr" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/workshop) +"cvs" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/medical/virology) +"cvt" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 10},/area/science/robotics/lab) +"cvu" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cvv" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/requests_console{department = "Genetics"; name = "Genetics RC"; pixel_x = 30},/turf/open/floor/plasteel/white,/area/medical/genetics) +"cvw" = (/obj/structure/closet,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/item/wrench/medical,/obj/item/screwdriver,/obj/item/stock_parts/cell/high/plus,/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -30},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central) +"cvx" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/storage/firstaid/regular{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/regular{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/regular{pixel_x = 2; pixel_y = 4},/obj/item/storage/toolbox/emergency,/obj/item/hypospray/mkii/tricord,/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -30},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"cvy" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) +"cvz" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; target_pressure = 4500},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cvA" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/warning/securearea{pixel_x = -32; pixel_y = -32},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cvB" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/machinery/porta_turret/ai{dir = 1; req_access = list(16)},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"cvC" = (/obj/machinery/computer/nanite_cloud_controller,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/dark,/area/science/server{name = "Computer Core"}) +"cvD" = (/obj/effect/turf_decal/delivery,/obj/machinery/rnd/server,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"cvE" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/door/poddoor{id = "RDServer"; name = "RD Server Lockup"},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"cvF" = (/obj/item/caution,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"cvG" = (/obj/machinery/door/airlock/research/glass{name = "Xenobiology Lab Access"; req_access_txt = "55"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/xenobiology) +"cvH" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Toxins Mixing Lab"; req_access_txt = "7;8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel/white,/area/science/mixing) +"cvI" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/computer/telecomms/server{dir = 1; network = "tcommsat"},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cvJ" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) +"cvK" = (/obj/structure/chair/sofa/right,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge) +"cvL" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cvM" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/landmark/event_spawn,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/gateway) +"cvN" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cvO" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/components/binary/valve{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cvP" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/camera{c_tag = "Custodial Closet"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/open/floor/plasteel,/area/janitor) +"cvQ" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/side,/area/science/robotics/lab) +"cvR" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/sorting/mail/flip{sortType = 23},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cvS" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"cvT" = (/obj/structure/extinguisher_cabinet,/turf/closed/wall,/area/medical/medbay/central) +"cvU" = (/obj/structure/closet/crate/freezer/blood,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/reagent_dispensers/virusfood{pixel_x = -32},/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel/white,/area/medical/virology) +"cvV" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cvW" = (/obj/structure/chair/comfy/black,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cvX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "8;55"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/science/xenobiology) +"cvY" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research/glass{name = "Xenobiology Lab Access"; req_access_txt = "55"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/science/xenobiology) +"cvZ" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/clipboard,/obj/item/stamp/denied{pixel_x = 4; pixel_y = 4},/obj/item/stamp,/obj/machinery/door/window/southright{name = "Customs Desk"; req_access_txt = "57"},/obj/machinery/door/poddoor/shutters/preopen{id = "HoPAft"; name = "HoP Aft Desk Shutters"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"cwa" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/flashlight/lamp,/obj/structure/window/reinforced/spawner,/obj/machinery/door/poddoor/shutters/preopen{id = "HoPAft"; name = "HoP Aft Desk Shutters"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"cwb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"},/turf/open/floor/circuit,/area/science/robotics/mechbay) +"cwc" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/button/door{id = "cargoblock"; name = "Router Access Control"; pixel_x = -24; pixel_y = 24; req_access_txt = "31"},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"cwd" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"cwe" = (/obj/structure/closet/secure_closet/exile,/turf/open/floor/plasteel/white,/area/gateway) +"cwf" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cwg" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/medical/virology) +"cwh" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cwi" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cwj" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/cable,/turf/open/floor/plating,/area/medical/virology) +"cwk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/lounge) +"cwl" = (/obj/structure/table,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/book/manual/wiki/infections,/obj/item/folder/white,/obj/machinery/requests_console{department = "Virology"; name = "Virology RC"; pixel_x = -32},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cwm" = (/obj/machinery/atmospherics/components/binary/valve,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cwn" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cwo" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/table,/obj/machinery/microwave,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cwp" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/cable,/turf/open/floor/plating,/area/medical/virology) +"cwq" = (/obj/machinery/door/airlock/engineering{name = "Hot Loop"; req_one_access_txt = "10;24"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) +"cwr" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/engine/workshop) +"cws" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"cwt" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) +"cwu" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cwv" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/maintenance/disposal) +"cww" = (/turf/closed/wall/r_wall,/area/engine/atmos) +"cwx" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/stripes/white/full,/turf/open/floor/plasteel,/area/engine/atmos) +"cwy" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/transit_tube/horizontal,/turf/open/floor/plating,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"cwz" = (/obj/structure/transit_tube/curved{dir = 8},/turf/open/space/basic,/area/space) +"cwA" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos) +"cwB" = (/turf/open/floor/plasteel,/area/engine/atmos) +"cwC" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"cwD" = (/obj/structure/transit_tube/diagonal/topleft,/turf/open/space/basic,/area/space) +"cwE" = (/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/workshop) +"cwF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"cwG" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/effect/landmark/event_spawn,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) +"cwH" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/crew_quarters/toilet/restrooms) +"cwI" = (/obj/structure/transit_tube/horizontal,/turf/open/space/basic,/area/space) +"cwJ" = (/obj/structure/lattice,/obj/structure/transit_tube/horizontal,/turf/open/space/basic,/area/space/nearstation) +"cwK" = (/obj/structure/transit_tube/crossing/horizontal,/turf/open/space/basic,/area/space) +"cwL" = (/obj/structure/transit_tube/horizontal,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos) +"cwM" = (/obj/effect/turf_decal/stripes/end{dir = 4},/obj/structure/transit_tube/station/reverse/flipped,/obj/structure/transit_tube_pod{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"cwN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) +"cwO" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cwP" = (/obj/structure/bed,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/landmark/start/chief_engineer,/obj/item/bedsheet/ce,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/chief"; dir = 4; name = "Chief Engineer's Office APC"; pixel_x = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) +"cwQ" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/primary) +"cwR" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"cwS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Warehouse"; req_access_txt = "11"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) +"cwT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/medical/virology) +"cwU" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central) +"cwV" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) +"cwW" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/public/glass,/turf/open/floor/plasteel,/area/hallway/primary/central) +"cwX" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/public/glass,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cwY" = (/obj/effect/landmark/event_spawn,/obj/machinery/air_sensor/atmos/toxins_mixing_tank,/turf/open/floor/engine/vacuum,/area/science/mixing) +"cwZ" = (/obj/structure/table,/obj/item/storage/box/beanbag,/obj/item/gun/ballistic/revolver/doublebarrel,/obj/item/storage/hypospraykit/toxin,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) +"cxa" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 6},/turf/open/space/basic,/area/space/nearstation) +"cxb" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"cxc" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"cxd" = (/obj/machinery/computer/monitor,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) +"cxe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cxf" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cxg" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cxh" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/landmark/start/chemist,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"cxi" = (/obj/structure/rack,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/item/extinguisher,/obj/item/extinguisher,/obj/item/extinguisher,/obj/item/extinguisher,/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Engineering - Primary Tool Storage"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"cxj" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/reagent_dispensers/foamtank,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"cxk" = (/obj/structure/tank_dispenser,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) +"cxl" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/storage/primary) +"cxm" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/warehouse) +"cxn" = (/obj/machinery/portable_atmospherics/scrubber,/obj/item/t_scanner{pixel_x = -4},/obj/item/pipe,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/quartermaster/warehouse) +"cxo" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light/small,/obj/machinery/camera{c_tag = "Supply - Warehouse Aft"; dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cxp" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/mob/living/simple_animal/bot/floorbot,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cxq" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cxr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cxs" = (/obj/structure/table,/obj/machinery/light{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/item/storage/toolbox/electrical,/obj/item/hand_labeler,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) +"cxt" = (/obj/effect/landmark/start/cargo_technician,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) +"cxu" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) +"cxv" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cxw" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cxx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{name = "Warehouse"; req_one_access_txt = "10;31"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cxy" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/quartermaster/storage) +"cxz" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"cxA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{name = "Mining Office"; req_access_txt = "48"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cxB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Cargo Office"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) +"cxC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) +"cxD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"cxE" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cxF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/office) +"cxG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) +"cxH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) +"cxI" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) +"cxJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/junction{dir = 8},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) +"cxK" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) +"cxL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) +"cxM" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cxN" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"cxO" = (/obj/structure/table,/obj/item/storage/firstaid/regular,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cxP" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"cxQ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) +"cxR" = (/obj/effect/landmark/start/shaft_miner,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cxS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cxT" = (/obj/structure/table,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/paper/guides/cogstation/letter_supp,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cxU" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) +"cxV" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cxW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Starboard Quarter Maintenance"; req_one_access_txt = "12;48"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/office) +"cxX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft) +"cxY" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"cxZ" = (/obj/effect/turf_decal/delivery,/obj/machinery/button/door{id = "MiningConveyorBlastDoor"; name = "Mining Conveyor Access"; pixel_x = 8; pixel_y = -24; req_one_access_txt = "10;24;48"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cya" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft) +"cyb" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cyc" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/door/airlock/external/glass{name = "Mining Dock"; req_one_access_txt = "10;24;48"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cyd" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer) +"cye" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"cyf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"cyg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"cyh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Mining Office Maintenance"; req_one_access_txt = "10;24;48"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/miningoffice) +"cyi" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cyj" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cyk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cyl" = (/obj/effect/turf_decal/tile/yellow,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cym" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cyn" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cyo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Aft Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/hallway/primary/aft) +"cyp" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/workshop) +"cyq" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/power/apc{dir = 4; name = "Restrooms APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"cyr" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cys" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cyt" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/purple,/obj/machinery/power/apc{areastring = "/area/science/robotics/lab"; dir = 8; name = "Robotics Lab APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cyu" = (/obj/structure/closet/wardrobe/chemistry_white{anchored = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"cyv" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/engine/workshop) +"cyw" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/sign/poster/official/cleanliness{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"cyx" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cyy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Medbay Lobby"},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white/side,/area/medical/medbay/lobby) +"cyz" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/workshop) +"cyA" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"cyB" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/sign/poster/official/medical_green_cross{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cyC" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cyD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departures"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"cyE" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"cyF" = (/obj/structure/closet/secure_closet/chemical,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"cyG" = (/obj/machinery/chem_master,/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central) +"cyH" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cyI" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cyJ" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) +"cyK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"cyL" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cyM" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cyN" = (/obj/machinery/chem_dispenser/apothecary,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central) +"cyO" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft) +"cyP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft) +"cyQ" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft) +"cyR" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft) +"cyS" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft) +"cyT" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft) +"cyU" = (/obj/machinery/camera{c_tag = "Aft Maintenance - Central Starboard"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/aft) +"cyV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) +"cyW" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"cyX" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"cyY" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) +"cyZ" = (/obj/machinery/computer/arcade,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) +"cza" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) +"czb" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/paicard,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) +"czc" = (/obj/structure/chair{dir = 8},/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/cafeteria,/area/hallway/secondary/exit) +"czd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"cze" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"czf" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark/side{dir = 4},/area/gateway) +"czg" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/mob/living/simple_animal/hostile/retaliate/bat,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"czh" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"czi" = (/obj/structure/bed,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light_switch{pixel_x = 24},/obj/effect/landmark/start/chief_medical_officer,/obj/item/bedsheet/cmo,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"czj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/aft) +"czk" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft) +"czl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Aft Maintenance"; req_access_txt = "12"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/hallway/secondary/exit) +"czm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"czn" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"czo" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"czp" = (/obj/structure/chair{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"czq" = (/obj/structure/table/glass,/obj/item/reagent_containers/food/drinks/coffee,/obj/item/pen/blue,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"czr" = (/obj/structure/table/glass,/obj/item/storage/toolbox/emergency,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"czs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"czt" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"czu" = (/obj/machinery/suit_storage_unit/cmo,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"czv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"czw" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"czx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"czy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"czz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Gateway Chamber"; req_access_txt = "62"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/engine,/area/gateway) +"czA" = (/obj/machinery/modular_computer/console/preset/research{dir = 8},/obj/item/reagent_containers/food/drinks/coffee,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"czB" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"czC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"czD" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"czE" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"czF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/medical/chemistry) +"czG" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"czH" = (/obj/machinery/button/door{id = "robotics2"; name = "Shutters Control Button"; pixel_x = 24; pixel_y = -24; req_access_txt = "29"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"czI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"czJ" = (/obj/item/beacon,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"czK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"czL" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical/genetics) +"czM" = (/obj/machinery/requests_console{department = "Chemistry"; departmentType = 2; name = "Chemistry RC"; pixel_x = 30; receive_ore_updates = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry) +"czN" = (/obj/structure/closet/crate/trashcart,/obj/structure/sign/departments/custodian{pixel_x = 32},/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) +"czO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance_hatch{name = "Waste Disposal"; req_one_access_txt = "12;50"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal) +"czP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central) +"czQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/maintenance/department/chapel) +"czR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/sorting/mail,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/maintenance/department/chapel) +"czS" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/janitor) +"czT" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/janitor) +"czU" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/janitor) +"czV" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) +"czW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/chair/office/light{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central) +"czX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/rust,/area/maintenance/disposal) +"czY" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/janitor) +"czZ" = (/obj/effect/landmark/start/janitor,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/janitor) +"cAa" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/chair/sofa/right,/obj/item/reagent_containers/food/drinks/bottle/vermouth/empty,/obj/item/reagent_containers/food/snacks/grown/cannabis{pixel_x = -4; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal) +"cAb" = (/obj/machinery/firealarm{pixel_y = 26},/obj/structure/chair/sofa/left,/obj/item/storage/box/hug/medical,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass{dir = 8},/turf/open/floor/plasteel,/area/maintenance/disposal) +"cAc" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/medbay/central) +"cAd" = (/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal) +"cAe" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/janitor) +"cAf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/janitor) +"cAg" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/janitor) +"cAh" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance_hatch{name = "Custodial Closet"; req_access_txt = "12;26"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/janitor) +"cAi" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/maintenance/disposal) +"cAj" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/maintenance/disposal) +"cAk" = (/obj/effect/turf_decal/stripes/line,/obj/item/reagent_containers/pill/floorpill,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/glass,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass{dir = 1},/turf/open/floor/plasteel,/area/maintenance/disposal) +"cAl" = (/obj/effect/turf_decal/stripes/line,/obj/item/stack/tile/plasteel{pixel_x = 10; pixel_y = 4},/obj/item/camera,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass{dir = 8},/turf/open/floor/plasteel,/area/maintenance/disposal) +"cAm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cAn" = (/obj/structure/disposalpipe/junction/flip,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal) +"cAo" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cAp" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/workshop) +"cAq" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal) +"cAr" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/maintenance/disposal) +"cAs" = (/obj/structure/mopbucket,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/janitor) +"cAt" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/window/southleft{name = "Cloning Access"; req_one_access_txt = "9;45"},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cAu" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"cAv" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/medical/medbay/central) +"cAw" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/soap,/obj/item/grenade/chem_grenade/cleaner,/obj/item/grenade/chem_grenade/cleaner,/obj/item/grenade/chem_grenade/cleaner,/obj/item/reagent_containers/spray/cleaner{pixel_x = 4; pixel_y = -1},/obj/structure/disposalpipe/segment,/obj/item/reagent_containers/spray/cleaner{pixel_x = -8; pixel_y = 4},/obj/machinery/requests_console{department = "Custodial Closet"; name = "Custodial RC"; pixel_x = -32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/janitor) +"cAx" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/landmark/start/janitor,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/janitor) +"cAy" = (/obj/item/cigbutt,/turf/open/floor/plating,/area/maintenance/disposal) +"cAz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/grille/broken,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) +"cAA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/closed/wall,/area/storage/primary) +"cAB" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cAC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/freezer,/area/medical/virology) +"cAD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Isolation Room A"; req_access_txt = "39"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cAE" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/caution,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cAF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Detective's Office"; req_access_txt = "4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"cAG" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start/virologist,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cAH" = (/obj/structure/table,/obj/item/storage/box/beakers,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cAI" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cAJ" = (/obj/structure/table/wood,/obj/item/storage/book/bible/booze,/obj/item/beacon{pixel_y = -8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office) +"cAK" = (/obj/machinery/computer/med_data,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cAL" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/security{name = "Detective's Office"; req_access_txt = "4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/detectives_office) +"cAM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"cAN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"cAO" = (/obj/effect/landmark/start/detective,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"cAP" = (/obj/structure/table/wood,/obj/item/storage/fancy/cigarettes,/obj/item/lighter{pixel_x = -4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/newscaster/security_unit{pixel_y = -30},/obj/machinery/camera{c_tag = "Detective's Office"; dir = 1},/obj/item/reagent_containers/food/drinks/bottle/hcider{pixel_x = 3; pixel_y = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"cAQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) +"cAR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office) +"cAS" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark/side{dir = 8},/area/gateway) +"cAT" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/hallway/primary/aft) +"cAU" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) +"cAV" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cAW" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cAX" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cAY" = (/obj/machinery/door/airlock{name = "Catering"; req_one_access_txt = "25;28"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) +"cAZ" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cBa" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/workshop) +"cBb" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/main) +"cBc" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cBd" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) +"cBe" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cBf" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cBg" = (/obj/structure/chair,/obj/effect/turf_decal/tile/neutral,/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cBh" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cBi" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cBj" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cBk" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/landmark/start/station_engineer,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) +"cBl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{name = "Power Monitoring"; req_access_txt = "10"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) +"cBm" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/rnd/production/techfab/department/engineering,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/workshop) +"cBn" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) +"cBo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cBp" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cBq" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar) +"cBr" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"cBs" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"cBt" = (/obj/structure/closet/l3closet/scientist,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"cBu" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/sign/departments/security{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cBv" = (/obj/structure/table/glass,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cBw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Central Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/hallway/primary/port/fore) +"cBx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) +"cBy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) +"cBz" = (/obj/structure/filingcabinet/filingcabinet,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel,/area/quartermaster/qm) +"cBA" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/machinery/camera{c_tag = "Aft Hall - Fore"; pixel_x = 22},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cBB" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/engine/workshop) +"cBC" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) +"cBD" = (/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cBE" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cBF" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/central) +"cBG" = (/obj/machinery/light,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cBH" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cBI" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/table/wood,/obj/machinery/recharger,/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cBJ" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/power/apc{name = "Engineering Foyer APC"; pixel_y = -24},/obj/item/storage/firstaid/regular,/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cBK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cBL" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cBM" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"cBN" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"cBO" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar) +"cBP" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"cBQ" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"cBR" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) +"cBS" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar) +"cBT" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cBU" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/crew_quarters/bar) +"cBV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/carpet/green,/area/crew_quarters/bar) +"cBW" = (/obj/structure/sign/plaques/golden{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/green,/area/crew_quarters/bar) +"cBX" = (/obj/structure/chair/stool/bar,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/green,/area/crew_quarters/bar) +"cBY" = (/obj/machinery/newscaster{pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/carpet/green,/area/crew_quarters/bar) +"cBZ" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cCa" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cCb" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/sign/departments/security{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cCc" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cCd" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/sleeper{dir = 8},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) +"cCe" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cCf" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Central Maintenance - Fore"; dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/central) +"cCg" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cCh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"cCi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Monkey Pen"; req_access_txt = "39"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cCj" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cCk" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/medical/virology) +"cCl" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/medical/virology) +"cCm" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cCn" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/port/fore) +"cCo" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/medical/virology) +"cCp" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/port/fore) +"cCq" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central) +"cCr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/medical/virology) +"cCs" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark,/area/chapel/office) +"cCt" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Chapel Confessions"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/dark,/area/chapel/main) +"cCu" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plating,/area/medical/virology) +"cCv" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/medical/virology) +"cCw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable,/turf/open/floor/plating,/area/medical/virology) +"cCx" = (/obj/structure/chair/office/light,/obj/effect/landmark/start/virologist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cCy" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/caution,/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cCz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Isolation Room B"; req_access_txt = "39"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cCA" = (/obj/machinery/computer/security/wooden_tv,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) +"cCB" = (/obj/machinery/light,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office) +"cCC" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) +"cCD" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/freezer,/area/medical/virology) +"cCE" = (/obj/machinery/portable_atmospherics/canister/water_vapor,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/junction/flip,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/janitor) +"cCF" = (/obj/machinery/conveyor_switch/oneway{id = "recycler"; name = "Recycler Conveyor Control"},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plating,/area/maintenance/disposal) +"cCG" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) +"cCH" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cCI" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cCJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/wood,/area/library) +"cCK" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/public/glass{name = "Library Access"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/library) +"cCL" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cCM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/junction,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=bridge1"; location = "router"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) +"cCN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/left,/area/hallway/primary/central) +"cCO" = (/obj/structure/table,/obj/machinery/airalarm{pixel_y = 24},/obj/item/hand_labeler,/obj/item/reagent_containers/glass/bottle/formaldehyde,/obj/item/paper/guides/jobs/medical/morgue,/obj/item/paper/guides/cogstation/cdn_med{pixel_x = -6; pixel_y = 1},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"cCP" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/landmark/start/depsec/engineering,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"cCQ" = (/obj/structure/bed,/obj/item/bedsheet/medical,/obj/machinery/light,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/freezer,/area/medical/virology) +"cCR" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) +"cCS" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/freezer,/area/medical/virology) +"cCT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/stairs/medium,/area/hallway/primary/aft) +"cCU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cCV" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/security) +"cCW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) +"cCX" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) +"cCY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cCZ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cDa" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cDb" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/item/storage/toolbox/mechanical,/obj/item/clothing/glasses/science,/obj/item/pen,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology) +"cDc" = (/obj/structure/table,/obj/machinery/light,/obj/structure/bedsheetbin,/obj/item/clothing/glasses/hud/health,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/freezer,/area/medical/virology) +"cDd" = (/obj/structure/bed,/obj/item/bedsheet/medical,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/freezer,/area/medical/virology) +"cDe" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/medical/virology) +"cDf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/medical/virology) +"cDg" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{id = "DeliveryConveyer"},/turf/open/floor/plating,/area/quartermaster/sorting) +"cDh" = (/obj/machinery/computer/card/minor/cmo{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/keycard_auth{pixel_x = -24},/obj/item/paper/guides/cogstation/letter_cmo,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"cDi" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/closet/crate/solarpanel_small,/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/storage/primary) +"cDj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) +"cDk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/hallway/primary/port/fore) +"cDl" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cDm" = (/obj/structure/plasticflaps,/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 1; id = "DeliveryConveyer"},/turf/open/floor/plating,/area/quartermaster/sorting) +"cDn" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/router/air) +"cDo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/air) +"cDp" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) +"cDq" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) +"cDr" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) +"cDs" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/sign/warning/securearea{pixel_x = -32},/obj/item/kirbyplants{icon_state = "applebush"},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/dark/side,/area/bridge) +"cDt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access_txt = "20"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) +"cDu" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) +"cDv" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"cDw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain) +"cDx" = (/obj/machinery/light_switch{pixel_x = -4; pixel_y = 24},/obj/structure/extinguisher_cabinet{pixel_x = 6; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain) +"cDy" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/crew_quarters/heads/hor) +"cDz" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/checkpoint/supply) +"cDA" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/computer/secure_data{dir = 8},/obj/machinery/newscaster/security_unit{pixel_x = 30},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"cDB" = (/obj/item/storage/secure/safe{pixel_x = -24},/obj/machinery/light{dir = 8},/obj/structure/dresser,/obj/item/storage/lockbox/medal,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) +"cDC" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/captain,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) +"cDD" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/computer/security{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/security/checkpoint/supply"; dir = 4; name = "Cargo Security Checkpoint APC"; pixel_x = 24},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"cDE" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) +"cDF" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) +"cDG" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) +"cDH" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/gateway) +"cDI" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/gateway) +"cDJ" = (/obj/machinery/computer/crew,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"cDK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Gateway Chamber"; req_access_txt = "62"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/engine,/area/gateway) +"cDL" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/obj/machinery/camera{c_tag = "Medbay - Apothecary"; dir = 8; network = list("ss13","medbay"); pixel_y = -22},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cDM" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/table/glass,/obj/item/book/manual/wiki/chemistry,/obj/item/book/manual/wiki/chemistry{pixel_x = 3; pixel_y = 3},/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science{pixel_x = 2; pixel_y = 4},/turf/open/floor/plasteel,/area/medical/chemistry) +"cDN" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/engine,/area/gateway) +"cDO" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cDP" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cDQ" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cDR" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light_switch{pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cDS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) +"cDT" = (/obj/structure/table,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/item/stack/cable_coil/red,/obj/item/stack/cable_coil/red{pixel_x = 3},/turf/open/floor/plasteel,/area/gateway) +"cDU" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) +"cDV" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/command{name = "Gateway Atrium"; req_access_txt = "62"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/gateway) +"cDW" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) +"cDX" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cDY" = (/obj/structure/cable{icon_state = "4-8"},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) +"cDZ" = (/obj/structure/table,/obj/machinery/computer/med_data/laptop,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Medical Officer's Desk"; departmentType = 5; name = "Chief Medical Officer RC"; pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"cEa" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/crew_quarters/heads/cmo) +"cEb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Research Director's Office"; req_access_txt = "30"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) +"cEc" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; dir = 1; freq = 1400; location = "Bridge"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEd" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEe" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEj" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEk" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research/glass{name = "Research Sector"; req_one_access_txt = "29;47"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEl" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEm" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEn" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research/glass{name = "Research Sector"; req_one_access_txt = "29;47"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEo" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cEp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cEq" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cEr" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cEs" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEt" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research/glass{name = "Research Sector"; req_one_access_txt = "29;47"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/lab) +"cEx" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEy" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/lab) +"cEz" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cEA" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 24},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/lab) +"cEC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/science/lab) +"cED" = (/obj/structure/chair/stool,/obj/effect/landmark/start/scientist,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/lab) +"cEE" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/aft"; dir = 8; name = "Aft Maintenance APC"; pixel_x = -26},/turf/open/floor/plating,/area/maintenance/aft) +"cEF" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cEG" = (/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cEH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cEI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cEJ" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/science/lab) +"cEL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/science/lab) +"cEM" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cEO" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"cEP" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark/side,/area/science/robotics/lab) +"cEQ" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cER" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay Locker Room"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cES" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cET" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cEU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay Locker Room"; req_access_txt = "5"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cEV" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cEW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/start/paramedic,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cEX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cEY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cEZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFd" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFe" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFg" = (/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/medical/medbay/central) +"cFh" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFi" = (/obj/effect/landmark/start/paramedic,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFj" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFk" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFl" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"cFm" = (/obj/structure/closet/crate/freezer/blood,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"cFn" = (/obj/structure/closet/l3closet,/obj/structure/disposalpipe/segment,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFo" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFp" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"cFq" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"cFr" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFs" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/paper/guides/cogstation/letter_med,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFt" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/camera{c_tag = "Medbay - Port"; dir = 4},/obj/machinery/power/apc{areastring = "/area/medical/medbay/central"; dir = 8; name = "Medbay APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFv" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFw" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/door/window/westright{name = "Treatment Center"; req_access_txt = "5"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"cFx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"cFy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"cFz" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/clothing/gloves/color/latex,/obj/item/clothing/suit/apron/surgical,/obj/item/clothing/mask/surgical,/obj/item/healthanalyzer,/obj/item/clothing/neck/stethoscope,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"cFA" = (/obj/structure/table,/obj/item/storage/box/beakers{pixel_x = 5},/obj/item/storage/box/syringes{pixel_x = -4},/obj/item/reagent_containers/dropper,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/medical/medbay/central) +"cFB" = (/obj/machinery/vending/snack/teal,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central) +"cFC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/medical/medbay/central) +"cFD" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/start/paramedic,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFF" = (/obj/effect/landmark/start/paramedic,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central) +"cFG" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central) +"cFH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay Break Room"; req_access_txt = "5"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFI" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFK" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/carpet/blue,/area/medical/medbay/central) +"cFL" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central) +"cFM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central) +"cFN" = (/obj/structure/closet/secure_closet/medical1,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central) +"cFO" = (/obj/structure/closet/crate/medical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFP" = (/obj/structure/table/wood,/obj/item/modular_computer/laptop/preset/civilian,/obj/item/reagent_containers/pill/patch/styptic,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/carpet/blue,/area/medical/medbay/central) +"cFQ" = (/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start/medical_doctor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/carpet/blue,/area/medical/medbay/central) +"cFR" = (/obj/structure/closet/crate/medical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cFT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Virology Exterior Airlock"; req_access_txt = "39"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) +"cFU" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology) +"cFV" = (/obj/structure/table,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/item/multitool{pixel_x = 3},/obj/item/multitool{pixel_x = 3},/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = -1},/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = -1},/obj/item/storage/toolbox/electrical{pixel_x = -1; pixel_y = 4},/obj/item/storage/toolbox/electrical{pixel_x = -1; pixel_y = 4},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab) +"cFW" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/science/robotics/lab) +"cFX" = (/obj/machinery/chem_heater,/obj/machinery/firealarm{dir = 8; pixel_x = 26},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central) +"cFY" = (/turf/open/floor/plasteel,/area/router/air) +"cFZ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/machinery/button/massdriver{id = "airbridge_out"; pixel_x = -8; pixel_y = 24},/turf/open/floor/plasteel,/area/router/air) +"cGa" = (/obj/machinery/conveyor{dir = 4; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air) +"cGb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "MedSci Router"; req_access_txt = "5"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cGc" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/light_switch{pixel_y = -24},/obj/structure/disposalpipe/junction{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cGd" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Medbay Locker Room"; dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cGe" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light,/obj/item/reagent_containers/blood/OMinus{pixel_x = 4; pixel_y = 3},/obj/item/reagent_containers/food/drinks/coffee{pixel_x = 6},/obj/item/storage/box/masks{pixel_x = -4},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -30},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cGf" = (/obj/structure/window/reinforced/spawner,/obj/machinery/conveyor{dir = 4; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air) +"cGg" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/window/reinforced/spawner,/obj/machinery/conveyor{dir = 4; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air) +"cGh" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/window/reinforced/spawner,/obj/machinery/mass_driver{dir = 4; id = "airbridge_in"; name = "Router Driver"},/turf/open/floor/plating,/area/router/air) +"cGi" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cGj" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cGk" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cGl" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cGm" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cGn" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cGo" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/science/research{name = "Research Sector"}) +"cGp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cGq" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"cGr" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/research/glass{name = "Xenobiology Lab Access"; req_access_txt = "55"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"cGs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit) +"cGt" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit) +"cGu" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) +"cGv" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/science/xenobiology) +"cGw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "8;55"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology) +"cGx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Experimentation Lab"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) +"cGy" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology) +"cGz" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) +"cGA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"cGB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"cGC" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"cGD" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"cGE" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"cGF" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/engine,/area/science/storage) +"cGG" = (/obj/machinery/power/apc{areastring = "/area/science/storage"; dir = 4; name = "Toxins Storage APC"; pixel_x = 24},/obj/structure/cable,/turf/open/floor/engine,/area/science/storage) +"cGH" = (/obj/machinery/camera{c_tag = "Toxins Lab - Storage"; dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/engine,/area/science/storage) +"cGI" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/chair/office/light,/obj/effect/landmark/start/chemist,/turf/open/floor/plasteel,/area/medical/chemistry) +"cGJ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/engine,/area/science/storage) +"cGK" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/engine,/area/science/storage) +"cGL" = (/obj/structure/table,/obj/item/extinguisher,/obj/item/storage/toolbox/mechanical,/obj/item/wrench,/obj/item/clothing/mask/gas,/obj/item/extinguisher{pixel_x = -7; pixel_y = 3},/turf/open/floor/engine,/area/science/storage) +"cGM" = (/obj/structure/tank_dispenser,/turf/open/floor/engine,/area/science/storage) +"cGN" = (/obj/structure/closet/l3closet,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cGO" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cGP" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/storage) +"cGQ" = (/obj/machinery/door/airlock/research{name = "Plasma Canister Storage"; req_access_txt = "7;8"},/turf/open/floor/engine,/area/science/storage) +"cGR" = (/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/science/circuit) +"cGS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit) +"cGT" = (/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit) +"cGU" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "5;6"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"cGV" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/science/storage) +"cGW" = (/obj/effect/landmark/blobstart,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/science/storage) +"cGX" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/science/circuit) +"cGY" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/science/circuit) +"cGZ" = (/turf/open/floor/plating/airless,/area/science/storage) +"cHa" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/structure/sign/warning/fire{pixel_x = -32},/obj/machinery/camera{c_tag = "Toxins Lab - Plasma Storage"; dir = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/science/storage) +"cHb" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/science/circuit) +"cHc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit) +"cHd" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit) +"cHe" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/science/circuit) +"cHf" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/stack/cable_coil/red,/turf/open/floor/plasteel/white,/area/science/circuit) +"cHg" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit) +"cHh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/science/circuit) +"cHi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/science/circuit) +"cHj" = (/obj/structure/table,/obj/item/storage/hypospraykit/toxin{pixel_x = -5},/obj/item/storage/hypospraykit/fire{pixel_x = 5},/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/glasses/sunglasses,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/explab) +"cHk" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/explab) +"cHl" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/explab) +"cHm" = (/obj/machinery/atmospherics/components/binary/pump,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/explab) +"cHn" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/explab) +"cHo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"cHp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"cHq" = (/obj/structure/closet/firecloset,/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/science/explab) +"cHr" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) +"cHs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) +"cHt" = (/obj/structure/disposalpipe/junction,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) +"cHu" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) +"cHv" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Research - Experimentation Hall"; dir = 8; network = list("ss13","medbay")},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) +"cHw" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/warning/biohazard{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) +"cHx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/engine,/area/science/explab) +"cHy" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/engine,/area/science/explab) +"cHz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/engine,/area/science/explab) +"cHA" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/research{name = "Experimentation Lab"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) +"cHB" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/landmark/blobstart,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"cHC" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/science/explab"; dir = 4; name = "Experimentation Lab APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) +"cHD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/item/beacon,/turf/open/floor/engine,/area/science/explab) +"cHE" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/engine,/area/science/explab) +"cHF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/engine,/area/science/explab) +"cHG" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Experimentation Lab"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"cHH" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"cHI" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) +"cHJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/engine,/area/science/explab) +"cHK" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cHL" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cHM" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cHN" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cHO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) +"cHP" = (/obj/structure/chair/office/light{dir = 1; pixel_y = 3},/obj/effect/landmark/start/geneticist,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) +"cHQ" = (/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) +"cHR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Morgue"; req_one_access_txt = "9;45"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"cHS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Genetics Lab"; req_access_txt = "9"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics) +"cHT" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/rust,/area/medical/morgue) +"cHU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light_switch{pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics) +"cHV" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"cHW" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left"; dir = 2; icon_state = "left"; name = "Chemistry Desk"; req_access_txt = "33"},/turf/open/floor/plasteel,/area/medical/chemistry) +"cHX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"cHY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/recharge_station,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) +"cHZ" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor{name = "Airbridge Router"},/turf/open/floor/plating,/area/router/air) +"cIa" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/aft) +"cIb" = (/obj/structure/table,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/storage/firstaid/radbgone,/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_x = 28},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) +"cIc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"cId" = (/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/aft) +"cIe" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/aft) +"cIf" = (/obj/structure/closet/crate/trashcart,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/aft) +"cIg" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/medical/genetics) +"cIh" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop) +"cIi" = (/obj/structure/window/reinforced/spawner,/obj/machinery/conveyor{dir = 4; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop) +"cIj" = (/obj/structure/chair,/obj/effect/landmark/start/geneticist,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/genetics) +"cIk" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"cIl" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"cIm" = (/obj/structure/chair,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/geneticist,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"cIn" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) +"cIo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Genetics Lab Maintenance"; req_access_txt = "9"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/medical/genetics) +"cIp" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/aft) +"cIq" = (/obj/structure/window/reinforced/spawner,/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor{dir = 1; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop) +"cIr" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28; pixel_y = -4},/obj/machinery/light_switch{pixel_x = -24; pixel_y = 10},/turf/open/floor/plasteel,/area/engine/workshop) +"cIs" = (/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/atmos) +"cIt" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft) +"cIu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"cIv" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIw" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIx" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/camera{c_tag = "Aft Hall"; network = list("ss13","rd")},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIy" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIz" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIA" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIB" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/kirbyplants/photosynthetic,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIC" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cID" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIE" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIF" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIG" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIH" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cII" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIJ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIK" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIL" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Engineering Sector"},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIQ" = (/obj/structure/disposalpipe/junction/yjunction{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIR" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIS" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIU" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=evac"; location = "eng1"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIV" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cIZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cJa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cJb" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cJc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cJd" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cJe" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cJf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"cJg" = (/obj/structure/disposalpipe/segment,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/warehouse) +"cJh" = (/obj/structure/table,/obj/structure/bedsheetbin/towel,/obj/machinery/camera{c_tag = "Aft Restrooms"; dir = 8; pixel_y = -22},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) +"cJi" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/quartermaster/office) +"cJj" = (/obj/machinery/computer/security/mining,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cJk" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/workshop) +"cJl" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Engine Room - Starboard Quarter"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"cJm" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/atmos) +"cJn" = (/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock"; req_access_txt = "24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"cJo" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/engine/atmos) +"cJp" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) +"cJq" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external/glass{name = "External Construction Access"; req_one_access_txt = "10;31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cJr" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 5},/turf/open/space/basic,/area/space/nearstation) +"cJs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/warehouse) +"cJt" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 8},/obj/machinery/power/apc{name = "AI Upload Foyer APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) +"cJu" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) +"cJv" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Engineering Router"; req_access_txt = "11"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"cJw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"cJx" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{dir = 1},/turf/open/space/basic,/area/space/nearstation) +"cJy" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/rnd/production/circuit_imprinter,/turf/open/floor/plasteel,/area/engine/workshop) +"cJz" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor{dir = 8; id = "DeliveryConveyor"},/turf/open/floor/plating,/area/quartermaster/warehouse) +"cJA" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"cJB" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) +"cJC" = (/obj/machinery/door/airlock/engineering{name = "Gravity Generator"; req_access_txt = "11"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"cJD" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"cJE" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/engine/gravity_generator) +"cJF" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/closed/wall/r_wall,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"cJG" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/cable{icon_state = "0-8"},/obj/structure/table,/obj/machinery/light/small,/obj/machinery/power/apc/highcap/five_k{areastring = "/area/engine/gravity_generator"; dir = 4; name = "Gravity Generator APC"; pixel_x = 26},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/engine/gravity_generator) +"cJH" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) +"cJI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/engine/gravity_generator) +"cJJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"cJK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"cJL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"cJM" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/landmark/start/atmospheric_technician,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"cJN" = (/obj/machinery/light/small,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"cJO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"}) +"cJP" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"cJQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"cJR" = (/obj/machinery/door/airlock/engineering{name = "Canister Storage"; req_one_access_txt = "10;24"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) +"cJS" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) +"cJT" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/corner,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) +"cJU" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) +"cJV" = (/obj/structure/plasticflaps,/obj/machinery/door/poddoor{id = "DeliveryDoor"; name = "Delivery Door"},/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor{dir = 8; id = "DeliveryConveyor"},/turf/open/floor/plating,/area/quartermaster/sorting) +"cJW" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"cJX" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"cJY" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"cJZ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) +"cKa" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) +"cKb" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) +"cKc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{name = "Canister Storage"; req_access_txt = "10"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) +"cKd" = (/obj/machinery/conveyor{dir = 8; id = "DeliveryConveyor"},/turf/open/floor/plating,/area/quartermaster/sorting) +"cKe" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/public/glass{name = "Airbridge Router"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/air) +"cKf" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/air) +"cKg" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/vending/engivend,/turf/open/floor/plasteel,/area/storage/primary) +"cKh" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"cKi" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/door/airlock/medical{name = "Apothecary"; req_access_txt = "5"},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central) +"cKj" = (/obj/structure/closet/secure_closet/CMO,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/paper/guides/cogstation/letter_cmo,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"cKk" = (/obj/structure/chair/office/light{dir = 1; pixel_y = 3},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/landmark/start/medical_doctor,/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"cKl" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) +"cKm" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/medical/medbay/central) +"cKn" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cKo" = (/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 9},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cKp" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/medical/medbay/central) +"cKq" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"cKr" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cKs" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cKt" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cKu" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cKv" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cKw" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/plating/airless,/area/science/xenobiology) +"cKx" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating/airless,/area/science/xenobiology) +"cKy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/science/xenobiology) +"cKz" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cKA" = (/obj/machinery/atmospherics/components/binary/valve,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cKB" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cKC" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/chief_medical_officer,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"cKD" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cKE" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) +"cKF" = (/obj/effect/turf_decal/delivery,/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/hallway/primary/central) +"cKG" = (/obj/effect/turf_decal/delivery,/obj/structure/closet/wardrobe/yellow,/turf/open/floor/plasteel,/area/hallway/primary/central) +"cKH" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cKI" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/science/mixing) +"cKJ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/mixing) +"cKK" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/mixing) +"cKL" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) +"cKM" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) +"cKN" = (/obj/structure/table/reinforced,/obj/item/assembly/signaler{pixel_x = -4},/obj/item/assembly/signaler,/obj/item/assembly/signaler{pixel_y = 8},/obj/item/assembly/signaler{pixel_x = 8; pixel_y = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/white,/area/science/mixing) +"cKO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/sign/departments/restroom{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cKP" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/sign/departments/custodian{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/aft) +"cKQ" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output,/turf/open/floor/engine/vacuum,/area/engine/atmos) +"cKR" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input,/turf/open/floor/engine/n2o,/area/engine/atmos) +"cKS" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output,/turf/open/floor/engine/n2o,/area/engine/atmos) +"cKT" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input,/turf/open/floor/engine/plasma,/area/engine/atmos) +"cKU" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output,/turf/open/floor/engine/plasma,/area/engine/atmos) +"cKV" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input,/turf/open/floor/engine/co2,/area/engine/atmos) +"cKW" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output,/turf/open/floor/engine/co2,/area/engine/atmos) +"cKX" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/closed/wall/r_wall,/area/engine/atmos) +"cKY" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/closed/wall/r_wall,/area/engine/atmos) +"cKZ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space/basic,/area/space/nearstation) +"cLa" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/space/basic,/area/space/nearstation) +"cLb" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plating,/area/engine/atmos) +"cLc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plating,/area/engine/atmos) +"cLd" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) +"cLe" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/engine/atmos) +"cLf" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/engine/atmos) +"cLg" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/violet/visible,/obj/structure/extinguisher_cabinet{pixel_y = 29},/turf/open/floor/plasteel,/area/engine/atmos) +"cLh" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"cLi" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/atmos) +"cLj" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 1},/area/engine/atmos) +"cLk" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "CO2 Outlet Pump"},/turf/open/floor/plasteel/dark/side{dir = 1},/area/engine/atmos) +"cLl" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"cLm" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/engine/atmos) +"cLn" = (/obj/effect/turf_decal/bot,/obj/machinery/light/small{dir = 8},/obj/structure/closet/secure_closet/engineering_personal,/obj/item/clothing/under/misc/overalls,/turf/open/floor/plasteel,/area/storage/primary) +"cLo" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/engine/atmos) +"cLp" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/atmos) +"cLq" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/engine/atmos) +"cLr" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/storage/primary) +"cLs" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"cLt" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{dir = 1},/turf/open/floor/engine/n2,/area/engine/atmos) +"cLu" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{dir = 1},/turf/open/floor/engine/n2,/area/engine/atmos) +"cLv" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{dir = 1},/turf/open/floor/engine/o2,/area/engine/atmos) +"cLw" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{dir = 1},/turf/open/floor/engine/o2,/area/engine/atmos) +"cLx" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{dir = 1},/turf/open/floor/engine/air,/area/engine/atmos) +"cLy" = (/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{dir = 1},/turf/open/floor/engine/air,/area/engine/atmos) +"cLz" = (/obj/effect/turf_decal/bot,/obj/structure/closet/secure_closet/engineering_personal,/obj/item/clothing/under/misc/overalls,/turf/open/floor/plasteel,/area/storage/primary) +"cLA" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/camera{c_tag = "Virology - Starboard"; dir = 8; pixel_y = -22},/obj/machinery/power/apc{areastring = "/area/medical/virology"; dir = 4; name = "Virology Lab APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) +"cLB" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/air) +"cLC" = (/obj/structure/bed,/obj/item/bedsheet/medical,/obj/machinery/camera{c_tag = "Virology - Port"; dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/virology) +"cLD" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/freezer,/area/medical/virology) +"cLE" = (/obj/structure/closet/crate/medical,/turf/open/floor/plasteel,/area/router/air) +"cLF" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"cLG" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"cLH" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) +"cLI" = (/obj/structure/chair/office/light,/obj/effect/landmark/start/virologist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) +"cLJ" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/wirecutters,/turf/open/floor/plasteel,/area/router/air) +"cLK" = (/obj/structure/window/reinforced/spawner/north,/obj/machinery/conveyor{id = "airbridge_off"},/turf/open/floor/plating,/area/router/air) +"cLL" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"cLM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/freezer,/area/medical/virology) +"cLN" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel/freezer,/area/medical/virology) +"cLO" = (/obj/structure/window/reinforced/spawner/north,/obj/machinery/conveyor{dir = 8; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air) +"cLP" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/storage/box/syringes,/obj/item/hand_labeler,/obj/item/radio/headset/headset_med,/obj/structure/sign/warning/biohazard{pixel_x = 32},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) +"cLQ" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/conveyor{dir = 8; id = "airbridge_off"},/obj/machinery/door/poddoor{name = "Airbridge Router"},/turf/open/floor/plating,/area/router/air) +"cLR" = (/obj/structure/window/reinforced/spawner/north,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/mass_driver{dir = 8; id = "workshop_in"; name = "Router Driver"},/turf/open/floor/plating,/area/engine/workshop) +"cLS" = (/obj/machinery/light,/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/freezer,/area/medical/virology) +"cLT" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/medical/virology) +"cLU" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1441; id = "inc_in"},/turf/open/floor/plating/airless,/area/medical/virology) +"cLV" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"cLW" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"cLX" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 6},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"cLY" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/incinerator_output{dir = 4},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) +"cLZ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"cMa" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/machinery/atmospherics/components/binary/pump/on{dir = 4},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) +"cMb" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/engine/atmos) +"cMc" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos) +"cMd" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "N2 to Airmix"},/turf/open/floor/plasteel,/area/engine/atmos) +"cMe" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"cMf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/tcommsat/computer) +"cMg" = (/obj/machinery/atmospherics/components/trinary/mixer/airmix{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"cMh" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) +"cMi" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/engine/atmos) +"cMj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{dir = 1},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) +"cMk" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/dark/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"cMl" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) +"cMm" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"cMn" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "N2 to Pure"},/turf/open/floor/plasteel,/area/engine/atmos) +"cMo" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"cMp" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"cMq" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"cMr" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"cMs" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"cMt" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{dir = 4},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) +"cMu" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/components/binary/pump/on{dir = 8},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) +"cMv" = (/obj/machinery/button/door/incinerator_vent_atmos_main{pixel_x = -24; pixel_y = 8},/obj/machinery/button/door/incinerator_vent_atmos_aux{pixel_x = -40; pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"cMw" = (/obj/machinery/atmospherics/components/binary/valve/digital{name = "Waste Release"},/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"cMx" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 5},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -30},/turf/open/floor/plasteel,/area/engine/atmos) +"cMy" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Nitrogen Outlet"},/turf/open/floor/plasteel,/area/engine/atmos) +"cMz" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/light,/obj/machinery/camera{c_tag = "Atmospherics - Starboard Aft"; dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"cMA" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/engine/atmos) +"cMB" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "O2 to Airmix"},/turf/open/floor/plasteel,/area/engine/atmos) +"cMC" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "O2 to Pure"},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"cMD" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/white/corner,/area/engine/atmos) +"cME" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/turf/open/floor/plasteel/white/corner,/area/engine/atmos) +"cMF" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Air to Pure"},/turf/open/floor/plasteel/white/corner,/area/engine/atmos) +"cMG" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) +"cMH" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/turf/closed/wall/r_wall,/area/engine/atmos) +"cMI" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/atmos) +"cMJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos) +"cMK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/tcommsat/computer) +"cML" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) +"cMM" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) +"cMN" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) +"cMO" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) +"cMP" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/floor/plating/airless,/area/engine/atmos) +"cMQ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/space/basic,/area/space/nearstation) +"cMR" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 9},/turf/open/space/basic,/area/space/nearstation) +"cMS" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/space/basic,/area/space/nearstation) +"cMT" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/engine/atmos) +"cMU" = (/obj/structure/window/reinforced/spawner/north,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 8; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop) +"cMV" = (/obj/machinery/conveyor{dir = 10; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop) +"cMW" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/machinery/vending/tool,/turf/open/floor/plasteel,/area/engine/workshop) +"cMX" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/item/multitool{pixel_x = 5; pixel_y = 3},/obj/item/multitool{pixel_x = 5; pixel_y = 3},/obj/item/multitool,/obj/item/multitool,/turf/open/floor/plasteel,/area/engine/workshop) +"cMY" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/table,/obj/machinery/camera{c_tag = "Engineering - Workshop"; dir = 1},/obj/item/clothing/gloves/color/yellow,/obj/item/t_scanner,/obj/item/t_scanner,/obj/item/t_scanner,/turf/open/floor/plasteel,/area/engine/workshop) +"cMZ" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/turf/open/floor/plasteel,/area/engine/workshop) +"cNa" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/chair,/obj/effect/landmark/start/station_engineer,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/workshop) +"cNb" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/chair,/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/workshop) +"cNc" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/table,/obj/item/storage/toolbox/electrical,/obj/item/stack/cable_coil/red,/obj/item/stack/cable_coil/red,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/engine/workshop) +"cNd" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/closet/crate/engineering,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/workshop) +"cNe" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/workshop) +"cNf" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/workshop) +"cNg" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/vending/assist,/turf/open/floor/plasteel,/area/engine/workshop) +"cNh" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/public/glass{name = "Airbridge Router"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/router/air) +"cNi" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/router/air) +"cNj" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/router/air) +"cNk" = (/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel,/area/router/air) +"cNl" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel,/area/router/air) +"cNm" = (/obj/machinery/conveyor{dir = 8; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air) +"cNn" = (/obj/machinery/conveyor{dir = 10; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air) +"cNo" = (/turf/closed/wall/rust,/area/engine/workshop) +"cNp" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{name = "Workshop Desk"; req_access_txt = "11"},/obj/item/paper_bin,/obj/item/pen,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/workshop) +"cNq" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/southright{name = "Workshop Desk"; req_access_txt = "11"},/obj/item/folder/yellow,/turf/open/floor/plasteel,/area/engine/workshop) +"cNr" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/engine/workshop) +"cNs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/closed/wall,/area/engine/workshop) +"cNt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/engine/workshop) +"cNu" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/door/airlock/engineering{name = "Engineering Workshop"; req_access_txt = "11"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/workshop) +"cNv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/closed/wall,/area/engine/workshop) +"cNw" = (/turf/closed/wall/r_wall,/area/router/air) +"cNx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/aft) +"cNy" = (/turf/closed/wall/r_wall,/area/quartermaster/miningdock/airless) +"cNz" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/miningdock/airless) +"cNA" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/office) +"cNB" = (/turf/open/floor/plating,/area/quartermaster/miningdock/airless) +"cNC" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) +"cND" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) +"cNE" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) +"cNF" = (/obj/item/shovel,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) +"cNG" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) +"cNH" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) +"cNI" = (/turf/open/floor/plating/airless,/area/router/aux) +"cNJ" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/machinery/camera{c_tag = "Medbay - Starboard"; network = list("ss13","rd")},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cNK" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/engine/teg_hot) +"cNL" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8},/turf/open/floor/plating{icon_state = "panelscorched"},/area/engine/teg_cold) +"cNM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/rack,/obj/item/circuitboard/machine,/obj/item/circuitboard/machine,/obj/item/circuitboard/machine,/obj/item/circuitboard/machine,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) +"cNN" = (/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) +"cNO" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) +"cNP" = (/obj/effect/decal/cleanable/dirt,/obj/structure/frame/computer{dir = 8},/turf/open/floor/plating,/area/quartermaster/miningdock/airless) +"cNQ" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"},/turf/closed/wall/r_wall,/area/router/aux) +"cNR" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) +"cNS" = (/obj/machinery/power/apc{name = "Mining Dock APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) +"cNT" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) +"cNU" = (/obj/structure/table,/obj/effect/decal/cleanable/dirt,/obj/item/stack/sheet/plasteel/fifty,/turf/open/floor/plating,/area/quartermaster/miningdock/airless) +"cNV" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cNW" = (/obj/structure/lattice/catwalk,/obj/machinery/camera{c_tag = "Supply - Mining Exterior"; dir = 4},/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav) +"cNX" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav) +"cNY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external/glass{name = "Refinery"; req_access_txt = "48"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) +"cNZ" = (/obj/machinery/door/airlock/external/glass{name = "Refinery"; req_access_txt = "48"},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) +"cOa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/starboard/aft) +"cOb" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav) +"cOc" = (/obj/structure/lattice/catwalk,/obj/machinery/camera{c_tag = "Supply - Refinery Exterior"; pixel_x = 22},/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav) +"cOd" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/medical/medbay/lobby) +"cOe" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/starboard/aft) +"cOf" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav) +"cOg" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav) +"cOh" = (/obj/structure/lattice,/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav) +"cOi" = (/obj/machinery/conveyor_switch{id = "MiningConveyer"},/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) +"cOj" = (/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) +"cOk" = (/obj/machinery/light/small{dir = 4},/obj/structure/closet/toolcloset,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) +"cOl" = (/turf/closed/wall/r_wall,/area/quartermaster/miningdock/airless/no_grav) +"cOm" = (/obj/machinery/conveyor{dir = 4; id = "MiningConveyer"},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav) +"cOn" = (/obj/effect/turf_decal/loading_area{dir = 4},/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) +"cOo" = (/obj/structure/table,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) +"cOp" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) +"cOq" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/science/xenobiology) +"cOr" = (/obj/machinery/light/small,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) +"cOs" = (/obj/structure/closet/crate,/obj/item/stack/sheet/glass/fifty,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) +"cOt" = (/obj/structure/closet/crate,/obj/item/stack/rods/fifty,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) +"cOu" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) +"cOv" = (/obj/item/storage/toolbox/emergency,/obj/structure/table,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) +"cOw" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/secondary/exit) +"cOx" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/router/medsci"; dir = 1; name = "MedSci Router APC"; pixel_y = 24},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/router/medsci) +"cOy" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/router/medsci) +"cOz" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/router/medsci) +"cOA" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/router/medsci) +"cOB" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/router/medsci) +"cOC" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/light_switch{pixel_x = 24},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/router/medsci) +"cOD" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/aft) +"cOE" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/router/medsci) +"cOF" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/router/medsci) +"cOG" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/router/medsci) +"cOH" = (/obj/machinery/computer/cargo/request{dir = 8},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/router/medsci) +"cOI" = (/turf/closed/wall/r_wall,/area/router/medsci) +"cOJ" = (/obj/machinery/conveyor{id = "medsci_off"},/turf/open/floor/plating,/area/router/medsci) +"cOK" = (/obj/structure/table/reinforced,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/destTagger,/obj/machinery/light,/obj/machinery/button/massdriver{id = "medsci_out"; pixel_x = -8; pixel_y = 8},/obj/machinery/requests_console{department = "MedSci Router"; name = "MedSci Router RC"; pixel_y = -32},/turf/open/floor/plating,/area/router/medsci) +"cOL" = (/obj/machinery/conveyor{dir = 1; id = "medsci_off"},/turf/open/floor/plating,/area/router/medsci) +"cOM" = (/turf/closed/wall/r_wall,/area/janitor/aux) +"cON" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Auxiliary Custodial Closet"; req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/janitor/aux) +"cOO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/janitor/aux) +"cOP" = (/obj/machinery/mass_driver{id = "medsci_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/medsci) +"cOQ" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/janitor/aux"; dir = 1; name = "Auxiliary Custodial Closet APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/janitor/aux) +"cOR" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/janitor/aux) +"cOS" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/item/storage/box/lights/mixed,/obj/item/light/tube,/obj/item/radio/off,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/janitor/aux) +"cOT" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor{name = "MedSci Router"},/turf/open/floor/plating,/area/router/medsci) +"cOU" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor{name = "MedSci Router"},/obj/machinery/conveyor{dir = 1; id = "medsci_off"},/turf/open/floor/plating,/area/router/medsci) +"cOV" = (/obj/structure/closet/crate,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/item/storage/box/mousetraps,/obj/item/reagent_containers/glass/bucket,/obj/item/mop,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/janitor/aux) +"cOW" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/janitor/aux) +"cOX" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/plasteel,/area/janitor/aux) +"cOY" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/janitor/aux) +"cOZ" = (/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Custodial Closet - Auxiliary"; dir = 1},/turf/open/floor/plasteel,/area/janitor/aux) +"cPa" = (/obj/structure/mopbucket,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/janitor/aux) +"cPb" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/janitor/aux) +"cPc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical/virology) +"cPd" = (/obj/machinery/conveyor{id = "sq_off"},/turf/open/floor/plating/airless,/area/router/aux) +"cPe" = (/obj/machinery/mass_driver{dir = 1; id = "sq_out"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) +"cPf" = (/obj/machinery/conveyor/auto,/turf/open/floor/plating/airless,/area/router/aux) +"cPg" = (/obj/machinery/mass_driver{dir = 1; id = "medsci_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) +"cPh" = (/obj/machinery/conveyor{dir = 1; id = "sq_off"},/turf/open/floor/plating/airless,/area/router/aux) +"cPi" = (/obj/machinery/conveyor{dir = 1; id = "viro_off"},/turf/open/floor/plating/airless,/area/router/aux) +"cPj" = (/obj/machinery/conveyor{dir = 9; id = "viro_off"},/turf/open/floor/plating/airless,/area/router/aux) +"cPk" = (/obj/machinery/conveyor{dir = 8; id = "viro_off"},/turf/open/floor/plating/airless,/area/router/aux) +"cPl" = (/obj/machinery/mass_driver{dir = 8; id = "viro_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) +"cPm" = (/obj/machinery/conveyor{dir = 8; id = "sq_off"},/turf/open/floor/plating/airless,/area/router/aux) +"cPn" = (/obj/machinery/conveyor{dir = 10; id = "sq_off"},/turf/open/floor/plating/airless,/area/router/aux) +"cPo" = (/obj/machinery/conveyor{dir = 4; id = "viro_off"},/turf/open/floor/plating/airless,/area/router/aux) +"cPp" = (/obj/machinery/mass_driver{dir = 4; id = "viro_out"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) +"cPq" = (/obj/machinery/conveyor{dir = 4; id = "sq_off"},/turf/open/floor/plating/airless,/area/router/aux) +"cPr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hydroponics/lobby) +"cPs" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/bridge) +"cPt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) +"cPu" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/break_room) +"cPv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/circuit,/area/science/robotics/mechbay) +"cPw" = (/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) +"cPx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cPy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/sign/poster/contraband/lusty_xenomorph{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/aft) +"cPz" = (/obj/structure/lattice,/obj/structure/transit_tube/curved{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation) +"cPA" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation) +"cPB" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/structure/transit_tube/crossing/horizontal,/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation) +"cPC" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/transit_tube/horizontal,/turf/open/floor/plasteel,/area/engine/atmos) +"cPD" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/atmos) +"cPE" = (/obj/structure/disposalpipe/segment,/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/space/basic,/area/space/nearstation) +"cPF" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/space/basic,/area/space/nearstation) +"cPG" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/turretid{control_area = "/area/science/server"; icon_state = "control_stun"; name = "Computer Core turret control"; pixel_x = -3; pixel_y = -23; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) +"cPH" = (/obj/machinery/conveyor_switch{id = "EngiCargoConveyer"},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/quartermaster/sorting"; dir = 8; name = "Delivery Office APC"; pixel_x = -26},/turf/open/floor/plasteel,/area/quartermaster/sorting) +"cPI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engineering Foyer"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) +"cPJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engineering Foyer"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) +"cPK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{name = "Engineering Access"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) +"cPL" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{name = "Engineering Access"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) +"cPM" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/table,/obj/machinery/recharger,/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_x = 32},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/checkpoint/supply) +"cPN" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"cPO" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard/aft) +"cPP" = (/obj/effect/landmark/start/paramedic,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/central) +"cPQ" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/medical/genetics"; dir = 8; name = "Genetics Lab APC"; pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/aft) +"cPR" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) +"cPS" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "CMO's Office"; req_access_txt = "40"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) +"cPT" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) +"cPU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology) +"cPV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"cPW" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology) +"cPX" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/science/xenobiology) +"cPY" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/firedoor,/obj/effect/turf_decal/caution/stand_clear{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/xenobiology) +"cPZ" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/firedoor,/obj/effect/turf_decal/caution/stand_clear{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/xenobiology) +"cQa" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/science/xenobiology) +"cQb" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cQc" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cQd" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cQe" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/window/reinforced/spawner,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/button/door{id = "xenobio2"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) +"cQf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/science/xenobiology) +"cQg" = (/obj/machinery/door/window/westright{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) +"cQh" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cQi" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cQj" = (/obj/machinery/door/window/eastleft{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) +"cQk" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/science/xenobiology) +"cQl" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/window/reinforced/spawner/north,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/button/door{id = "xenobio1"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) +"cQm" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cQn" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cQo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/turf/open/floor/plating,/area/science/xenobiology) +"cQp" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cQq" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cQr" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/window/reinforced/spawner,/obj/machinery/button/door{id = "xenobio4"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/science/xenobiology) +"cQs" = (/obj/machinery/door/window/westright{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) +"cQt" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cQu" = (/obj/machinery/door/window/eastleft{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio4"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) +"cQv" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/window/reinforced/spawner/north,/obj/machinery/button/door{id = "xenobio3"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) +"cQw" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cQx" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/window/reinforced/spawner,/obj/machinery/button/door{id = "xenobio6"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/science/xenobiology) +"cQy" = (/obj/machinery/door/window/westright{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio5"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) +"cQz" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cQA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cQB" = (/obj/machinery/door/window/eastleft{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) +"cQC" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/window/reinforced/spawner/north,/obj/machinery/button/door{id = "xenobio5"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) +"cQD" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cQE" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cQF" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cQG" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) +"cQH" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/button/door{id = "xenobio7"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/xenobiology) +"cQI" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/science,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/xenobiology) +"cQJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/xenobiology) +"cQK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/xenobiology) +"cQL" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/science/xenobiology) +"cQM" = (/obj/machinery/door/window/southright{name = "Secure Xenobiological Containment"; req_one_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio7"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) +"cQN" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/xenobiology) +"cQO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/xenobiology) +"cQP" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/science/xenobiology) +"cQQ" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge) +"cQR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/bridge) +"cQS" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) +"cQT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) +"cQU" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) +"cQV" = (/obj/item/kirbyplants{icon_state = "plant-02"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/bridge) +"cQW" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/machinery/camera{c_tag = "Bridge - Port Quarter"; dir = 1},/obj/machinery/keycard_auth{pixel_y = -24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge) +"cQX" = (/obj/machinery/photocopier,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge) +"cQY" = (/obj/structure/reagent_dispensers/water_cooler,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge) +"cQZ" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/bridge) +"cRa" = (/obj/effect/turf_decal/stripes/end{dir = 4},/obj/machinery/conveyor{dir = 4; id = "MiningConveyer"},/obj/machinery/door/poddoor{id = "MiningConveyorBlastDoor"; name = "Asteroid Mining Load Door"},/turf/open/floor/plating/airless,/area/quartermaster/miningoffice) +"cRb" = (/obj/machinery/computer/cloning,/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/item/paper/guides/jobs/medical/cloning{pixel_x = -4},/turf/open/floor/plasteel,/area/medical/medbay/central) +"cRc" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/door/airlock/research{name = "Aft Observatory"; req_access_txt = "47"},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cRd" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/door/airlock/research{name = "Aft Observatory"; req_access_txt = "47"},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) +"cRe" = (/obj/machinery/computer/upload/ai{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) +"cRf" = (/obj/structure/window/reinforced/spawner/north,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/flasher{id = "ID"; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) +"cRg" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light,/turf/open/floor/plasteel/white/corner,/area/engine/atmos) +"cRh" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer) +"cRi" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark/side,/area/science/robotics/lab) +"cRj" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/dark/side{dir = 6},/area/science/robotics/lab) +"cRk" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000; pixel_y = 3; pixel_x = 4},/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000; pixel_x = -6; pixel_y = 6},/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/button/door{id = "robotics3"; name = "Shutters Control Button"; pixel_x = 24; pixel_y = -24; req_access_txt = "29"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab) +"cRl" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"cRm" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/light,/obj/effect/turf_decal/stripes/red/full,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/sign/poster/official/cleanliness{pixel_y = -32},/obj/machinery/disposal/bin{name = "Corpse Disposal Unit"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"cRn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"cRo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"cRp" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel/dark,/area/science/robotics/lab) +"cRq" = (/obj/machinery/rnd/production/circuit_imprinter/department/science,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab) +"cRr" = (/obj/machinery/droneDispenser,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/effect/turf_decal/stripes/line{dir = 5; layer = 2.03},/turf/open/floor/plasteel,/area/science/robotics/lab) +"cRs" = (/obj/machinery/recharge_station,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer) +"cRt" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/warehouse) +"cRu" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/mixing) +"cRv" = (/mob/living/simple_animal/opossum{desc = "Wubba lubba dub dub."; name = "Rick"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) +"cRw" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/item/paper/guides/cogstation/letter_med{pixel_y = 4},/obj/item/storage/backpack/duffelbag/med/surgery,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) +"cVq" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/atmos) +"cVO" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"dpO" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"dVR" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) +"dYm" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/science/storage) +"eCy" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/open/floor/plasteel,/area/engine/atmos) +"eIh" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "N2O Outlet Pump"},/turf/open/floor/plasteel/white/corner{dir = 1},/area/engine/atmos) +"eKM" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -30},/obj/machinery/atmospherics/pipe/manifold/supplymain/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"eTZ" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"eUF" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/space/basic,/area/space/nearstation) +"fgS" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Plasma Outlet Pump"},/turf/open/floor/plasteel,/area/engine/atmos) +"fkx" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"fti" = (/obj/machinery/atmospherics/components/binary/pump,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"fui" = (/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/turf/open/space/basic,/area/space) +"fuE" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 10},/turf/open/space/basic,/area/space/nearstation) +"fuR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 30},/turf/open/floor/plasteel,/area/science/mixing) +"fIw" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) +"guK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space) +"gDY" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Fuel Pipe to Incinerator"},/obj/machinery/light,/obj/machinery/atmospherics/components/binary/pump/on{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"gGG" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 8},/turf/open/space/basic,/area/space/nearstation) +"gVV" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/engine,/area/science/storage) +"hcR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/closed/wall/r_wall,/area/bridge) +"hiV" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) +"hlo" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) +"hlV" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation) +"hDz" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"hFa" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/science/storage) +"hKC" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) +"hMZ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Pure to Port"},/turf/open/floor/plasteel,/area/engine/atmos) +"hXk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) +"ifC" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/orange/visible,/turf/open/space/basic,/area/space/nearstation) +"iAW" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"iQY" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/engine/atmos) +"jiZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/atmos) +"jml" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; layer = 2.4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/atmos) +"jon" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"jyu" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation) +"jMO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"jXo" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/closed/wall/r_wall,/area/engine/atmos) +"kxw" = (/obj/machinery/atmospherics/pipe/simple/violet/visible,/turf/open/space/basic,/area/space) +"kzb" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/closed/wall/r_wall,/area/bridge) +"kOG" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Mix to Engine"},/turf/open/floor/plasteel,/area/engine/atmos) +"lcD" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Air to Port"},/turf/open/floor/plasteel,/area/engine/atmos) +"lRy" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"mkx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"mqB" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"mxW" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 9},/turf/open/space/basic,/area/space/nearstation) +"mBP" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel,/area/science/mixing) +"mEa" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) +"mIm" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{light_color = "#cee5d2"},/turf/open/floor/engine,/area/science/storage) +"mIT" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/turf/open/space/basic,/area/space/nearstation) +"mKP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) +"mNN" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"ntC" = (/obj/machinery/atmospherics/components/binary/pump{name = "Port to Fuel Pipe"},/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"nvn" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) +"nAF" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Mix to Port"},/turf/open/floor/plasteel,/area/engine/atmos) +"nBM" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) +"nEX" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 9},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) +"nLV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) +"ony" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) +"opd" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation) +"oMB" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/engine/atmos) +"pgu" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/space/basic,/area/space/nearstation) +"prx" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"qeq" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/space/basic,/area/space/nearstation) +"qgO" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel,/area/engine/atmos) +"qlJ" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/turf/open/space/basic,/area/space/nearstation) +"qvB" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"qHL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plating,/area/engine/atmos) +"qWY" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Waste In"},/turf/open/floor/plasteel,/area/engine/atmos) +"rdF" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) +"rTW" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 6},/turf/open/space/basic,/area/space/nearstation) +"rUl" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) +"sdp" = (/obj/structure/reagent_dispensers/foamtank,/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"sHB" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"sRD" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) +"sVC" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/turf/open/space/basic,/area/space/nearstation) +"tjb" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/meter,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) +"tpQ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible,/turf/open/space/basic,/area/space/nearstation) +"tuF" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/closed/wall/r_wall,/area/engine/atmos) +"tyI" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos) +"tXV" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; layer = 2.4},/turf/open/floor/plasteel,/area/engine/atmos) +"tZj" = (/obj/structure/tank_dispenser{pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) +"tZC" = (/obj/machinery/atmospherics/pipe/manifold4w/orange/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) +"urj" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 8; icon_state = "intact"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) +"uwK" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) +"uAY" = (/obj/structure/table,/obj/item/storage/belt/utility,/obj/item/t_scanner,/turf/open/floor/plasteel,/area/engine/atmos) +"uVD" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 10},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) +"vcb" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) +"vsO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/engine/atmos) +"vxU" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel,/area/engine/atmos) +"wbu" = (/obj/machinery/atmospherics/pipe/simple/violet/visible,/turf/closed/wall/r_wall,/area/engine/atmos) +"wPS" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 9},/turf/open/space/basic,/area/space/nearstation) +"wWH" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/open/floor/plasteel,/area/engine/atmos) +"xcO" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Mix Outlet Pump"},/turf/open/floor/plasteel,/area/engine/atmos) +"xjk" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"xkC" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos) +"xoj" = (/obj/structure/table,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/turf/open/floor/plasteel,/area/engine/atmos) +"xxP" = (/turf/closed/wall,/area/quartermaster/storage) +"xCy" = (/obj/machinery/atmospherics/components/binary/pump,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) +"xKr" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/atmos) (1,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(2,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(3,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(4,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(5,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(6,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(7,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(8,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(9,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(10,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(11,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(12,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(13,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(14,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(15,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(16,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(17,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(18,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(19,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(20,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(21,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(22,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(23,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaf -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(24,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bnj -aaw -bHZ -aaw -bnj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(25,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaw -acp -bJM -acp -aaw -aaw -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(26,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaf -aaf -acp -bef -crG -crK -acp -aaf -aaf -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(27,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaw -bgD -acp -beh -bKH -crL -acp -bLB -aaw -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(28,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaf -aaf -acp -bFr -crH -crM -acp -aaf -aaf -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(29,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaw -aaw -acp -acp -acp -aaw -aaw -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(30,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bnj -aaw -crG -aaw -bnj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(31,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaw -crH -aaw -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(32,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(33,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(34,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -bbv -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(35,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(36,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(37,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -cpC -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(38,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -bbv -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(39,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -bbv -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(40,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(41,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(42,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(43,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaU -aaa -aaa -aaa -crB -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -bbv -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(44,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aye -aEf -akI -akI -akI -akI -akI -akI -akI -akI -akI -akI -akI -akI -byi -byi -byi -byi -byi -byi -byi -byi -byi -byi -byi -byi -crE -aye -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(45,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aye -aaU -akI -adp -ajt -chi -arW -aHo -buV -bxu -akI -bxB -bxQ -bxZ -byb -byi -byn -byp -byB -byG -byL -byB -clI -byn -clP -byi -aaa -aye -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(46,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aye -aaa -akI -adZ -chh -cMf -axF -aIM -mKP -crz -cMf -bxE -bxW -bya -byb -byk -byn -byq -byn -byH -clD -byn -clJ -byn -clQ -byi -aaU -aye -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(47,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aye -aaa -akI -ajZ -anx -akJ -aAI -aMx -cnn -bxx -bxD -bxI -bxJ -byb -byb -byb -byn -byx -byn -byn -byn -byn -clK -byn -clR -byi -aaa -aye -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -bbv -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(48,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aye -aaa -akI -ahh -aCf -akI -aAJ -cMp -aYa -bxm -akI -aNC -bxv -byf -byj -byl -byn -byn -byn -byI -clE -byn -byn -byn -crD -byi -aaa -aye -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -bbv -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(49,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aye -aaU -akI -ajn -aLH -akI -aAK -aRC -bxn -akI -bxA -hiV -cvI -byb -byb -byb -byn -byy -byn -byn -byn -byn -clL -byn -clS -byi -aaa -aye -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(50,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aye -cep -akI -akI -akI -akI -aGa -cMK -bxo -akI -akI -bbk -bxX -byg -byb -bym -byn -byz -byn -byJ -clF -byn -clM -byn -clT -byi -aaU -aye -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -bbv -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(51,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aEa -aXm -aXs -bxC -akI -bxK -bxY -byh -byb -byi -byn -byA -byC -byK -clG -byC -clN -byn -clU -byi -aaa -aye -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(52,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aEa -cMK -bxt -akI -akI -akI -akI -akI -byi -byi -byi -byi -byi -byi -byi -byi -byi -byi -byi -byi -crF -aye -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(53,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aEa -aHE -bab -aaa -aaa -aaU -aaa -aaa -aaa -crC -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -bbv -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(54,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aEb -aPT -aaU -aaU -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aye -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(55,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aEa -aPT -aaU -aaa -aaa -aaU -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -bbv -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(56,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -agL -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aEa -aPT -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(57,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aee -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aEa -aPT -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(58,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -abh -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aEa -aPT -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cpC -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(59,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaK -aaL -abi -aaa -aaa -aaK -aaL -abi -aaa -aaa -aaK -aaL -abi -aaa -aaa -aaU -aEa -aPT -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(60,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaU -aEa -aPT -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -cpC -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(61,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaU -aEa -aPT -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(62,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaU -aEb -aPT -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(63,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaU -aEa -aPT -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -bbv -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -cpC -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(64,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaU -aEa -aPT -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -bbv -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -bxT -bxT -bFl -bxT -bFl -bxT -bxT -bxT -bxT -bxT -bxT -bxT -bxT -bxT -bxT -bxT -bxT -bxT -bxT -bAb -cKw -cli -bxT -bxT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(65,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -cpC -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaU -aEa -aPT -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bxT -bFj -bHS -bSj -bJr -bFj -bxT -bKE -caV -bKM -bxT -bKE -clf -bKM -bxT -bKE -ctL -bKM -bxT -ctQ -cKx -clj -clk -clj -clm -cln -cln -cln -clp -clq -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(66,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaU -aEa -aPT -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -cpC -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bxT -bFk -bHS -bIE -bJr -bFk -bxT -bKF -bLd -bKM -bxT -bKF -bLd -bKM -bxT -bKF -bKM -bKM -bxT -bxT -cKy -bxT -bxT -bxT -bxT -bxT -bxT -bxT -bxT -clr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(67,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaU -aEa -aPT -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -bbv -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bxT -bFl -bFl -bZz -bFl -bFl -bxT -bKF -bKM -bKM -bxT -bKF -bKM -bKM -bxT -bKF -bKM -bKM -bxT -bOs -cKz -bOG -bOP -bxT -bOW -bOZ -bPc -bPe -bxT -cls -aaU -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(68,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaK -aaM -abi -aaa -aaa -aaU -aEa -aPT -aaU -aaU -aaa -aaU -aPV -bik -bik -bik -bik -bik -bik -cQT -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -bbv -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bxT -bFm -bHT -bFt -bJs -bJV -bxT -cQa -cQg -cQk -bxT -cQa -cQs -cQk -bxT -cQa -cQy -cQk -bxT -cvz -cKA -bOH -cQJ -bxT -bKM -bKM -bKM -bKM -bxT -cls -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(69,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aee -aaU -aaU -aaU -aaU -aee -aaU -aaU -aaU -aaU -aee -aaU -aaU -aaU -aaU -aEa -aPT -aaU -aaU -aPV -bik -cQS -aIA -aJe -aLE -aLy -aMQ -aNF -cQU -bik -cQT -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bxT -cnb -bHU -bOF -bJt -bJW -bxT -cbo -bLf -cQl -bxT -cbo -bLf -cQv -bxT -cbo -bLf -cQC -bxT -ctT -cKB -bOI -cQK -bOT -bKM -bKM -bKM -bPf -bxT -cls -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(70,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -abh -abh -abh -abh -abh -abh -aiq -aaL -ajc -abh -abh -abh -abh -abh -abh -aEb -aPT -aaU -aaU -aPW -aHD -aIg -aHF -aJn -aHF -aHF -aJn -aHF -aPp -cQV -cQS -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaU -aaU -aaU -aaU -aaa -aaa -aaU -aaU -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaU -aaa -aaa -bxT -bFo -bHV -bYz -cPU -cPW -cPY -cQb -cQh -cQm -cQh -cQh -cQh -cQh -cQw -cQh -cQz -cQD -cjP -ctR -cQF -cQH -cQL -bKM -bKM -bKM -bKM -bPg -bxT -cls -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(71,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -abx -aoH -abx -aaU -aaU -aaU -aaU -aaU -aaU -aEa -aPT -aaU -aPU -aTH -bRD -aHF -aHF -aIE -aIE -aIE -aIE -csD -aHF -cQW -aGq -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aWj -aaU -aaa -bcy -cnU -cnU -cnU -bZW -aaa -aaU -aaU -cbb -cbb -cbb -cbb -cbb -cbb -aaa -aaa -aaa -aaU -aaa -aaa -bxT -cdD -bHW -bIG -cPV -cPX -cPZ -cQc -cQi -cQn -cQi -cQp -cQt -cQi -cQi -cQp -cQA -cQE -cbF -cnl -cla -bOK -cQM -bKM -bKM -bPa -bKM -cun -bxT -cls -aaU -aaU -aaU -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(72,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aju -aoP -aqM -aaU -aaU -aaa -aaa -aaa -aGq -aDn -aLK -aGq -aGq -aKH -cQQ -aHF -aIE -aJu -aKA -bhB -aMX -aIE -aHF -cQX -aQW -bkC -bkC -aQW -bkC -aQW -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -bcw -aUZ -bcw -aaa -bcy -bdc -byc -bdc -bcy -aaU -aaU -aaa -cbb -cbg -chT -cpD -cGH -cbb -aaa -aaa -aaa -aaU -aaa -bAb -bxT -bFq -bHY -bIH -cGA -bJX -bKq -cQd -bLi -bLi -bLF -cQq -bMi -bLi -bLi -cQq -bLi -bLi -cvV -ckS -cQG -cQI -cQN -bKM -bKM -bKM -bKM -bPi -bxT -cls -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(73,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -abx -aqw -aoW -aqw -aqw -aaU -aaa -aaa -aaa -aGq -aEe -aUz -bDP -aGq -aGL -cQQ -aHF -aIH -aJz -aKE -aLI -aMX -aIE -aHF -cQY -aQW -bmj -bBt -cDB -bLh -aQW -aQW -bkC -bVN -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -bcw -bde -bcw -bYg -bcy -bfp -cwY -bOD -bcy -aaU -aaU -aaa -cbb -hFa -csR -csR -csR -cbb -aaU -aaU -aaU -aaU -aaU -bAf -bxT -crN -crO -bII -cGB -bFw -bxT -cQe -bLj -ckN -bxT -cQr -bLj -ckN -bxT -cQx -bLj -ckN -bxT -bOy -cla -bOM -cQO -bOU -bKM -bKM -bKM -bPj -bxT -cls -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(74,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -abx -akg -apS -arr -abx -aaU -aaa -aaa -aaa -aGq -aXj -aZq -bDQ -hcR -aGM -cQQ -aHF -aII -abO -aKG -aRe -aXS -bbb -aHF -cQQ -aQW -baP -bCd -cjQ -bLk -aVP -cpt -bOR -bXI -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcw -bee -bcw -crI -bcy -bfo -blG -bfo -bcy -aaa -aaU -aaU -cbb -csR -csR -cGJ -dYm -cbb -cGZ -cGZ -cbb -bxT -bxT -bAg -bBJ -bFs -bIa -bIJ -cGC -bXO -bxT -cQf -cQj -cQo -bxT -cQf -cQu -cQo -bxT -cQf -cQB -cQo -bxT -ctU -ckX -bON -cQP -bxT -bKM -bKM -bKM -bKM -bxT -cls -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(75,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aiN -akj -anV -asl -abx -aaU -aaU -aaU -aaU -aGq -aFE -bdz -bDR -aKF -aLm -cQR -aMi -aQh -aQN -aRa -aRl -aXT -bbc -bbD -cQZ -cDt -cDw -bEq -cps -bMh -bRb -bOQ -bOS -cbi -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcy -bdf -mBP -crJ -blT -bqJ -bBN -bKI -bOr -aaa -aaU -aaa -cbb -cbn -csR -gVV -cGK -cbb -cbb -cbb -cbb -bJZ -cby -bMx -bxT -bFt -bIb -csY -cGD -bZD -bxT -bKM -bKM -bKF -bxT -bKM -bKM -bKF -bxT -bKM -bKM -bKF -bxT -bOA -clb -bOG -bOP -bxT -bOX -bPb -bPd -bPk -bxT -cls -aaU -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(76,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aiN -akz -aDO -asH -awm -axc -awm -ayJ -aqw -aGq -aJL -aUR -bEc -kzb -aGW -aHI -aIL -aKv -aGn -aKK -aLQ -aGn -bbd -bbG -bit -cDu -cDx -bFy -cDC -bOJ -aVR -bBj -bRc -bXI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcy -bdt -ctj -bUF -bOv -bfo -blI -bfo -bWS -bcw -bcw -bcw -bcy -cbu -csR -cGF -cGL -cGP -cGV -cHa -cbb -bxV -cOq -cGv -cGw -cGy -cGy -cGy -cGE -bKb -bxT -bKM -bKM -bKF -bxT -bKM -bLd -bKF -bxT -bKM -cnD -bKF -bxT -cue -cvX -bxT -bxT -bxT -bxT -bxT -bxT -bxT -bxT -clr -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(77,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aiN -akB -aDT -atv -awo -atv -axp -atv -azy -aGq -aJM -urj -cbX -aGq -aGX -aHM -aHM -aIP -aJB -aHM -aHM -aNg -aSW -aHM -biF -aQW -buM -bAX -bEN -bOL -aQW -aQW -buO -cbp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcy -bec -bek -blH -bnm -bwN -bJY -bLE -bOE -bJY -cKI -cbP -bcy -cbC -cnO -csR -csR -cGQ -cGW -mIm -cbb -bKa -cGq -bMy -bxT -bzy -bzy -bIK -bJx -bKc -bxT -cta -caZ -bLy -bxT -bKM -cmQ -bLy -bxT -bKM -ctM -bLy -bxT -ctS -cud -clj -cll -clj -clm -clo -clo -clo -clp -clt -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(78,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -bfq -aaa -aaa -aaU -aiN -alu -aDT -aGy -awu -auL -awu -auL -aAc -aGq -aJX -bdE -cen -aGq -cvK -aHM -cnp -aIQ -aJG -aKL -bPt -aNi -aSW -aHM -bju -aQW -buO -buO -aQW -buO -aQW -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bcy -bed -boJ -fuR -bzX -bAl -boL -bAG -cnT -boQ -cKJ -bAP -bcy -chR -cnV -cGG -cGM -cGP -cGV -cGV -cbb -bxT -cGr -bxT -bxT -bFl -bFl -bFl -bFl -bxT -bxT -bxT -bxT -bxT -bxT -bxT -bxT -bxT -bxT -bxT -bxT -bxT -bxT -cvG -cvY -bxT -bxT -bxT -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(79,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -agW -ahf -ain -aaa -ain -alt -agW -aaa -aqw -abx -aCd -aDV -aEp -aEs -aIo -aEs -aNZ -atv -aGq -aGq -bdJ -ceo -aGq -aKY -aHM -aHM -aHM -aHM -aHM -aHM -aHM -aSW -aHM -bjJ -aGq -aaU -aaa -aaU -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -bcy -bcy -bcy -bcy -bcy -bgC -bdf -boR -bDL -boQ -cKJ -bAP -bcy -bWl -bZW -bcy -cbb -cbb -cbb -cbb -cbb -bRh -bTO -bVv -bTR -aaU -aaU -aaU -aaU -cav -cav -cav -cav -cav -cav -cav -aaU -aaU -aaa -aaa -aaa -aaU -cbB -ctY -cvA -cbB -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(80,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -agW -ahk -ain -aaU -ain -ahk -agW -aaU -abx -aiO -amq -avW -awd -awK -axf -awK -aOK -aAi -ceC -aAR -aEm -aGz -aGs -aOp -aOZ -aPu -aOZ -aOZ -aOZ -aSa -aSa -bbe -bnG -bkA -aGq -aaU -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -bQe -aaU -aaU -aaU -bcw -bdf -bdf -bpM -bFp -bvj -cKK -bAU -bRi -bSl -bRi -bcy -aEF -bko -bko -bko -bTr -aVF -cGt -aVF -bTR -cav -cav -cav -cav -cav -cav -cbe -cbl -cbq -cav -cav -cav -aaU -aaa -aaa -aaa -aaU -cbB -cKr -cub -cbB -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(81,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -agW -ahl -ain -ain -ain -alv -agW -agW -agW -aiP -anV -auL -awr -awM -asL -axu -aOL -asL -asL -asL -aFj -aFj -aFj -bmc -aHP -aHP -aIT -aJK -aKP -aSi -aYh -csr -aNR -blf -aNR -buR -bKp -bKJ -aaa -bdg -bdg -bdg -bdg -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -bdg -bdg -bdg -bdg -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aye -aaU -aaU -aaU -bcw -cnL -bdf -bpR -bJw -bLc -cKL -bAV -bRj -bZf -bZY -bcy -aSj -bko -csT -bko -bTs -aVF -cGs -aVF -cav -cav -cHj -cqS -cav -cav -ccL -caX -caX -caX -ctb -cav -cav -cav -aaa -aaa -aaa -aaU -cbB -cKr -cuf -cbB -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(82,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -agW -aho -ais -akl -akO -aho -alW -amX -agW -aiO -aob -bUA -awk -ajU -asL -axv -aOW -aAn -aAS -aCc -aFj -aFX -aGt -bnW -cjW -aFj -aFj -aGq -bdQ -aSB -aGq -aNR -aNR -bly -bjF -byd -aUB -bKK -aaa -bdg -beN -bgx -bdg -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -bdg -bEC -bgx -bdg -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -chC -abp -abp -abp -bcy -biK -bdf -bpR -bJT -bLl -cKM -bQX -bvy -bZg -caa -bcy -aTE -aTE -aTE -aTE -bTG -aVF -cGs -aVF -caw -caA -cHk -caP -caT -caX -caX -caX -cbh -caX -caX -cbx -cav -cav -aaa -aaa -aaa -aaU -cbB -cKr -cub -cbB -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -cpC -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(83,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ahg -ahg -ahg -ahg -ahg -ahp -aiE -akq -akT -aAd -atq -atH -anU -anU -asL -asL -azi -asL -anU -axz -aPj -ayM -cCP -aCg -aFm -aGK -cCW -brG -aGu -aMh -aFm -aOr -aKS -aSW -cDs -aNR -biq -blA -bqh -buG -bIW -bKK -aaa -bdg -beR -beJ -bdg -bdg -bdg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdg -bdg -bdg -beJ -beR -bdg -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -brs -brs -brs -brs -bcw -biT -bdf -bpR -bwD -bLx -cKN -bWt -bvy -bZj -cac -bcy -aTX -aVF -aVF -aVF -aVF -aVF -cHg -bTP -caw -caB -cHl -caP -caT -caY -caX -caX -caX -caX -caX -ctI -cav -cav -aaa -aaa -aaa -aaU -cbB -cKr -cub -cbB -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(84,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ahg -akp -alw -afH -ahg -ahq -aiG -akr -alj -ari -amg -amX -anU -aCr -aKd -aLJ -azj -aph -asL -axA -aPk -aMp -aOn -aCi -aFj -aGb -cCX -bGn -aHW -baK -aFj -aSs -bWe -cPs -bdS -aNR -aPt -aYR -csE -bvJ -aUF -bKK -aaa -bdg -beJ -beJ -aXk -bjg -aXl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -baZ -bjg -bhS -beJ -beJ -bdg -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -cnI -cnJ -bgW -bgW -bgW -bgW -bnk -bqI -bHF -bDM -bOu -bWu -bRk -bZB -cad -bcy -aVF -cGR -cGX -cHb -cHc -cHe -cHh -bTQ -caw -caC -cHk -caP -caT -coG -caX -cHx -cHD -cHJ -caX -cbz -cav -cav -aaa -aaa -aaa -aaU -cbB -cKs -cug -cbB -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(85,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aaU -ahg -aks -akY -alF -ahg -aps -agW -agW -agW -asF -ain -ain -anU -aEw -asX -aNj -aNJ -aph -asL -axB -aPn -aAv -aOO -aCl -aFj -aZT -aGv -bLp -bEV -aIr -aFj -aOs -aIP -aTf -aYy -bbf -bsf -bnI -aRo -bAn -bKG -bLe -aaa -bdg -beJ -beJ -bdg -bdg -bdg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdg -bdg -bdg -beJ -beJ -bdg -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -bgW -bin -bjs -bgW -bgW -bmb -bgW -bgW -bOv -bWS -bcy -cvH -bcy -bcy -bSJ -cGS -cGY -buC -cHd -cHf -cHi -buC -cax -bWd -cHm -cbv -caU -cba -cnC -cHy -cHE -cbt -cpe -cav -cav -cav -aaa -aaa -aaU -cbB -cbE -cKt -cuh -cbE -cbB -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(86,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anU -anU -acc -anU -ahg -akt -atI -amm -ame -akL -akD -amh -aBA -arq -awJ -awJ -anU -aHb -asY -aNG -aNV -aBb -anU -abS -aPv -abS -aPD -abS -aFj -aFj -aLa -cjR -aFj -aFj -aFj -aGn -bfA -aTu -aGn -aNR -aNR -aNR -aRw -bCe -aNR -aNR -aaa -bdg -beJ -beJ -bdg -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -bdg -coQ -beJ -bdg -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -bgW -cfg -bjt -bep -bVe -bVp -csf -bgW -jyu -bXg -bXS -bYb -cae -bcy -bfr -cGT -bJz -bTo -cag -cbc -caI -bTo -cax -caE -cHn -csk -cav -cav -cav -cHz -cHF -caX -cav -cav -cav -aaU -aaU -aaU -cbB -cbB -cnj -cKu -cui -clh -cbB -cbB -aaU -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(87,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anU -aaN -aaS -auE -ahy -aku -aly -aoq -aoR -aoV -aoY -apu -aeD -arT -aaS -aNM -anU -aHN -atj -ayf -azn -aBe -bzx -axC -aPY -aAz -aOh -aCG -bpX -aGo -aAz -cjS -anU -aMY -aNK -aNL -aPo -aTD -aNL -aNK -aVj -aNR -bao -bDk -aNR -aaU -aaa -bdg -beJ -bbI -bdg -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -bdg -cmd -beJ -bdg -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -bgX -bAw -biA -biA -biA -bmd -csI -bgW -bOw -bcy -bRm -bYj -bRq -bcy -big -cce -bJA -bTq -big -big -bTN -big -cax -cpg -cHo -cbw -bXd -cav -cav -cHA -cHG -cav -cav -cbE -cbE -cbE -cbE -cbE -cbE -cle -csW -cKv -cuj -cuq -cus -cbE -aaU -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(88,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aah -aaz -byX -byX -byX -byX -byX -aaz -acO -anU -aeb -apc -auI -ahy -aky -amI -aod -amB -ajy -akF -awG -axW -asj -awR -axo -anU -aIl -anU -anU -anU -aBf -anU -aTp -aQb -aaS -aQl -agu -aSk -aUg -blY -cjT -aLk -aNd -aNL -aNL -aPq -aUC -aNL -aNL -aVj -aNR -aNR -bEm -aNR -aaU -aaa -bdg -beJ -beJ -bdg -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -bdg -beJ -beJ -bdg -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -bgX -biB -biA -cDS -cDU -cDW -cDY -bgW -bOx -bcy -bcw -bYs -bcw -bcy -bYr -cgV -cGi -cGl -cGo -cGp -cGu -cGp -cGx -cGz -cHp -cHr -cGz -cHu -cHw -cHB -cHH -cHK -cHM -ckP -ckT -ckT -ckT -ckV -cRc -clg -ctc -cua -cvW -cur -clh -cbB -aaU -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(89,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aan -aaA -aaA -aaA -aaA -aaA -aaA -aaA -ada -anU -anU -apQ -auK -ahg -akA -amQ -ama -ahg -abS -abS -awZ -aEy -ayS -abS -abS -anU -aIV -anU -ayj -anU -aBj -anU -axN -aQb -aaS -bpo -aAX -aED -aVw -aBF -aKx -aLL -aNf -aNN -aNL -aPq -aUC -aNL -aNL -aVl -aYT -baz -bFH -aYT -aaU -aaa -bdg -beJ -beJ -bdg -bdg -bdg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdg -bdg -bdg -beJ -beJ -bdg -aaU -aaa -aaa -aaa -aaa -aaa -bdg -bdg -bGI -bGI -bGI -bGI -aaa -aaa -aaa -aaa -aaa -aaU -bgX -csF -csN -biA -biA -csL -cDj -cDy -bPl -bXx -bXT -bYu -bYA -bYA -bZG -cmV -cGj -cGm -bYv -bYv -cio -cct -cct -bOO -cHq -cHs -cHt -cHv -caG -cHC -cHI -cHL -cHN -ckQ -ckQ -ckU -ckQ -ckW -cRd -csX -ctP -cuk -cul -cur -clh -cbB -aaU -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(90,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaU -aaU -aas -aaA -aaC -abn -abq -abG -ack -aaA -adb -anU -aaR -aqa -awY -adO -acN -amZ -acN -aqY -ajz -alM -axK -axX -azk -acN -acN -azl -aJw -anU -anU -anU -aLw -abS -axT -aQb -aaS -aAY -avj -aSN -aVI -aBF -aKy -anU -aNk -aNL -aNL -aPq -aUC -aNL -aTO -aTP -aYT -baA -bFI -aYT -aYT -bdg -bdg -beJ -beJ -aXk -bjg -aXl -cut -aaa -aaa -aaa -aaa -aaa -aaa -baZ -bjg -bhS -beJ -beJ -bGI -bXP -aaa -aaa -aaa -aaa -aaa -ceE -bjg -ceF -beJ -beJ -bGI -aaa -aaa -aaa -aaa -aaa -aaU -bgW -biG -cve -bky -biA -biA -cDj -cDy -bWT -bXh -bYa -bYw -bYL -bZE -bZE -csP -cGk -cGn -cct -bYo -ckk -bYF -cct -bFu -bKe -bsM -bsM -bsM -cuY -bIk -bIk -cbB -cbB -cbB -cbB -cbB -cbB -cbB -cbE -ctW -cbD -ctZ -ctZ -cld -cus -cbE -aaU -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(91,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -cpC -ckl -aaa -aaa -aaa -aaa -aaa -aas -aaA -adB -aaF -aaJ -abm -acd -acl -acD -aaG -aeh -aqf -auS -agu -ajx -ana -agu -agu -agu -agu -aqf -asV -aCt -agE -atU -aAV -auV -aGP -bls -aKO -aLx -ayR -ayC -aQE -aMZ -aAZ -aCL -abS -aVO -aKh -anU -anU -abS -abS -aNL -aPz -aUG -aNL -aNL -aVu -aYT -baC -cPt -bcs -aYT -bdj -beF -beJ -beJ -bdg -bdg -bdg -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bdg -bdg -bdg -beJ -beJ -bGI -bXV -aaa -aaa -aaa -aaa -aaa -bdg -bdg -bGI -beJ -cis -bGI -aaa -aaa -aaa -aaa -aaU -aaU -bgW -biI -cqB -czA -cBt -csx -cDv -bgW -bWU -bXl -bXy -bWa -bYc -bXU -bXU -bWa -bJF -bKv -bYv -bYp -bYx -cPw -caz -bsU -bRV -bQQ -ccd -csV -cvt -bZT -bIk -aaU -aaU -aaU -aaU -aaU -aaU -aaU -cbB -cbB -ctN -clh -clh -ctN -cbB -cbB -aaU -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(92,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aas -aaA -aaH -aic -aaF -aaF -acu -aaA -acU -adK -aeL -asO -auT -ahE -akQ -ahE -ahE -ahE -ahE -ahE -aqz -atV -aCW -aEC -aEL -aBa -aGG -aHH -aIs -aJy -aKt -aKC -aLn -aQH -aMq -aQm -aSh -aTR -aWS -bpS -anU -aLW -aaS -abS -aLZ -aPB -aUV -aYB -bbg -bcH -bnZ -bqi -bIl -bcJ -bOY -bdr -beJ -beJ -beJ -bdg -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -bdg -beJ -ceI -bGI -bXV -aaa -aaa -aaa -aaa -aaa -aaa -aaU -bGI -beJ -bbI -bGI -aaU -aaU -aaU -aaU -aaU -aUk -bgW -bgW -csl -cAQ -bgW -bgW -cEb -bgW -bWV -bXh -bXA -bXU -bpz -aaa -aaU -bXU -bKs -bKv -bYv -bYq -cPv -bYH -bYv -bFx -bSd -bTh -bto -bTh -cvQ -crW -ceb -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -cbB -cbE -cbB -cbB -cbE -cbB -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(93,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aas -aaA -abl -aaF -aaQ -abA -abA -acC -acZ -adW -asV -aeM -adA -aed -afl -afl -afl -aiK -ajA -ajA -aew -avg -aew -axi -atW -aCE -aCH -anU -anU -anU -aPX -abS -ayI -aQM -aSx -aTF -aUv -aVz -aWe -aTF -aWC -aXi -aXO -aYS -aZM -bbp -bcN -aYJ -aNL -aVJ -aYW -baF -bIr -bcx -cvZ -bdr -beJ -beT -bbI -bdg -aaU -aaa -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaa -aaU -bdg -cmd -beT -bGI -bXV -aaa -aaa -aaa -aaa -aaa -aaa -aaU -bGI -beJ -beJ -bGI -aaU -aaU -aaU -aaU -aaU -aTV -aUo -aVW -cDH -bbS -aUk -bVL -cEc -bXr -bWW -bXh -bXB -bXU -bpz -aaa -aaU -bXU -aJV -brz -bYv -bTg -bYy -crf -bYv -bIe -bSe -bto -csZ -bto -cEP -cRq -ceb -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(94,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -cpB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aas -aaA -abk -abo -abw -abP -acy -aaA -adb -anU -aeQ -aeM -ani -aew -aeJ -aeJ -aeJ -aew -aeJ -aeJ -aeJ -avF -aeJ -aeJ -aeJ -aew -aDW -aew -aIn -aew -aFG -aew -aew -ayT -aRO -aBI -aDs -bfw -aYo -aKo -anU -aaS -aMP -abS -aOv -aPH -bcQ -aUC -aNL -aVJ -aYX -baD -bIV -bKg -cwa -bdr -beJ -bfd -beJ -bdg -aaU -aaa -aWZ -aWZ -aWZ -aWZ -aWZ -aWZ -aWZ -aaa -aaU -bdg -beJ -bfd -bdg -bXV -aaa -aaa -ceD -aaa -aaa -aaa -aaU -bdg -beJ -coR -bdg -aaa -aaa -aaa -aaa -aaU -aUi -aUp -aWm -cDH -bcB -aTV -bVM -cEd -bWs -bWs -bXh -bXJ -bXU -bpz -aaa -aaU -bXU -bKs -bLG -bYv -bYv -cwb -bYv -bua -bJE -bSd -bTh -cqz -bTh -cRi -cum -ceb -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cpB -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(95,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aan -aaA -aaA -aaA -aaA -aaA -aaA -aaA -ada -anU -aeQ -aeM -adD -aew -afn -agI -aid -aew -ajG -alU -aew -awH -aew -axj -ayQ -aew -aDY -aew -aew -aew -aQf -aSX -aew -ayU -aSQ -aAB -aDt -asL -aYr -asL -anU -abS -abS -abS -aNL -aPq -bdx -aYO -aNL -aVL -aYT -baG -bbM -bcz -aYT -bdy -beM -bfd -beJ -bdg -aaU -aaU -aWZ -aXC -aYg -aYz -aZf -aZr -aWZ -aaU -aaU -bdg -beJ -bfd -bdg -bXV -aaa -bdg -buB -bdg -aaa -aaa -aaU -bdg -beJ -beJ -bdg -aaa -aaa -aaa -aaa -aaU -aUi -aUu -cnu -cDI -cDT -aTV -bQZ -cEd -csO -cEu -bXh -bXK -bWa -bYc -bXU -bXU -bWa -bKt -bLU -bRM -bRO -bRR -cyt -bDT -bKd -bTi -caO -ckb -cuZ -cRj -cFV -ceb -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(96,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aay -aaz -bPo -bPo -bPo -bPo -bPo -aaz -aeg -anU -aeV -aeM -adE -aew -afG -agP -agP -aiL -ajT -anu -ask -ayF -aCX -aEE -aEE -aES -aGT -aHT -aJt -aJN -aQg -akv -aew -ayU -aSQ -aTg -aDu -asL -aYq -aXu -aZU -aZV -beb -aNO -aNL -aPq -bex -aNL -aTO -bhh -aYT -aYT -bbP -aYT -aYT -bdg -bdg -bJy -caW -bdg -aaU -aaa -aWZ -aXD -aYk -aYk -aYk -aZs -aWZ -aaa -aaU -bdg -caW -bJy -bdg -bXV -aaU -bdg -bjg -bdg -aaU -aaU -aaU -bdg -beJ -beJ -bdg -aaa -aaa -aaa -aaa -aaU -aUi -aUu -aWm -cDH -bOt -aTV -bIg -cEe -cEs -cEv -cEx -cEA -cEJ -cEM -cEJ -cEJ -cEJ -bKu -bQv -bRN -cEs -bRS -cEN -cEO -bIc -bRX -cRn -cvS -cmR -cRp -cRk -ceb -aaU -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(97,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -anU -agv -aeN -abS -aew -afJ -agP -agP -ajB -akv -anw -aym -azN -aDe -aDe -aDe -aET -aHg -aHS -aLf -aJO -aQi -alU -aew -ayW -aSQ -aAB -aDB -asL -aYq -aXu -aZV -aZV -beb -aNS -aOw -aPq -bcQ -aNL -aTY -aWk -aXR -azd -aTS -aRW -bcR -bdN -beJ -bfd -beJ -bdg -bdg -aaU -aWZ -aXE -aYk -aYA -aYk -beg -aWZ -aaU -bdg -bdg -beJ -bfd -bGI -bYd -bGI -bGI -bzb -bGI -bdg -bdg -bdg -bGI -beJ -bbK -bGI -aaU -aaU -aaU -aaU -aaU -aTV -aVh -biP -cDH -bcC -aTV -bIn -bIN -bIO -bIQ -bIR -bIQ -bIQ -bIR -bIQ -bIS -bIQ -bIQ -bQP -cfZ -bWX -bWX -ckf -btn -bIh -bRY -bTD -czH -bKf -cRl -cRr -bIk -aaU -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(98,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -abp -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -abp -aaU -aaU -aaU -aaU -aaU -aaU -aaU -akE -akE -ans -apg -aqE -aew -afY -agP -agP -aiL -akv -anw -akv -akv -akv -akv -aAh -aew -aEW -alU -akv -aKa -aKw -alU -aew -azc -aSQ -aAB -aDL -asL -aYq -aXu -aZW -aZV -beb -beb -beb -aPM -bcQ -aNL -aNL -aWl -aXR -aRI -aTS -aRW -bcR -bcR -cmd -bfd -bgz -bgx -bdg -bdg -aWZ -aZf -aYk -aYk -aYk -aYg -aWZ -bdg -bdg -beJ -beJ -bfd -blc -bYP -coS -aXc -aXc -aXc -aXc -aXc -aXc -aXc -aXc -aXc -bGI -aaU -aaU -aaU -aaU -aaU -aTV -aTV -aTV -bAc -brw -aTV -bVM -cEf -bWx -aab -bXo -bXQ -bXZ -bYi -bYk -bWa -bWa -bXU -bXU -bXU -bXU -bXU -bWa -bIk -bId -bKN -bTD -cmS -ccm -coH -bJH -bIk -cOI -cOI -cOI -aaU -aaU -aaU -aaU -abp -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(99,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aak -aak -aak -aak -aak -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -bhy -alq -alq -apn -aqF -aew -agD -ahr -aiH -aew -akw -aoB -akw -aqD -aew -ayh -aew -aew -aUy -alU -akv -aym -aQg -akv -aew -azf -aCb -aFT -bjV -bpW -aZO -aXu -aZX -bcr -beO -beO -beb -cDp -beL -aRm -aNL -aXw -aXR -aRW -aTS -aRW -bcR -bdU -beJ -bfd -beJ -bii -coP -bdg -aWZ -aVG -bnu -bnV -aYl -aZu -aWZ -bdg -byV -bzB -bgA -bWf -bXm -bZQ -ccN -ccN -cei -ccN -ccN -ccN -ccN -ccN -coZ -blO -bGI -aaa -aaa -aaa -aaa -aaU -aTV -aVk -bfu -csu -cAS -cDV -cDX -cEg -bWx -bSE -ckR -bSE -bSG -bTc -bSE -bSE -aaU -aaU -aaU -aaU -aaU -aaU -aaU -bIk -bIj -bKO -bTD -cry -ccm -cOx -cOA -cOE -cOJ -cOP -cOT -aaU -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cPf -cPf -cPf -cPf -cPo -abp -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(100,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aar -abM -abR -abR -abM -aZG -aaU -aaU -aaU -aaU -aaU -aTd -aaU -aaU -aaU -aaU -aaU -aaU -aTx -akE -akE -anC -app -aqH -aew -aew -aew -aew -aew -aew -aew -aew -aew -aew -axk -asz -aew -aGV -akv -aLv -alU -aQA -aSZ -aew -aAP -aEc -bjB -asL -asL -bfm -aXA -aZY -bct -beP -beP -bjv -cDq -bhz -ccQ -ccS -aXB -aYY -aSc -aTT -aUH -bcX -bel -cpl -bfi -bgA -bLH -bji -bli -aWZ -aWZ -aWZ -boe -aWZ -aWZ -aWZ -beJ -bSW -bUy -bJG -aZy -aZy -aZy -aZy -aXg -bfd -bjg -bUt -bai -baV -cKF -bbn -cKG -bGI -aaa -aaa -aaa -aaa -aaU -aTV -aVq -bfx -cuQ -cpP -aTV -bVR -cEh -bWy -buf -bJu -bSQ -bSY -bTd -bTj -bSE -aaU -aaa -aaa -aaa -aaa -aaa -aaU -bIk -cpw -bKP -cRo -crA -cdW -cOy -cOB -cOF -cOK -cOI -cOI -aZG -aaU -aaU -aaU -aTd -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aTx -abM -abR -abM -abM -cPo -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(101,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aar -abM -aca -acG -acG -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -akP -als -anW -apr -aqJ -arR -ajC -agH -akC -amb -amk -auH -ape -civ -avG -axl -aCu -aew -aFG -aIz -aew -aPZ -aQY -aTa -aew -aDi -bGY -aDX -aIq -atc -aYq -aXu -baa -bcL -beS -bgm -bjC -cDr -bhW -ccR -aNL -aXG -aXR -awO -aUc -cjq -bcR -bcR -bcR -bcR -bgE -bLJ -bLV -bfi -blE -bBW -bgA -aww -awL -aGC -aON -aGC -bTu -bUC -bVQ -aZy -bTp -bRe -baw -bZA -cfQ -bZA -bZA -bqB -bZS -bZS -bZS -bZS -bZS -aaa -aaa -aaa -aaa -aaU -aUi -ciC -bzz -cvM -cts -aTV -bVM -cEf -bWz -bSE -bSK -bSR -bSL -bTe -bTM -bSE -aaU -aaU -aaU -aaU -aaU -aaU -aaU -bIk -bJD -bKQ -bYB -cgr -bIk -cOz -cOC -cOG -cOL -cOL -cOU -aaU -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cPg -cPi -cPj -abR -cPo -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(102,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aar -abM -ace -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -abp -aaU -aaU -aaU -aaU -aaU -aaU -aaU -akE -akE -akE -akE -akE -akE -ahm -ako -alx -bfa -aaj -bNM -civ -cix -avG -axm -aCC -aCK -aFZ -aew -aew -awQ -ayO -aBx -aoF -aHR -ccM -aDX -aJU -atc -aYq -aXu -baj -bcP -bfg -bgy -bjD -aNO -bcQ -aNL -aUD -aXR -aXR -cjy -aTS -aQL -aUX -aZE -aVS -bcR -bgF -bcR -bLX -bLY -bLY -aVd -bLY -bQg -bQw -bLY -bLY -bLY -bTy -aZy -bVU -aZy -bJm -bbm -baw -aXe -chU -cjw -cjw -cke -clu -cmP -clw -bZZ -bZH -aaU -aaU -aaU -aaU -aaU -aTV -aYf -beo -cuQ -cwe -aTV -bVS -cEi -cEt -cEw -cEy -cEB -cEK -bSS -bTl -bSE -brU -brU -brU -brU -cdZ -brU -brU -bIk -bIk -bIk -ccB -cFW -bIk -cGb -bRI -cOH -bRI -bRI -bRI -bCh -aaU -aaU -aaU -cpz -cpz -cpz -cpz -cpz -cpz -cpz -aaa -aaa -aaa -aaa -cPk -abR -cPo -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(103,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aar -abR -ace -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bUo -aaU -acL -afs -aiT -aco -alG -cjo -aaj -aGc -bNT -ciy -cnF -bGU -bHl -aoF -asW -atz -avJ -awS -azB -aBC -atc -aIF -aJv -aJZ -aLY -aNA -bkF -aXu -aXu -bcU -aXu -aXu -bjD -aQn -bcQ -aNL -aUE -aXR -aQG -aRW -bsb -aUI -aUY -bew -aUY -aWb -aRW -bcR -cpc -bjj -bjj -bmh -bnv -bou -bQx -bqj -bjj -bjj -bjj -aZy -bVV -bWg -aWg -bbo -baw -bZC -cjv -aYc -bZF -bay -bZU -cnW -bbq -bcp -bZH -aaU -aaU -aaU -aaU -aaU -aTV -bHH -aWp -czf -coI -aTV -bVT -cEj -bWA -bSG -bSL -bSS -bUJ -bSS -bSL -bSC -brZ -btf -btU -cec -brU -ced -cej -bCh -bRL -bIs -ccC -cGN -cFn -cGc -bMj -bMj -bMj -cfb -cFP -bCh -aaa -aaa -aaU -cpz -bNr -bQU -cuv -cLC -cCQ -cwT -aaa -aaa -aaa -aaa -cPk -abM -cPp -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(104,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aar -abM -acf -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -bUo -aaU -acL -afF -aip -beV -aco -amd -aaj -cit -ciw -ciz -ciB -bGV -bHm -aLu -ata -ata -ata -awT -aAk -cjN -atc -aIG -aRU -aDX -aYI -atc -aVQ -aWa -aWa -cCV -aYt -aBY -aOB -aNO -bcQ -aNL -aUL -aXR -aQK -aRW -bzT -cnq -aVe -aRH -aVe -aWc -aRW -bcR -bcR -bcR -bcR -bmi -bnx -bpn -bQx -bqA -aZy -aZy -aZy -aZy -bav -bWh -csG -bQA -aZy -aXf -bZJ -bZF -cpu -bax -bZV -bZX -ccY -cab -bZH -aaa -aaa -aaa -aaa -aUk -aUk -aUk -cnm -czz -aUk -aUk -bWa -cEk -bWa -bSE -bSM -bST -bSZ -bTf -bTm -bSC -bsa -buA -bJK -ceg -bqT -cee -cef -coc -bTz -bTE -ccD -cGO -bTE -cGd -cvT -cFA -ckh -cFK -cFQ -bCh -aaa -aaa -aaU -cpz -bNv -cAC -cCk -cCv -cCS -cpz -aaa -aaa -aaa -aaa -aaa -aRv -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(105,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -acM -aaa -aaU -aaa -aaa -aaa -adj -adj -adj -adj -adj -adj -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -aaj -avi -aal -aal -aal -bGW -aco -apH -aoF -auP -bGf -bHh -cqd -cBb -aFP -aKi -aMN -aQw -coU -atc -aVV -aSg -aXM -aYq -aYt -baB -aOB -aQo -bix -bcS -aQo -aXR -aQL -cjq -aQL -aQL -cjq -aQL -aQL -aTS -aRW -bcR -bjG -blk -blF -bmn -bnz -bpw -bQx -bll -aZz -cpm -bad -bah -baR -bWi -aWh -cmN -aZy -baE -bRZ -bZF -csH -bay -bKw -bZH -bZH -bZH -bZH -aaa -aaa -aaa -aaa -aUk -bmG -bmG -bmG -cDN -bmG -aUk -bWr -cEl -bWB -bSE -bSN -bSU -bTa -bau -bTn -bSC -bRH -bth -cOd -ceg -brl -cef -cnZ -bRI -bTA -bVO -cfN -cPx -ckd -cGe -bMj -bLI -ckj -cFL -cnX -bCh -aaa -aaa -cpz -cpz -cpz -cAD -cCl -cCw -cpz -cpz -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(106,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -adj -aeC -afv -adF -agM -adj -aaa -aaU -aaU -aaj -aaj -aaj -aaj -aaj -aaj -aau -ahn -ajH -ajY -alB -amj -ape -aal -ciu -aal -ape -amj -aCM -bHd -afX -atc -auW -avL -axw -cqH -bhN -aIC -aDP -aPs -aGh -csn -atc -aVZ -aXL -cqN -aYq -aYt -baH -bcR -aPr -biC -beJ -bft -bdg -aaa -aaa -aaa -aaa -aaa -aaa -aQL -aTS -aRW -bcR -bjX -cpn -blJ -bmZ -bnA -bpy -bQI -bll -aZA -aZI -bae -chP -baS -bWj -baS -bbr -aZy -bJC -bZK -bZF -cjx -bay -baX -bZH -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aUk -bwK -bAF -bmG -cDN -bmG -aUk -bWc -bWo -bWC -bSE -bYV -cEC -cEL -bvn -bSC -bSC -bRJ -bth -bTB -cek -csK -cKk -cKl -cKm -cKn -cKo -bYI -cPP -bIq -cqZ -bMj -bLW -cFF -cFM -cnY -bCh -aaa -aaa -cpz -cvU -ctO -cAE -bNs -cLF -bNA -cpz -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(107,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -adj -aeR -afx -aga -afI -adj -aaa -aaa -aaU -aaj -aaE -acn -acn -acn -acn -afw -acn -ajN -amS -amS -aoX -amS -amS -aDE -amS -amS -aKR -apY -bRa -cjO -atc -aVr -avM -avL -csw -aBK -aID -aLX -aSJ -aHZ -atc -atc -ayd -ayd -ayd -chJ -aOo -baM -bcR -aPr -biC -beJ -bft -bdg -aaU -aaU -aaU -aaU -aaU -aaU -aQL -aTS -aRW -bcR -bku -bll -blK -bmn -bnD -bpC -bQx -bll -aZC -aZN -bCS -bak -bAI -bWk -cdE -bbs -aZy -bKR -cnN -bZF -cCJ -cnP -bZS -bZS -bGI -aaa -aaa -aaa -aaa -aaa -aaa -aUk -bmG -bmG -bmG -cDN -bmG -aUk -bWb -cEm -bWL -bSE -bSP -cED -bTb -bCX -bSC -brk -bsp -bth -bth -ceg -brU -bSX -cel -bCh -cEQ -bXn -bYJ -bSa -bSc -bSg -bMj -cFB -cFG -cFN -cvw -bRI -aaU -aaU -cpz -bMN -bMJ -cAG -bMJ -cLG -bNB -cpz -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(108,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -add -adC -adC -adC -aeS -adj -adj -agN -ahL -ahL -ahL -ahL -afD -afQ -age -age -agy -age -age -afC -akK -akG -alC -aal -ape -aal -aDU -aal -bGH -aal -aOH -aal -arb -atc -atc -atc -atc -csA -aCa -aCa -aId -aIx -aJx -aVc -ayd -cfR -aLl -ayd -cDk -ayd -ayd -bGI -aPw -bmC -aYP -bft -bcR -bdg -bdg -bdg -bdg -bdg -bdg -bcR -bgN -bgF -bcR -bcR -bcR -bcR -bna -bnP -bpF -bQY -bqK -aZy -aZy -aZy -bak -baw -bWw -aZy -aZy -aZy -bZH -bZH -bZA -cCK -bZH -bZS -bSB -bTT -bTW -bTW -bTW -bTW -bTW -bTW -bmE -bUu -aUk -aXt -cDK -aXt -bwm -bWa -cEn -bWR -bSH -bSG -cij -bSG -bFB -bSC -bhx -bqv -bti -btY -cod -cdZ -bss -cem -bRI -cER -cEU -bSh -bCh -bCh -bSh -bMj -cFC -cFH -bCh -bCh -cpz -bMl -bMl -cpz -bMO -bMJ -cAH -cvy -cLH -bNC -ctD -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(109,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -adf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -adM -aaj -aaI -ami -akX -akX -akX -akX -aqV -arS -akX -akX -akX -akX -avN -awy -avN -avN -avN -aBk -avN -aDa -aDS -aDS -aDS -aBy -cwf -cBc -cBu -cBE -cKD -cBo -cBZ -cCb -cCe -cCe -cCe -cDl -cCn -cCp -cCq -aRb -bjU -aYQ -bgc -bgd -bgd -bgG -bgd -bgd -bgd -bgd -boo -bTw -bgE -coO -bkx -blo -blo -bnc -bnR -bpG -bQx -bqY -brM -bwr -bkx -brI -blo -bWE -blo -bGr -bIZ -bVI -blo -aYH -cCL -aYH -bGI -bTt -bGI -but -but -but -but -but -but -bUq -bUv -bUq -baL -cDO -bbl -bbA -bbW -cEo -bbl -coB -bbl -cEF -buD -bFC -bqc -brm -bst -bst -bst -csj -bst -bst -coV -bCh -cES -cEV -cgf -cFj -cFo -cFr -cFt -cFD -cFI -cFO -cFR -ctD -bMo -cob -cpz -bMP -bMJ -cAK -bMJ -cLI -bND -cDe -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(110,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -adf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aiM -aaj -aaI -aco -akX -alA -aoe -apA -aqX -arU -apA -atN -auv -akX -avO -awz -ayp -azb -avN -aBl -aBP -aDc -aBQ -aEJ -aFM -azP -aFf -aIu -aKJ -aKJ -cKE -aKJ -aKJ -aKJ -aKJ -aKJ -aKJ -aXK -aYw -aYV -baJ -bcf -bke -bmq -bmL -bgu -beJ -beJ -beJ -beJ -beJ -beJ -beJ -biS -bjR -cCG -bUw -cCG -cCG -bpx -cCG -cCH -bRf -cCG -cCH -cCG -bUw -bVJ -cCG -bWF -cCG -cfz -cCG -cCG -cCH -cCG -cCM -cCG -cCN -coM -cpr -cpx -cpx -cpx -cpx -cpx -cpx -crV -crY -crZ -csJ -cDP -bUI -bUI -bVB -cEp -bUI -cqe -cqg -cEG -bdv -bqr -bqe -brq -bst -bst -bVP -cKh -btj -btj -bAo -cuW -cET -cEW -cka -bQk -bQk -bQu -cFu -cFE -cFJ -bQL -cFS -cFT -cFU -bNg -bNh -bNj -bNw -cPc -cCm -cCx -cDb -cDf -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(111,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -adf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aiM -aam -aaI -acw -akX -alE -aoi -apD -arf -arZ -atp -atT -aux -akX -avR -awC -ayq -azp -avN -aBo -aBQ -aDd -aBQ -aEK -aFM -azQ -aFi -cBe -aEv -aEv -aEv -aEv -aEv -aEv -aEv -aEv -aEv -aMH -aMS -aNI -aOS -aQD -bkP -aZJ -beJ -beJ -beJ -beJ -beJ -btG -beJ -beJ -beJ -biW -bqd -bcf -bwU -bcf -bcf -bCi -bcf -bCp -bcf -bcf -bCs -bcf -bwU -bCD -bcf -bcf -bcf -bGt -bJB -blB -cCI -blB -blB -bRg -bWH -bWM -bZr -cde -cmF -crk -cmF -cmF -cwU -cAT -cBA -cCT -cCU -cCY -cCU -cCU -cCZ -cDQ -cEq -cID -bZm -cEH -bdv -bqr -cyy -cyA -bst -cyE -cyK -buJ -bst -bst -bAq -cuX -bFJ -cEX -clv -bWD -cqb -bKy -cFv -bJI -bJI -bLL -bMa -ctF -coJ -cpb -cpz -bMR -bNx -cBD -cLA -cCy -cLP -cLT -cLU -aaa -aaa -aaa -aaa -aTd -aaa -abp -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(112,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -adf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -aiM -aap -abd -abT -akX -alO -aok -akX -arh -asb -akX -atY -auB -akX -avS -awC -ayr -azA -aAf -aBr -aBR -aDf -aDZ -aEN -aFM -aAe -aFC -cAW -aHk -aIi -aHQ -aHQ -aHQ -aJT -aHQ -aHQ -aHQ -aHQ -aOz -aHt -bGI -bGI -bkU -aZJ -bGI -bGI -bGI -crr -bjj -bjj -bjj -bjj -bIP -bje -bqn -bjj -bkx -blC -blO -bnr -blO -blO -blO -baf -bRs -bxk -bkx -bjj -bFA -bjj -bIP -bGA -bGE -bLg -bMG -bPR -bGE -bRy -bSA -bTw -cwW -bTY -bTY -bTY -bTY -bTY -bTY -cwX -cqY -bUE -baO -cDR -bFc -bFc -cDa -cEr -bPQ -cIE -cEz -cEI -bXi -bga -caQ -bXC -bvK -bHI -bYK -buK -bst -bst -bKi -bPP -bQa -cEY -cqW -bJg -bQl -bYG -cFw -bpa -bQn -bQC -cmZ -cpz -cvs -cwg -cpz -bMl -bNy -cBG -cpz -cCz -cpz -cpz -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(113,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -adf -aad -aad -aad -aad -aad -aad -aad -aad -aad -aad -adM -aaq -aaI -acF -akX -akX -akX -akX -arj -ase -akX -akX -akX -akX -avX -awF -ayt -azC -avN -aBt -aBZ -aDd -aEd -aEO -aFM -aAj -aIk -cBf -cBv -aIj -aHs -aHs -aHs -aHs -aHs -aHs -aHs -aHt -aNp -aHt -aPb -bGI -blm -baq -bGI -aPb -bGI -bgL -bGI -bdg -bdg -bdg -bGI -bjh -bqF -bGI -aWB -bsl -cjJ -aXH -cbA -cbH -ckZ -aZv -bRP -aWB -aWB -bDN -cpv -bDN -bGI -bdg -bdg -bGI -bGI -bGI -bGI -bRB -bGI -bTt -bGI -but -but -but -but -but -but -bUq -bUv -bUq -baQ -cuR -cvl -cvl -cKe -cNh -cNw -cIF -ccp -bqo -buF -bpA -bqe -ceY -bwf -bHJ -cbr -cDE -cDG -cEa -buS -buS -bFX -cEZ -bAs -ayY -baT -baT -cFx -bpb -bqO -bru -coY -cpz -bMr -cwh -cwl -bNm -bNz -cBT -cpz -cCD -cDc -cpz -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(114,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -adh -adC -adC -adC -afb -adj -adj -agO -adj -adj -adj -adM -aat -abf -acF -acI -aem -aex -aht -aRz -brB -ank -arJ -amo -acF -avN -avN -avN -avN -avN -aBw -aBZ -aDo -aDo -aEP -aFM -aAj -aFC -cBg -aIj -aHs -aHs -aaU -aaU -aaU -aaU -aaU -aaU -aHY -aHY -aHY -aHY -aHY -bln -bmy -aNT -aNT -aNT -aNT -aNT -aaa -aaa -aaU -aSt -bjk -bqG -aWB -aWB -aWK -aXo -aXI -aYn -cda -aZj -aZw -bRQ -aZQ -aWB -aWB -bGI -bGI -bGI -aaU -aaU -aaU -bGI -aSV -bGI -bRW -bgY -cgC -bTT -bTZ -bTZ -bTZ -bTZ -bTZ -bTZ -bUr -bUz -bUq -bbh -cuR -cvm -cDn -cKf -cNi -cvl -cIF -ccp -bqr -bbh -bpB -bqm -bqm -byw -bst -cbr -cDF -cDJ -cKC -cDh -cPR -bFJ -cFa -cFk -cFl -cFp -cFp -cFy -bbt -bqP -brO -bQB -ctD -bMs -bMA -cwm -bMT -bNG -cCa -cCo -cLL -cDd -cwg -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(115,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -adj -adY -afc -afy -agb -adF -ahM -ahM -aie -adM -bHX -abY -acF -acV -adi -aeT -afq -aij -cdI -adi -adi -anl -acF -aVD -axP -aCA -bGM -avN -avN -aCh -aDp -aDp -avN -aDS -aAU -aFC -cBh -aHs -aHs -aaU -aaU -aaa -aaa -aaa -aaa -aaU -aHY -aTL -aVA -aWi -aWo -blr -aXq -bbj -bda -bol -aSl -aNT -aaa -aaa -aaU -aSt -bjk -bqG -aWB -aWG -aWM -aXr -aXJ -aXr -cjG -aXr -aXr -bRU -aZR -aWI -aWB -aaa -aaa -aaa -aaa -aaa -aaa -bGI -bGI -aRy -bSk -aRy -bGI -bGI -aaa -aaa -aaa -aaa -aaa -aaa -bUq -bUq -bUq -aaa -cuR -cvn -cDo -cLB -cNj -cvl -cIF -ccp -cpH -bbh -bqs -bXz -bqm -byD -bHJ -cbs -buS -cDZ -czg -czt -cPS -czD -cFb -bEl -bJn -bQm -cbf -bop -bpe -bQz -bXD -cna -cvo -cvO -cwi -cwn -cwu -cAB -cCc -cCr -cLD -cuv -cCr -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(116,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aaU -aaU -aaU -aaU -adj -adY -aeR -adF -adF -adF -adF -adF -aig -adM -aiZ -ajL -acF -adg -adi -aeU -aeU -agr -alD -anj -ajJ -ajJ -auM -ayD -ayD -ayD -aIe -aLg -aEo -bnJ -bHo -bHq -bHf -arw -aBg -aGg -cBh -aHs -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaU -aHY -aVg -aQF -bba -bcK -bmg -bmD -bmR -bnK -bnL -aSm -aNT -aaa -aaa -aaU -aSt -bjk -bqG -aWB -aWI -aWO -bPz -bQf -aYs -cjZ -aYs -aYs -bSV -aZS -aWG -aWB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -bqX -bSr -bqX -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -cuR -cvp -cFY -cLE -cNk -cuR -cIF -ccp -cJe -bbh -brJ -btv -bqm -bzJ -bst -cbK -buS -bAJ -czh -czu -cPT -czE -cFc -bEl -aJD -bbx -bbZ -boq -bpg -bpg -bAy -bQJ -cpz -bMu -bMC -cwo -bMU -bNc -cCg -cCr -cLD -cuv -cCr -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(117,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -abp -akN -aTd -aaa -abp -aaa -aaU -adj -adY -afc -afz -agk -agR -afz -ahR -afz -aiW -ajp -ajR -agj -agq -agq -agq -acH -ags -alK -agq -anR -apf -auQ -azz -azz -azz -azz -azz -aUA -boH -bDZ -bEF -bHx -bHk -aBh -aGx -cBh -aHs -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aHY -aIv -aIv -aJW -aHY -aRQ -aYe -aNT -aUO -aQU -aSn -aNT -aaa -aaa -aaU -aSt -bjk -bqG -aWB -aWI -aWP -aXy -aXN -aXy -ckg -aXy -aXy -aXy -aZZ -bag -aWB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -bqX -bSs -bqX -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -cuR -cuR -cFZ -cLJ -cNl -cuR -cIG -ccw -csM -cyo -bBs -blU -bqz -bAD -bIi -bBP -buS -caR -czi -cKj -buS -bFY -cEX -bIU -aJE -bbz -bjx -bot -bot -bjx -bAH -cRm -cpz -cvs -cwj -cwp -cwT -cpz -cCi -cCr -cLM -cvf -cCr -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(118,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aaU -aaU -aaU -aaU -adj -adY -aeR -afB -agp -agS -agp -agp -agp -aiX -ajr -ajW -agn -agw -ajJ -ahw -anQ -aUS -ckG -cwk -aBm -aoh -acF -arl -ayX -aDj -bGN -bGR -bHb -bvd -bHq -bHf -bHf -arw -aBi -aGx -cBh -aHs -aaU -aaa -aaa -aEQ -aEQ -aEQ -aEQ -aEQ -aHY -aHY -aHY -aHY -aHY -aTb -aWv -aNT -aNT -aNT -aNT -aNT -aSt -aSt -aSt -aSt -bjk -bqG -aWB -aWB -aWQ -aXz -aXU -aYu -ckY -aZn -aZx -bEs -bac -aWB -aWB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -bqX -bSs -bqX -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -cuR -cGa -cuR -cNm -cuR -cIH -cgv -coE -bxM -bDd -bXt -brH -bAE -bIL -cdX -buS -buS -buS -buS -buS -cnz -cEZ -bJa -aKZ -bbB -blv -czK -bph -bqR -bAM -cvx -bMk -bMw -bMD -bMv -bMv -cvs -cCj -cCu -cLN -cLS -cCr -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(119,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -adj -adY -aeR -afI -agt -agV -adF -adF -aih -adM -adm -aeH -acF -adJ -adi -afq -agY -aij -brB -adi -amf -aoc -asJ -asJ -asJ -asJ -asJ -asJ -asJ -bvt -aDv -bHu -bHy -bHB -aAj -aGx -cBh -aHs -aaU -aaa -aaa -aEQ -aFw -aDR -aDM -aLV -aDN -aDN -aDN -aDN -aDg -aUM -bfl -aOa -aPI -aPI -aPI -aPI -aPI -aTn -aPI -aPI -bjp -bqW -aUh -aWB -aWB -aWB -aXV -aYv -aYN -aWB -aWB -aWB -aWB -aWB -aye -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -bqX -bSs -bqX -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -cuR -cGf -cLK -cNn -cuR -cIF -cgB -bqr -bbh -bDm -bFE -bIf -bIt -bJd -bXq -cmK -cws -czv -cmU -crg -cvR -cFd -bEl -aMm -bbC -blw -blw -blw -blw -bAT -cez -bMl -bMv -bMv -bMw -bMv -cpz -cuc -cpz -cvs -cCl -cCu -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(120,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -adj -adM -adM -afe -afL -adM -adM -ahQ -ahV -aiI -adM -adt -aeO -acF -aek -aes -afr -ahi -ail -ckH -alr -avn -apb -asJ -atB -aBU -aDk -bGO -bGS -asJ -aDz -ark -bHv -aPF -aPF -aJA -aGx -cBh -aHs -aaU -aaa -aaa -aEV -aFy -aGd -aDM -aMg -aIa -aGE -aGE -aGE -aLi -aUT -baI -aOb -aPK -aPK -aPK -aPK -aPK -aVm -btR -aPK -bjH -brc -bkV -aVv -bkR -aWB -aXW -aWB -aZd -aWB -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -bqX -bSs -bqX -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -cuR -cGg -cLO -cuR -cuR -cIF -cgB -bqx -bbh -bPw -bqz -bqz -bzA -bRT -ciQ -col -cxh -czB -cnk -bqz -cKH -cFe -cFk -cFm -cFq -cFs -cFz -bqt -blx -bBn -ceA -bMl -bMw -bMv -bNi -bMv -coK -bMv -bNu -bMl -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(121,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -adj -adj -adP -aep -aeR -afI -agF -adM -adM -adM -adM -adM -adt -aeO -acF -ale -ale -ale -ale -aru -asf -ale -ale -ale -ale -azL -aCj -aDl -aIh -aLB -aVE -byR -bHr -bHv -aPF -bGp -aAj -aGS -cBh -aHs -aaU -aaa -aaa -aEV -aFz -aGe -aDM -aUK -aGe -alZ -alZ -alZ -alZ -aHU -aHU -alZ -alZ -alZ -aSt -aSt -aSt -bjA -aVv -cho -aWq -bro -bwa -bwY -bwY -bwY -bCl -bCn -aWd -aSt -aaU -bun -bxl -awq -awq -awq -awq -awq -awq -awq -aOe -aQv -aaU -bqX -bSt -bqX -aaU -cgI -cgN -cgN -cgN -cgN -aPg -aPg -cgP -aaU -aaU -aaU -aaU -cuR -cGh -cLO -cuR -cvL -cII -cgB -bqr -bbh -bPw -bqz -bqq -bzG -bFZ -ckp -com -cyu -czF -cDM -crn -cxf -cFf -bEl -aOF -bbE -coX -bbE -bbE -bqS -bQy -ceB -bMn -bMv -bMv -bML -bMv -bMv -bMv -bML -bMl -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(122,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -adj -adF -adF -aeq -afj -afN -adF -adF -adj -aaU -aaU -act -abQ -aeX -abU -ale -alQ -aol -ale -arz -ash -ale -aua -auF -ale -aAL -aCw -aPi -aPi -bGT -asJ -bHj -bHs -bHw -aPF -bGs -aAj -aGx -cBh -aHs -aaU -aaa -aaa -aEQ -aHn -aWt -aWz -aWW -aIc -alZ -alZ -aog -aog -axV -axV -aog -aog -alZ -bvv -aUh -cjM -aVv -aVv -bue -bue -bxf -bBY -bue -bue -bue -aXY -bCo -aWd -cho -aaU -bup -ajO -ajO -ajO -ajO -ajO -ajO -ajO -ajO -aQa -ajO -ajO -aRy -bSO -aRy -bfh -cgJ -bye -cmI -bXa -bfh -bfh -bfh -cgJ -aaU -aaa -aaa -aaa -cuR -cHZ -cLQ -cuR -bdC -cIJ -cgB -bqr -bbh -bPw -bqz -brK -bCf -bTC -ckD -cpI -cyF -czM -cGI -cHW -cxg -cFf -bJb -bJJ -bKh -bKz -bKS -bLq -bKz -bLM -bKz -bKz -bMw -bMv -bMv -bMv -bMl -bMl -bMl -bMl -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(123,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -adj -adF -adX -aeu -afk -afP -agK -adF -adj -aaa -aaU -act -adv -aeO -afW -ale -alT -aom -apN -arA -asn -atr -aud -auG -ale -aAO -asJ -asJ -asJ -asJ -asJ -bHk -bHk -bHk -aPF -aHt -aKc -aGx -cBi -aHt -aDM -aDM -aDM -aEQ -aDM -aDM -aDM -aXa -bdb -alZ -aog -apB -aFc -bfj -axV -axV -apB -aog -alZ -aUh -aUP -bCC -aZb -bue -bvc -bys -bCc -bGZ -bNN -bue -aXZ -aXX -aWd -aZo -aaU -avv -ajO -aGi -axI -axI -aGi -ajO -bFf -aPE -baW -aYZ -beu -beK -bTX -bWI -bWN -cbj -cdf -cny -bXk -cgL -cvD -cvF -cgJ -aaU -aaa -aaa -aaa -aRv -aaa -aaa -bbh -bdD -cIK -cgB -bqr -bcT -bPw -bqz -bsL -bzG -bFG -clc -bqz -bqz -bqz -bqz -bqz -cNJ -cAm -cAt -cAv -cFg -bKz -bKT -bLr -bKT -bLN -bMb -bKz -bMv -bMw -bMv -bMV -bMl -aaU -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(124,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -adj -adF -adX -aey -adM -adY -agK -adF -adj -aaa -aac -acE -adU -aeO -afW -ale -alV -aon -apO -arC -aso -apO -aon -auJ -ale -aBz -aEU -aGD -aJF -aJF -aJF -aJF -aHa -aHp -aHp -aIJ -aLc -aMo -cBj -cBw -cBF -cBF -cBF -cBF -cBF -cCf -aHG -aXb -aVC -alZ -aog -apG -aFN -axV -aLO -axV -aRL -aog -alZ -aUh -aUQ -aVM -aVN -bue -bvg -byE -bCu -bHa -bOB -bue -aYd -aYx -aWd -aZo -aaU -avv -ajO -bCv -axI -aNh -aNz -bDw -bFv -bHp -bLm -ajO -ajO -aRy -bUi -aRy -bfh -bfh -cdh -bzN -bYT -bYS -cvE -bYS -cgJ -bfh -aaU -aaU -aaU -aaU -aaU -aaU -bbh -bdF -cIL -ciF -aYG -bdu -biU -brF -bsN -bCg -bHC -cmB -bqz -cyG -czP -bBQ -cKi -cNV -cFf -bJc -bJL -cHO -bKz -bKU -bKT -cIg -cIj -bMc -bKz -bMv -bME -bMv -bMv -bMl -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(125,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -adj -adF -adX -aez -afu -afT -agK -adF -adj -aaU -abv -acP -aef -afg -agf -ale -ale -ale -ale -arD -asq -ale -ale -ale -ale -aBH -bGz -ayu -aim -aim -aim -aim -aim -aim -aim -aEh -aEq -aMG -aQS -aWr -aWu -aWu -aWu -aWu -aWu -bbQ -aWA -aXd -bre -alZ -apB -axV -aGp -axV -csC -axV -axV -apB -alZ -aSt -aSt -cho -aSt -bue -bue -byF -bCw -bue -bOC -bue -cho -aSt -ckI -aSt -brs -avv -ajO -avY -ajO -ajO -aOI -bDU -bGg -bIF -bLz -bNe -ajO -bQb -bUj -aTh -bfh -brb -bzN -bzN -bYU -cgM -bYY -bZb -cgJ -bfh -bfh -bfh -bfh -bfh -brs -brs -bcT -bdD -cIM -ciW -bqC -bdu -bXt -csi -bsP -bAC -bHC -bIM -bqz -cyN -czW -cFX -bRI -cyB -cFh -bJe -cRb -cHP -bKA -bKV -bLs -czL -cIk -bMd -bKz -bMl -bMl -bMl -bMl -bMl -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(126,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -adj -adF -adF -aeA -aeA -aeA -adF -adF -adj -aaa -chH -acS -aen -afi -agg -ahj -ajf -ajf -ajf -aAx -alN -ano -ano -ano -auZ -aBL -bnH -axh -anq -anq -anq -anq -anq -anq -anq -anq -bID -aHu -aGr -aOJ -aOT -aOT -aOT -aOU -aOU -aOT -aXP -aOT -aOT -aOJ -aog -axV -bfj -axV -axV -axV -axV -aog -aSG -aRh -aRq -aRq -aRq -aRq -bvz -byZ -bCy -bvz -bOV -aRq -cjD -bnU -btw -bns -aya -avy -alo -awn -aIS -aNo -aJp -bDW -bGB -aHq -bki -bPp -bPU -bQi -bUU -bWJ -bWP -cbV -bzR -cvB -bOz -cwd -bYZ -bZc -cgQ -bZe -bZe -bZe -bZe -cjr -brL -brL -bVW -bVW -cIN -cjV -bdu -bdu -bXu -bqz -bsQ -bCY -bHE -bqz -bqz -bMj -cAc -cov -bMj -cyC -cFf -btp -bJN -cHO -bKz -bKW -bLt -cso -cIl -bMe -bKz -aaU -aaU -aaU -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(127,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -adj -adj -adF -adF -adF -adF -adF -adj -adj -aaa -abz -acX -agh -agB -aim -aim -aim -aim -aim -aqs -aqu -aim -aim -awc -axx -ayN -aAA -aBM -aCq -aDx -apy -arV -apy -axg -ceu -anq -bID -aHu -aGr -aOT -aPS -aSb -aTi -aUd -aTi -aWs -aYb -ban -bdd -aOJ -aog -ayK -bfk -axV -axV -bfj -axV -apB -aSH -aSt -aSt -aTs -cho -aSt -bue -bzD -bCE -bue -aSt -aSt -aSt -aSt -cpG -aSt -brs -avv -ajO -axZ -ajO -ajO -aPf -bEZ -bGD -bJk -bLC -cRf -bPV -bQT -bVq -cRh -bfh -cbY -cdn -cpf -bYU -cgM -bYY -bRx -cgJ -bfh -bfh -bfh -bfh -bfh -brs -brs -bcT -cIv -cIO -cgB -bTv -bcT -bQE -bqz -bqz -bqz -bJf -bqz -caj -cdY -cAo -cdY -cup -cyH -cFi -bMF -bNF -cHQ -bKz -bKT -bLr -bLt -cIm -bMf -bKz -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(128,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaU -adj -adj -adj -adj -adj -adj -adj -aaU -aaa -acb -aft -agz -adt -abB -afE -afE -afE -afE -aFu -aeO -aeY -aeY -aeY -aeY -aBN -awN -awN -anq -anT -anT -anT -anT -anT -anT -cex -bNp -aFC -aFF -aOU -aQt -aSf -aTj -aTv -aTv -aTv -aYi -baU -bdh -aOJ -aog -aog -axV -aHV -aRr -axV -aog -aog -aSH -beG -aaU -aaU -aaU -aaU -aRv -aaU -aaU -aRv -aaU -aaU -aaU -aWj -aSq -aWj -aaU -avv -ajO -aze -azJ -aNr -bCF -bDw -bPK -bKx -bmv -ajO -ajO -aRy -bVC -aRy -bfh -bfh -bBR -cqf -bYX -bYS -cvE -bYS -cgJ -bfh -aaU -aaU -aaU -aaU -aaU -aaU -bbh -cIw -bjm -cgB -bYW -bcT -bQE -bsV -bsG -bHD -bHD -bMj -caH -chV -cDL -cox -cvu -cyI -cyL -cyM -bJO -cKp -cHS -cHU -cIb -cvv -cIn -bMg -bKz -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(129,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aaU -aaU -aaa -aaa -aaa -abz -acP -aef -acS -abC -ahY -ajg -abI -acQ -aHr -aeO -aeY -ahB -aiY -aeY -aCk -aeY -aeY -anq -aof -cpq -asa -aoL -anT -anT -cey -bRF -aFC -aFF -aOU -aQu -aSf -aTv -aTv -aTv -aTv -aYj -ban -bdl -aOJ -alZ -apB -aog -aog -aog -aog -apB -alZ -aSH -aaa -aaa -aaa -aaa -aaa -aWR -aaa -aaa -aWR -aaa -aaa -aaa -aaU -aSq -aaU -aaa -avv -ajO -aGi -axI -aIX -aGi -ajO -cRe -aZP -bmH -aYZ -bht -bcY -bVD -beC -cgF -bfh -bBS -cqh -bXk -cvC -cvD -cvF -cgJ -aaU -aaa -aaa -aaa -aWR -aaa -aaa -bbh -cIx -bjm -cgB -bbh -bbh -bQE -bsV -bts -bHG -bQp -bMj -cbm -byQ -bHK -cGU -bXN -bHK -bIu -bJh -byQ -cHR -bKC -bKY -bKY -bKY -cIo -bKz -bKz -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(130,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aai -ade -aev -act -acQ -aiy -ajk -aqR -ats -aLb -aeB -aeY -ams -ahC -akS -aCo -aor -aeY -anI -aoL -anT -asa -bEz -bES -bES -bGv -ccg -aFC -ago -aOT -aQz -aSf -aTw -aTv -aTv -aTv -aYM -bbi -aOT -aOT -aOJ -aOJ -aOJ -bmF -bnT -aRJ -aRJ -aRJ -chm -aaU -aaU -aaU -aaU -aaa -btT -bzE -btZ -btT -aaa -aaa -aaa -aaU -aSq -aaU -aaa -buv -ajO -ajO -ajO -ajO -ajO -ajO -ajO -ajO -aQa -ajO -bmM -bcZ -bVF -bTS -cgG -bfh -bEo -cqm -bZa -bfh -bfh -bfh -cgJ -aaU -aaa -aaa -aaa -ctG -cIh -ctJ -ctG -cIy -bjm -cgB -bbh -bpm -bQE -bsV -buj -bpD -bXL -bsV -cyO -byN -bzK -czw -bDa -coe -bIv -bJi -bDa -czw -byQ -cPQ -cIc -cIc -cIp -bxj -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(131,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -acQ -aiD -ajq -arc -atJ -bmp -bGi -aeY -ahF -apx -akU -aCp -aor -aeY -anL -aoU -anT -anT -anT -anT -anT -cex -bRF -aFC -aFF -aOU -aQB -aSf -aTv -aTv -aUU -aTv -aYj -ban -bdO -bfv -bfv -bfv -bkW -bmJ -bof -aQJ -aQJ -aQJ -aQJ -aQJ -aQJ -aRZ -aaU -aaa -bvB -bzF -bCR -btT -btT -bvB -btT -btT -cjE -aaU -aaa -bux -bxl -azq -aCU -aCU -aCU -aCU -aCU -bbu -aQj -ajO -ajO -bdi -bWm -cjI -cgH -cgN -cgO -cgN -cgN -cgN -aPg -aPg -cgK -aaU -aTx -ctG -ctG -ctG -cIi -cLR -ctG -cIy -bjm -cmn -bWZ -bXj -bXv -bsV -bul -bpD -bsV -bsV -cyP -byQ -bzS -czw -bDb -bBu -crX -czI -bBu -cKq -cHT -cPy -cId -bLD -coA -bxj -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(132,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -ajw -acQ -acQ -acQ -acQ -acQ -ahD -asr -aeY -ahG -apM -akV -aqv -aor -aeY -anP -aqP -apz -asK -apz -btk -cev -anq -ccq -aFC -aFF -aOU -aQI -aSf -aTv -aTv -aTv -aTv -aZa -bbi -aOT -bfy -bgJ -bjL -blD -bmK -boi -aaU -aaU -aaU -aaU -aaU -aaU -aSq -aaU -aaa -btT -bzM -bCT -bHc -bQt -bUg -cch -ccy -aSq -aaU -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -cjH -aaa -aaU -bWv -aaU -aaa -aaU -aZB -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -ctJ -cuS -cvq -cIq -cMU -cvr -cIw -bjm -cgB -bbh -coC -bpO -bpE -bpE -bpE -bpE -bpE -cyQ -byQ -cCO -czx -czC -czG -bIw -czJ -bBu -bKm -byQ -cHX -cKP -cOM -cOM -cOM -cOM -cOM -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(133,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ajw -ajw -aki -alg -alY -aoo -ajw -bAt -aeO -aeY -aeY -apZ -aeY -aeY -aeY -aeY -anq -anq -anq -anq -anq -anq -anq -anq -ccz -aHv -aFF -aOT -aQP -aSf -aTv -aTv -aTv -aTv -aZc -bbH -bdP -bdP -bgR -bdP -aOJ -aPN -bes -aaU -aye -aye -bQe -aye -aaU -aSq -aaU -btT -btT -bzP -bCZ -bKl -bQW -bUp -cci -btZ -aSq -bgh -bIY -bIY -bRo -bIY -bRo -bIY -bIY -bIY -bIY -bIY -bIY -bRp -aaa -aaU -bWv -aaU -aaa -aaU -aZB -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -ctK -cuT -cuT -cuT -cMV -cNo -cIz -bWO -cIX -bZh -bZh -bZh -bZh -bZh -bsV -bze -bpD -cyR -byQ -crq -csp -bPS -bQc -bQj -bQo -bJP -bKn -byQ -cHY -cyS -cOM -cOQ -cOV -cOZ -cOM -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(134,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -cpB -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aaU -aaU -apv -apv -crP -ajw -ajX -akk -ali -amn -aop -aqb -bEI -bGj -aff -ahH -aqG -akW -any -aos -apk -atQ -atL -atk -bBd -bFN -atM -bFR -aff -cfe -aIk -aIU -aOX -aQQ -aSf -aTv -aTv -aUW -aTv -aZc -aVf -bdP -bfF -bha -bdP -abp -aPN -bes -aaU -aye -aaU -aaU -aaU -aWj -aSu -aRZ -btT -bwh -bAe -bDD -bKr -bRl -bUL -btT -btT -cjE -bsz -aaU -aaU -cdV -cdV -cdV -cdV -cdV -cdV -cdV -cdV -cdV -cgi -cgD -cdV -chy -chN -bWQ -bWQ -cdo -aPg -aPg -cet -bpL -bBO -bBO -bBO -bBO -ctG -ctG -cvr -ctG -ctG -ctG -cIy -bjW -cKO -bZh -bZk -bZn -bZq -bZh -cEE -bpD -cmL -cyS -byQ -byQ -byQ -byQ -byQ -byQ -bKk -byQ -byQ -byQ -cOD -cIe -cON -cOR -cOW -cPa -cOM -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(135,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aYp -cdc -crQ -ajF -akc -akm -alk -amH -aoz -ajw -agA -alP -anA -aot -aqK -avo -aCs -aFo -aot -aot -aot -aot -bCO -ahJ -ahJ -ahJ -ahz -bRF -aEu -aJc -aPa -aQR -aSz -aTz -aTz -aVb -aTz -aZg -aVf -bdW -bfJ -bhc -bdP -abp -aPN -bes -aaU -aye -aaU -aWj -aWj -aWj -aSv -aSu -buk -bwz -bAi -bEe -bKL -bRE -bUY -ccj -aSw -aaW -bsz -aaa -aaa -aaa -aye -aaU -ceR -cfa -cfo -cfp -cfC -cdV -cgl -cgR -chr -chz -chX -cdV -cdV -ckJ -cdV -cdV -cdV -bpN -bCa -bSo -bSv -cfl -ctX -cuU -cwr -cIr -cMW -ctG -cIA -cIP -cIY -cJf -bGu -bHi -bJU -bOn -bOp -bJp -bJp -cyT -bPs -bYC -bPN -bPN -bPN -bPN -cAu -cCh -cCh -cCh -cIa -cIf -cOO -cOS -cOX -cPb -cOY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(136,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -agd -cdc -crR -ajF -akf -akh -ali -amR -ajw -ajw -bGc -aeO -aff -ahS -ajQ -axO -anX -aoC -apl -ahJ -cpd -ahJ -aqG -bED -bET -bET -bGw -chQ -cAV -aJc -aOT -aQX -aSE -aTC -aUe -aVf -aVf -aSE -bcd -bdY -bfM -bhg -bdP -abp -aPN -bey -aaU -aye -aaU -aaU -aaU -aWj -aWj -aWj -btT -bwB -bAm -bEh -bLo -bSz -bVa -btT -aaU -aby -bsz -aaa -aaa -aaa -aye -aaU -ceR -cff -cfo -cfA -cfH -cfW -cgo -cgS -chr -chA -chY -ciY -ckt -clY -cnx -cpK -cdV -bBE -bCa -bSp -bSw -cfl -cuu -cuV -cwE -cuV -cMX -ctG -bdG -cIM -coa -cwH -cyq -cyw -cJh -bZh -bsY -btx -bum -cyU -czd -czj -blp -blp -bme -bxj -bxj -bxj -bxj -bxj -bxj -bxj -cOM -cOM -cOY -cOY -cOY -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(137,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaU -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aYp -cdc -crR -ajF -akh -akh -alp -amT -ajw -awN -bGc -ahI -aff -ahW -ajQ -ayi -anX -aoC -aqh -ahJ -ahJ -ahJ -aqG -bEE -bFQ -bFS -ahz -aAj -cAW -aJC -aOT -aRc -aOT -aOT -aOT -aOU -aOU -aOT -aOT -bdP -bdP -bhl -bdP -abp -aPN -bes -aaU -bQe -aye -aye -aye -aaU -aWj -bnS -buq -bwC -bAr -bEx -bMz -bSD -bVu -bvB -aaU -aby -bsz -aaa -aaa -aaa -aye -aaU -ceR -cfa -cfo -cfB -cfH -cfW -cgo -cgU -chs -chs -chZ -ciZ -cku -cmf -cnK -cnK -cdV -bBO -bUB -bSq -bVf -cfm -cuw -cuV -cuV -cuV -cMY -ctG -bdH -cIM -coi -bZh -bZh -bZh -bZh -bZh -bsZ -bsZ -bsZ -bxj -byU -czk -blp -coy -cdd -aYp -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(138,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aax -aax -aax -aax -aax -apv -crS -ajw -ajw -akx -ajw -anc -ajw -axe -bGc -aeO -ahz -aiw -ajQ -alL -anX -aoC -aqi -ahJ -ahJ -azK -bDo -bFK -bFK -bFT -aff -aAj -cAW -aJQ -aHO -aRB -aIO -aTG -aUj -aVi -aWD -aZh -aTG -aaU -aaU -cuA -cuy -bcc -bcO -bes -aaU -aaa -aaa -aaU -aaa -aaU -aTy -btT -btT -bwL -bwL -bEY -bMB -bSF -bVA -btT -aaU -aby -bsz -aaa -aaa -aaa -aye -aaU -ceR -cff -cfp -cfC -cfI -cdV -cgp -chb -cht -cht -cia -cjh -ckw -cmg -cof -cof -cpY -cwq -cwV -cAU -cfh -cos -cuF -cva -cyp -cuV -cMZ -cvr -bdG -cIM -cgB -coF -bcT -aaU -aaa -aaa -aaa -aaa -aaU -bxj -byU -czk -blp -ctH -cdd -csc -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(139,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aTd -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aax -aaX -abs -abs -abu -cqV -csa -acs -adu -adQ -ajw -anf -ajw -awN -bGc -aeO -ahz -aiw -ara -ays -anX -aoC -arm -ahJ -atM -aAl -bDO -bFL -bFL -bFU -ahz -aAj -cAW -aKD -aLT -aSo -aSP -aTI -aUl -aVn -aWL -aWL -bce -aaa -aaa -aaa -aaU -brs -aPR -cux -aaU -aaa -aaa -aaa -aaa -aaU -aWj -btZ -bus -bwQ -bBk -bFa -bMI -bSI -bXp -btT -aaU -abH -bAA -bMK -aZp -ceq -cet -cet -cet -cet -cfr -cfE -cfJ -cdV -cgu -chg -chs -chB -cib -cjs -cky -cmE -cok -cok -cdV -bBO -bPv -cBd -cfi -cfm -cuH -cvb -cvd -cvd -cNa -cNp -ber -cIQ -cgB -bqN -bcT -aaU -aaa -aaa -aaa -aaa -aaU -bxj -byU -czk -blp -cqT -cdd -aYp -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(140,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aax -aaZ -abt -abt -abK -cqV -abN -abL -adQ -adQ -ajw -ajw -ajw -awN -bGc -bGl -ahA -aiQ -ard -alI -anX -aoC -aqh -ahJ -apP -aAl -bFL -cqi -bEU -bFV -bGx -chW -cAX -cBo -aMw -aSp -aTA -aTK -aUm -aVo -aWN -aZk -bcg -aaa -aaa -aaa -aaU -brs -aQp -cux -aaU -aaa -aaa -aaa -aaa -aaU -aWj -bud -buE -bwS -bBv -bFb -bMS -bBv -bXM -bvB -bWq -acY -adz -bsz -aaa -aaU -cdt -ceK -ceK -cdV -cft -cfF -cfK -cgb -cgw -chj -aXF -chD -cid -cju -ckz -cmG -coT -cpL -cpZ -bBO -cxd -cBd -cfj -cfl -cuI -cuV -cyv -cuV -cNb -cNq -beW -cIM -cgB -bqV -bcT -aaU -aaa -aaa -aaU -aaU -aaU -blp -btK -czl -blp -cqU -bBZ -bme -bme -bme -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(141,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aax -aba -aax -aax -aax -aax -aax -acR -abL -adQ -aQO -aei -atZ -aFv -bGd -bGm -aff -aiR -arg -amu -amu -api -ahJ -ahJ -ahJ -aAl -bFL -bFL -bFO -bFU -ahz -aCm -aEx -aGJ -aNm -cBK -aJr -aTG -aUn -aVp -aWT -aZl -aTG -aaU -aaU -aaU -aaU -abp -aQq -bes -aaU -aaa -aaa -aaa -aaa -aaU -aTy -btT -btT -bwT -bBB -bGb -bMW -bTF -bXM -btT -btT -btT -cjF -bMX -cdt -cdt -cdt -ceL -ceT -cdV -cfu -cdV -cdV -cdV -cdV -chk -chu -cdV -cdV -cdV -ckA -cmY -cdV -cdV -cdV -bBO -bSm -cBk -cfk -cfl -cuJ -cvc -cyz -cuV -cNc -cNr -byT -cIR -coj -byT -bzY -aaU -aaa -aaa -blp -bme -bme -blp -btL -czm -bzq -bui -clZ -buo -buo -bme -bme -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(142,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aax -aax -aea -adQ -adQ -aer -auc -apv -agJ -amp -aff -aiS -art -amv -akR -apj -atA -atK -aqg -aCO -bFM -bFP -bFM -bFW -aff -azP -azP -aGQ -aNv -cBL -bhR -aTM -aTM -aTG -aTG -aTG -aTG -aaa -aaa -aaa -aaU -abp -aQr -bes -aaU -aaa -aaa -aaa -aaa -aaU -aWj -bnS -buq -bwZ -bBC -bGk -bNf -bBv -bXM -ccn -ccA -ccy -aTl -bsz -cdG -cer -cew -ceM -ceV -asU -arB -asw -atb -avl -aMa -crv -aOE -aQc -clz -aMa -aQd -cks -crv -crx -aeI -bBO -bSn -cBl -bSn -cfl -cuK -cuV -cyz -cuV -cNd -cNs -beY -cIM -cgB -btl -bBl -aaU -aaa -aaa -bme -bnY -bpT -bqL -btL -czn -czy -bui -bui -bui -bui -bui -bme -bme -bme -bme -bme -bme -bme -cnG -bme -bOo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(143,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aax -afO -ala -abL -aet -aeK -afU -ahe -aiJ -ahz -ahz -arI -ahz -ahz -aff -aff -aff -aff -aff -ahz -ahz -ahz -aff -aff -aka -aka -aCe -aNB -aDh -aka -aql -aql -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -abp -aQr -beD -cuy -cuy -cuz -aaa -aaa -aaU -aWj -aaU -btT -bxa -bBF -bGy -bNk -bUc -bXM -cco -ccE -btZ -aTl -bsz -cdU -ces -ces -ceN -ceW -cJv -mkx -cJw -cJN -asR -awe -asS -asS -asS -asS -avC -aQe -ckx -cqP -crl -csQ -cqs -cqG -crt -cdm -ctl -cuL -cvd -cAp -cvd -cNe -cNt -beZ -cIS -coz -bty -bBl -aaU -aaU -aaU -bme -bog -bpT -bqM -btL -czm -bui -cOw -bui -bui -bui -bui -bui -bui -bui -bNW -bOa -bOe -bOi -cnd -bOl -cnH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(144,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -adn -ahZ -amP -aea -adQ -ayk -aGZ -aKn -bEG -bEX -bEX -asg -bEX -bEX -aXv -bEM -bEO -bEP -amE -asp -auh -ayG -aNX -aEA -bvi -bvF -bvL -aXn -cBM -bDS -bER -aql -aaa -aaa -aaa -aaa -aaa -aaa -aVs -aVs -aUq -bmO -aUq -aVs -aVs -cuA -cuz -aaa -aaU -aWj -aaU -btT -btT -bBH -btT -bNl -bvB -bXM -btT -btT -btT -cjF -bMX -cdt -cdt -cdt -ceO -ceX -aeI -aQx -asD -asR -asR -avE -avQ -avQ -avQ -avQ -bem -aQe -asR -aSK -aSr -aeI -bxz -bwP -cBn -cBH -ctE -cuM -cvg -cBa -cJk -cNf -cNu -bSy -cIT -coD -bub -bIo -aaU -cNK -aaU -bme -bom -bpT -bqU -btL -czo -bPO -bPT -bQd -bQd -bQr -bJo -bNQ -bNQ -bNQ -bNX -bOa -bOe -bOg -bui -cnf -bme -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(145,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aae -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -adq -aib -asy -aea -ann -azG -aag -ael -agQ -aje -akM -anz -akM -akM -apq -aqZ -avT -avT -aCN -avT -avT -aAb -avT -aCN -avT -avT -aHl -aNY -cBN -cbZ -bEa -amy -aaa -aaa -aaa -aaa -aaa -aVs -aVs -bjO -bmk -bmU -bok -bpr -aVs -aVs -cuA -cuy -cuz -aWj -aaU -aaa -btT -bBV -btT -bNn -btT -bYf -btT -aaU -aVt -adN -bsz -aaa -aaU -cdt -ceP -ceK -aeI -arN -arF -asS -auC -avH -axM -axM -axM -axM -aPh -aQk -asS -aSK -aTW -aVB -cqu -bwR -cBx -cBI -ctG -ctG -cvh -cBm -cJy -cNg -cNs -cIB -cIM -bXX -bty -bBl -aaU -bIm -aaU -blp -bme -bme -brv -btL -czp -bAW -bBm -bui -bui -bQs -bNH -bme -bme -bme -bme -bOb -bme -bOh -cne -bOm -cnH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(146,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -adn -ajh -amP -aea -adQ -ayk -aGZ -aKn -alR -bqQ -aox -anD -aox -aox -aFp -aHh -aJS -aMy -axG -aJS -aHh -aHh -aHh -aCz -aHh -aHh -cBq -aRT -cBO -cca -bEa -amy -aaU -aaU -aaU -aaU -aaU -aVs -bhq -bjY -bka -bmV -bka -bps -ang -ang -ang -ang -cuB -aWj -aaU -aaa -btT -bBX -btT -btZ -btT -aaa -aaU -aaU -aTl -qeq -bPh -guK -hXk -hXk -cJp -hXk -hXk -tjb -asx -asS -auD -awX -axQ -beH -axQ -aZt -avI -beI -asS -aSL -aTZ -aWV -cqv -bwV -cBy -cBJ -cdy -cuN -cvi -cBB -cvi -cuN -cNv -bhT -cIM -bXX -bty -bzr -byT -cfc -bcT -bmf -bon -bpU -brN -btL -czq -bme -bBm -bui -bui -ctV -blp -bme -aaU -aaU -aaU -aaU -bme -bme -bme -bme -bme -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(147,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aax -ajm -aoQ -ach -adQ -aFr -aKg -ahO -aml -abX -akd -aoA -awt -aDb -aqL -anB -alS -aMC -apR -atP -aji -azm -azm -aCB -azm -aRM -bar -aSD -cBP -bDV -bEb -aUq -aVs -aVs -aVs -aVs -aVs -aUq -bhv -bka -bka -bnb -boV -bpt -aRF -cog -bnt -ang -cuC -cuD -cuD -cuy -cuE -cuD -cuy -cuy -cuE -cuy -cuy -cuD -cuG -eUF -bsz -aej -agc -agT -bFg -apm -aqS -arP -cph -asS -auN -avK -axR -aAy -aOk -aOR -aPm -aPm -bBo -aTm -aUb -bAR -bnf -bwR -cBx -cCR -cdz -cPI -cdJ -cdM -cdJ -cdO -cPK -bbY -cIM -bZl -cwO -cyr -cyx -cyr -cyr -cyD -cyJ -cyJ -cyV -cze -czr -bme -bBm -bui -bui -bJq -bme -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(148,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aax -aax -aea -adQ -adQ -adQ -aFt -apv -aiF -amr -aqL -aoy -aoD -aoj -aDm -aqL -aji -aKs -aNl -apU -atP -aji -aBT -buP -aCD -bvl -bvZ -bas -aSD -cBQ -ccb -cBV -aUw -aVx -aWU -aZm -aWU -aVx -bfO -aVx -aWU -bms -bnd -boX -bpH -ang -coh -cfy -bvb -aRu -aSv -aSy -aSw -aTk -aQJ -aQJ -aQJ -aQJ -aQJ -aQJ -aRZ -aVK -cxa -bPr -sVC -aNH -bEr -cJA -aqO -anE -anE -anE -aQT -ayb -axt -aCZ -aRG -aOl -aOV -avQ -cmX -aRp -bkJ -aUf -aeI -bnp -cmO -cfU -cmm -cri -cdH -cdK -cPu -cdr -bqw -cdS -bUs -cIU -coL -cyk -cys -baN -baN -baN -coq -box -box -cyW -cpy -bPD -bAY -bBw -bCA -cql -bJq -bNI -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(149,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aax -aba -aax -aax -aax -aax -aax -adr -ach -adQ -acT -afR -apv -apv -ajb -amt -anH -aAQ -aoG -bvp -aDF -aFk -aHh -aKB -aNu -aou -aou -aji -aBW -aBX -aCF -buX -bAh -bat -aSD -cBP -bDX -cBW -aUq -aVs -aVs -aVs -aVs -aVs -aUq -bhO -bka -bka -bno -boZ -bpJ -apd -bfI -clH -ang -aRX -aSw -aSM -aaU -aTl -aaU -aaU -aaU -aaU -aaU -aaU -aSu -aYU -cxb -bsz -aej -agC -bEK -cJB -apm -aqT -arQ -cpi -asS -aTQ -avU -ayn -aFU -aOq -aOY -aPO -aPO -bCW -bvY -asB -bAR -bnq -bEW -bQF -cah -cdA -cPJ -cdL -cmv -cdL -cdQ -cPL -bUD -cIV -coN -cyl -bzI -bHn -bzI -bzI -cor -boy -boy -cyX -btO -bPE -bme -bBm -ccx -bui -bJq -bme -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(150,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aax -abb -abs -abs -abu -cqV -acg -ach -adQ -adQ -adS -adS -adS -adV -ajd -ajj -aqL -azr -bwl -bEn -anJ -aqL -awh -amx -aNU -aqj -aji -aji -aFV -aiv -aMj -amA -bDu -bat -aSD -cBR -cbZ -cBX -amy -aaU -aaU -aaU -aaU -aaU -aVs -bid -bkv -bka -bnw -bka -brA -ang -ang -ang -ang -aaU -aaU -aaU -aaU -aTl -aaU -aaa -aaa -aaa -aaa -aaa -bgh -bGQ -bIT -bPX -aaU -atF -atF -cJC -atF -atF -arO -asC -asS -auY -azE -ayo -bCb -ayo -bei -avV -aQs -asS -bwJ -bfn -aXh -cqw -bSx -bQG -cbd -cdB -biL -bkD -cop -bkD -biL -boa -bhT -cIW -cIZ -cym -bzU -bzV -cuo -bcT -bnO -boz -bqp -cyY -btL -bPF -bme -bBm -ccx -bui -crj -blp -bme -aaU -aaU -aaU -aaU -bme -bme -bme -bme -bme -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(151,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aTd -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aax -abg -abt -abt -abK -cqV -csb -ads -ajK -adQ -adS -aeG -adS -afd -ajI -afK -aqL -aqL -aqL -aqL -aqL -aqL -afK -amy -aOD -aql -awB -boO -aAp -aCn -amA -bvD -amy -bas -aSD -cBN -cca -cBX -amy -aaa -aaa -aaa -aaa -aaa -aVs -aVs -bkw -bmt -bnB -bmt -bpZ -aVs -aVs -aaa -aaa -aaa -aaa -aaa -aaU -aTl -aaU -aaa -aaa -aaa -aaa -aaa -bsz -aTl -cxc -aaa -aaa -aRD -ciT -cJD -cmu -atF -arY -awW -asS -avc -awa -clA -aLF -axM -axM -aPP -crs -asS -cpj -aUr -bmT -cqx -bwP -bQH -cdj -cdC -biQ -cjY -cot -blt -cse -bob -cjz -bjm -cIM -cym -bIp -aaU -bIx -aaU -blp -bme -bme -cyZ -btL -bPG -bBa -bBm -ccx -bui -bJR -bNJ -bme -bme -bme -bme -bOb -bme -bOi -bOj -bOl -cnH -cnE -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(152,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aax -aax -aax -aax -aax -apv -crS -adS -adS -aeW -adS -apo -adS -axL -agZ -aeZ -agm -aqW -ahX -aiU -afZ -agl -apW -amz -amz -aqm -amz -amz -aAq -bGa -bGG -bGG -cAY -cBq -aRT -cBS -cBU -cBY -aqn -acK -acK -acK -aqn -aaa -aaa -aVs -aVs -aVs -bnB -aVs -aVs -aVs -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aTl -aaU -aaa -aaa -aaa -aaa -aaa -bsz -aTl -cxc -aaa -aaa -atF -ciU -cJE -cJG -cJI -cJK -cJL -cJO -asR -aOQ -bev -cbJ -aOx -aPc -beq -aQe -asR -crw -aUt -bpK -cqy -bEW -bQF -cdk -bmQ -biR -bjy -cou -csd -byr -bob -bhY -bXW -cJa -cyn -bQR -aaU -cNL -aaU -bme -bpi -bpT -cza -btL -bPH -bBc -bBM -ccx -bui -bui -bJR -bNR -bNR -bNR -bNY -bOa -bOe -bOg -bui -cnf -bme -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(153,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaU -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aYp -cdc -crR -adT -aeo -afm -aiA -apt -bve -afS -ahK -aix -ajM -akH -akH -asP -akH -akH -bhj -bEJ -cfS -bEJ -cml -amA -amA -amA -aMl -bcW -bvH -bvL -aXn -cBM -bDY -bEd -aqn -cCd -aRE -aSY -acK -aaa -aaa -aaa -aaU -anK -cAL -anK -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aTl -aaU -aaU -aaa -aWR -aaa -aaU -bsz -aTl -cxc -atF -atF -atF -cmh -cmp -atF -atF -asi -asi -cJP -asR -awe -clB -asS -asS -aPd -avC -aQe -aRR -cpj -aSr -aeI -bQq -cqI -bQM -cdl -cdu -cdN -ciK -ctd -cwC -bmw -bob -bia -bXX -cIM -bty -bIp -aaU -aaU -aaU -bme -bog -bpT -czb -btL -bPI -bUx -bUx -ccK -cOw -bui -bui -bui -bui -bui -bNZ -bOa -bOe -bOh -cnc -bOm -cnH -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(154,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -agd -cdc -crR -adT -aeE -afm -afm -apT -adS -bEu -aif -afa -aha -ahx -ahx -asT -ahx -ahs -afK -aGR -aAa -are -cmo -avP -aAW -aDq -aNn -bvh -aql -aCe -aYK -aDr -aci -aqn -aqn -aRj -aND -aVX -anK -anK -aHA -aHA -anK -anK -cAM -bCM -anK -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aWj -aTl -aWj -aMI -cgd -bwW -beE -bwW -bsz -aTl -cxc -atF -aus -aus -aus -aus -cmw -atF -asv -asN -cJQ -avA -azh -aOd -aOM -aOC -aPe -clC -aQC -aRV -cJl -cko -aeI -bpv -cqJ -cdg -cds -cdv -biQ -bXf -bkG -cwP -ctn -bob -bib -bXX -cIM -bty -bIp -aaU -aaa -aaa -bme -bpj -bpT -czc -cze -czs -czy -bui -bui -bui -bui -bui -bme -bme -bme -bme -bme -bme -bme -cnG -bme -bOo -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(155,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aYp -cdc -crT -adT -aeF -afp -aiV -anv -aec -axS -aif -afK -ahb -ahx -aia -atm -alX -ahx -arx -amF -afK -aka -cmA -aka -aka -aka -aka -aka -aka -aLU -aNE -aRd -acK -aHL -aIN -aMK -aOc -aSA -aTo -aTt -aTJ -bsR -bCG -bCK -cAN -bCN -anK -aaa -aaa -aaa -aaa -arE -arE -arE -arE -bxP -arE -aMI -cgX -bim -cik -bwW -bsT -bGQ -bHe -bHA -aus -bcM -cmi -cmq -aus -atF -aqU -asG -cJR -aws -aqU -aqU -aMz -chE -cie -cjK -ckm -cnh -ckm -ckm -ckm -ckm -cqK -cru -csz -cdw -biQ -biQ -biQ -biQ -biQ -boc -bzV -bYm -cJb -bzV -bUn -aaU -aaa -aaa -blp -bme -bme -blp -btL -bPH -bBe -bui -cma -bHt -bHt -bme -bme -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(156,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaU -adq -adq -adq -aec -afM -agx -aja -aoM -aec -agi -aif -afK -ahc -ahx -ahx -ajs -atO -ayl -bml -ary -afK -atR -cmC -aSU -aka -aER -aFO -aGF -aKf -aMb -aPl -aRf -adR -arX -aKj -aVy -aRx -aSF -aTr -arH -aVa -aIK -aKk -aTU -cAO -cCA -anK -aaU -aaU -aaU -aaU -arE -bGJ -bFe -atf -bxS -bzo -aMI -cgY -bwW -cil -bwW -bwW -bCj -anr -bHO -aOP -biu -cmj -cmr -cmx -atF -cfv -asI -cJS -clx -awA -chl -aNx -chF -cir -cjL -ckB -cno -cpa -cpR -cqa -ckm -ckm -csq -ckm -bUN -biV -cKg -cLn -cLz -bmz -biV -cdP -bXX -cIM -bqE -bcT -aaU -aaa -aaa -aaU -aaU -aaU -blp -cmy -cmz -blp -cqU -blp -bme -bme -bme -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(157,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aec -aec -bEp -bEp -bEp -bEp -bEp -aif -afK -ahd -ahx -ahx -ajD -atC -ahx -bmr -bPu -ciN -cly -aCv -cwZ -aka -aEX -aFQ -aGI -aKf -aMb -aPx -aLj -anh -azo -aKp -aND -aND -aWH -aHx -asc -aWn -bvG -aKl -bCQ -cAP -anK -anK -arE -atf -aKT -arE -arE -att -cqr -arE -byv -bAN -aMI -cgZ -cif -cim -cmD -ciS -bCj -anr -bHO -aus -blX -cmk -cms -aus -atF -ast -asI -cJT -cJZ -cKa -cKb -cKc -chG -ciD -cjU -ckC -cnr -cpk -cpS -cqc -cqA -cqL -css -ckm -bUO -cdR -ciL -cLr -cwQ -bPx -bod -beW -bXX -cIM -bqD -bcT -aaU -aaU -aaU -aaU -aaU -aaU -bxw -bza -bMQ -blp -cnf -cdd -aYp -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(158,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -abp -aaa -aTd -aaa -abp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaV -aaV -aaV -abe -aeP -agX -ajS -aHj -bvm -ahP -aif -afK -afK -ahT -ahx -ahx -ahx -ahx -bvo -amM -apW -ars -cwN -azR -aBG -aEY -aFR -aGU -aKm -aMc -aPx -aRg -aGH -aIf -aLs -aRA -bkT -aWJ -aHz -btb -aWn -bvR -bCI -bDJ -cAM -bCP -boA -aYC -brf -att -att -att -btP -bwo -arE -bAd -arE -aMI -cha -cig -cck -bwW -ciV -bCj -anr -bHO -aus -aus -aus -aus -aus -atF -asI -asI -cJU -avw -bRd -azg -aNQ -chI -ciH -cjX -ckF -cns -cpo -cpT -cqn -cqC -cqM -cst -ckm -bUG -cfn -con -coo -cwR -bPy -bVY -bWn -bYO -cJc -bXb -bcT -bpP -bpP -bpP -bpP -bpP -bpP -cro -bza -bMQ -blp -ctH -cdd -csc -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(159,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaV -aaU -aaU -aaU -aaV -ahP -ahP -ahP -bzp -ahP -aif -aiB -afK -ahU -ait -ajE -amC -ahx -bvo -aIm -apW -arv -aub -azS -aBG -aEZ -aFS -aHd -aKr -aMf -aPy -aRi -aqc -aqn -aci -aci -aci -aXQ -aHy -bDc -aWw -aWy -aYm -aYD -aYE -aYF -beQ -bjw -bwu -bnl -bwp -bwM -bxq -byt -byu -bAz -ceQ -cgT -chc -bmY -ccI -bmY -anm -asu -anr -bHO -atF -atF -atF -atF -atF -atF -aqU -asM -cfL -aqU -aqU -aqU -aqU -chK -chK -ckm -ckm -ckm -cpA -cpU -cqo -cqD -cqO -ckm -ckm -bjZ -blq -bCz -bCz -cgc -cxi -cAA -cAI -cAZ -cJd -cBp -ccV -cIt -cIu -bMq -bJl -bLK -bYe -bHL -bYt -bYD -blp -crU -cdd -aYp -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(160,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaV -aaU -aaa -aaa -aaU -ahP -akn -aJR -bEg -ahP -aoJ -ass -afK -afK -afK -afa -afa -anF -bvq -afK -aAa -aka -atS -aka -aql -aFa -aFW -aHm -aKf -aMr -aPA -aLj -aPx -aTN -avm -aVH -aWX -aZF -anK -aHz -aWx -aTr -boA -cAF -bCL -boA -anK -bqb -avm -brj -bsO -avm -bVz -bVK -bGX -cbR -ceS -bmW -chv -bwW -cin -aMD -arp -bCk -aqk -bRn -qlJ -qlJ -bcG -cmt -auR -aYL -cfw -bap -cJW -bcI -bbF -bbN -bbN -bbO -bbL -bcb -aaU -ckm -cpF -cpV -cqp -cqE -crb -ckm -bgl -bgl -bjb -bjb -bkI -cic -cxj -biV -bie -bZl -cqQ -bqD -cBr -aRY -bcE -aRY -aRY -btz -cOe -btB -btB -btA -blp -blp -blp -blp -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(161,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -abc -aaU -aaa -aaa -aaU -aio -akZ -biO -bEt -bEA -aik -ajl -ajP -alh -aqN -ato -aut -ayw -bDB -bSu -cjm -asm -aqo -aAo -bDi -aFb -aGf -aHw -aKu -aME -aPC -aRk -aSI -aSI -aUJ -aVU -aVU -aZH -bch -bea -bfS -biX -bkK -bmA -bnE -bch -aSI -bqk -brg -bry -btq -avm -aMI -aMI -bwW -bwW -bwW -aMI -chw -bwW -ciq -bwW -ciV -bwW -aaU -bsT -bRo -bRp -anr -bcI -bgw -bgw -bgw -bdk -cJX -bcI -bbJ -bbF -bbN -bbN -bbN -bbO -bbV -ckm -cie -ckm -cqq -ckm -crm -ckm -bgn -bhn -cuO -bhn -bhn -cic -cDi -biV -bdH -bWO -cqR -bqE -cBr -aST -bcF -ckc -bnQ -btA -bMQ -bta -bta -bta -bta -bta -aaa -aaa -aaa -bNK -bNS -bNU -aaa -bNK -bNS -bNU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(162,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aao -abj -ado -aaa -aaa -aaU -aio -alb -aKe -bEw -ahP -bEB -bGo -afA -ahN -aiC -alz -avt -azx -bEv -bZM -avt -avd -bDp -bDv -aiC -aFd -aGj -aHB -aKz -aMM -aPG -aRn -aSO -aUa -aUN -aWf -aWY -aZL -bcq -bcq -bgb -aSO -bkQ -bmB -bnF -bpc -bqa -bnF -brh -brE -btt -btJ -bmS -bwq -bwX -bwX -bzL -bwX -bBp -bwW -ciq -bwW -ciV -bwW -aaU -aaa -aaa -bsz -cJx -cJF -bRA -cJJ -bsX -cJM -cJY -bcI -bbJ -bbL -bbN -bbN -bbN -bcb -ciI -bjI -bkB -bmP -bKj -bbV -bfG -bge -bgB -bho -bjc -bjK -bkI -csm -cxk -biV -cvN -bjm -bXX -bqD -cBs -aTc -bdL -biE -bpV -bLZ -bNt -bta -btQ -bxN -bDh -bHM -aaa -aaa -aaa -bNK -bYQ -bNU -aaa -bNK -bYQ -bNU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(163,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aao -abj -ado -aaa -aaa -aaU -ahP -alf -afh -bEy -ahP -aiz -aiz -aiz -ahN -aiC -ake -avt -aDD -aqp -aui -aAm -bvw -bDq -aul -bDA -bDA -bDA -bDA -avm -aMO -aLr -aRs -aSS -and -amY -amY -amY -amY -amY -amY -bvu -aJd -aKQ -aJd -aKQ -aJd -aJd -bql -bri -brW -btu -bsO -aMI -aMI -aMI -bAk -aMI -aMI -bzn -aMD -ciq -bwW -ciV -bwW -aaU -aaa -aaa -bsz -anr -bcI -sdp -bUX -bgw -uwK -bhm -bcI -bbL -bbN -bbN -bbN -bbN -bbO -bcl -bAa -bkM -bja -bKB -bcl -bfG -bge -bge -bge -bge -bge -bge -cwS -cxl -biV -bdI -cNx -bXX -bqD -cBr -bcu -csS -biH -bnQ -btB -bNV -bta -bzd -ceh -bzd -bHM -aaa -aaa -aaa -bNK -bYQ -bNU -aaa -bNK -bYQ -bNU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(164,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aao -abj -ado -aaa -aaa -aaU -ahP -ahP -ahP -ahP -ahP -aaU -aaU -aiz -ahN -aiC -alc -avu -aDD -aqx -awv -bvr -bDn -bDr -bDx -bDC -bDF -bDE -bDK -avm -aMT -aLr -aRt -aTe -amY -aBq -aCQ -aFe -aCJ -bFn -bFn -aJd -aJi -aKU -cCs -aLD -aLR -aJd -aZD -bwE -bIX -csB -bwj -bmW -bEQ -bxb -aNW -cCF -bmW -bzn -bwW -ciq -bwW -ciV -bwW -aaU -aaa -aaa -bsz -anr -bcI -aXp -bVb -cfx -bhs -bmm -bcI -aaU -aaa -aaa -aaa -bbV -bbV -bbV -bhk -bwi -blN -bKX -ciI -bfG -bbV -bgH -bhp -bjd -bZi -boG -cxe -cxm -bgf -cIC -bjm -bXX -bqD -cBC -bcv -bdL -bkf -bWY -btC -bPm -bta -btV -cfG -btV -bta -aaa -aaa -aaa -bNK -bYQ -bNU -aaa -bNK -bYQ -bNU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(165,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aao -abj -ado -aaa -aaa -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aiz -amw -aiC -ald -avZ -aGY -aqQ -ayc -bvA -bZN -bDs -aaB -aEg -bDG -bDI -bDK -avm -aMW -aLr -aRK -amY -amY -aBs -ane -anp -aCJ -bFn -bFn -aJd -bfH -bdq -bet -bmu -aUs -buQ -bvk -bwF -bVi -cvJ -bwn -bmW -bws -aNW -bxd -bBK -bAS -bCq -bwW -ciq -bwW -ciV -bwW -aaU -aaa -aaa -bsz -anr -bcI -bcI -cwy -bcI -jMO -bcI -bcI -aaU -aaa -aaa -aaa -bbV -bfN -bhk -bhk -bwt -bja -bLn -bbV -bfG -bbV -bgI -bDl -cuP -bjM -ccW -cgs -cxn -bgf -bBU -bnN -crc -buw -aRY -bcD -bcF -bkz -bnQ -btD -bPm -bxH -bzc -bBg -coW -bxH -bxH -aaa -aaa -bNK -bYQ -bNU -aaa -bNK -bYQ -bNU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(166,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aao -abj -ado -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaU -aiz -amD -aiC -afV -amK -aHc -bEH -azV -bvC -cbQ -bDs -bDz -aNe -bDH -bDA -bDA -avm -aNs -aLr -aRN -aSe -aAC -aAD -anp -ane -aCJ -bGe -bFn -aJd -aJl -aKV -bfz -bmx -aLp -aML -aZe -bhF -bXc -bhG -bhH -bhL -bio -biD -cAq -bkE -bmW -bBq -bwW -ciq -aMD -ciV -bwW -aaU -aaa -aaa -bsz -anr -aaU -aaa -cwz -aaa -jyu -aaa -aaa -aaU -aaa -aaa -aaa -bbV -bgg -bgK -bhk -bwG -bja -bLv -bbV -bfG -bbV -bjf -bkh -blu -ciI -ccZ -cgs -cxo -bgf -bgf -bez -cxB -bhf -aRY -aRY -aRY -aRY -aRY -btz -bPn -btE -bzk -crp -bBf -bDf -bHM -aaa -aaa -aaU -avr -aaU -aaa -aaU -avr -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(167,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -adx -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaU -asd -ahN -aiC -alH -amK -aDD -aqp -aAg -bCJ -cjn -bDt -bDA -bDA -bDA -bDA -aHC -aKW -aNt -aLr -aRN -amG -aAD -aBs -awP -anp -aCJ -bFn -bFn -aJd -bDe -aKX -bet -bmX -aLS -aML -baY -bwO -bEi -cwt -czQ -czX -cAd -cAn -cAr -bkL -bmW -bBr -bwW -ciq -bwW -ciV -bwW -aMD -bwW -aaa -bsT -bHe -bRo -bRp -aaa -cwD -jyu -aaa -aaa -aaU -aaa -aaa -aaa -ciI -bgv -bhk -bhk -bxe -bja -bLA -bbV -bfG -ciJ -bUk -bUH -bVg -bVn -cfd -cgs -cxp -ckq -bgf -beB -cxC -bgq -cjA -biy -bjN -bkO -biZ -bXY -bPm -bxH -bFF -csU -bBg -bDg -bHM -aaa -aaa -bNK -bNS -bNU -aaa -bNK -bNS -bNU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(168,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aao -abj -ado -aaa -aaa -aaa -aaa -aaa -aaa -cjj -cjj -cjj -cjj -cjj -ahN -aiC -aiC -amL -aQZ -aqx -bvw -bvw -bvw -ant -aoN -aJH -anS -amc -aHX -aLd -aNE -aPJ -aRN -amG -ane -anp -csy -aBs -aCJ -aCJ -amY -bvu -aJd -aKQ -bfB -brt -aJd -bvu -bAO -bxc -bFd -czN -czR -buh -bwv -bxh -byP -bkN -bmN -bng -bnM -boh -bpI -bqg -bqu -bra -bwW -bwW -aaU -bdR -cJr -bTJ -aaa -aaa -cPz -aaa -aaa -aaU -aaa -aaa -aaa -bbV -bbV -bbV -bhk -bwt -bBi -bLO -bbV -bTV -bgf -bTk -bUR -cfO -cja -cja -boj -cxq -cxv -bgf -brQ -cxC -bgq -bhX -biz -bjP -cJi -biZ -btz -bPm -clW -bPM -bzd -bBg -bDh -bHM -aaa -aaa -bNK -bYQ -bNU -aaa -bNK -bYQ -bNU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(169,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aao -aaO -ado -aaa -aaa -aao -abj -ado -aaa -aaa -aao -aaO -ado -aaa -cjj -cjk -anb -ajo -ajV -anG -aro -avb -awb -awI -amc -agU -air -aZK -anN -awD -aoO -azT -bso -aIb -aLe -aNP -aPL -aRP -aKq -aLM -aMu -aNy -aSd -aTq -aVY -aJj -aJd -btm -bdo -bet -bse -aMd -aJd -bdA -bxg -bvs -aMA -czS -buW -bwx -aMA -aMA -aMA -aWE -bzn -bwW -ciq -bwW -ciV -bwW -brr -bCr -cwv -bAQ -bAQ -cJs -bUV -caf -bam -cPA -bam -bYl -bam -bam -bam -bam -bbX -bbX -bcn -cnv -bxL -cpW -bLP -buH -bBz -bPY -bUd -cdx -cga -cgq -cgq -bzw -cxr -cxw -cxx -cxz -cxD -cxF -bhX -biJ -bjQ -ccF -biZ -btz -bPm -bxH -bSf -bzd -bQD -bxH -bxH -aaa -aaa -bNK -bYQ -bNU -aaa -bNK -bYQ -bNU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(170,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aao -aaP -ado -aaa -aaa -aao -abj -ado -aaa -aaa -aao -aaP -ado -aaa -cjj -agG -aiu -ajv -akb -anZ -arG -avf -awf -awU -amc -awV -aoO -aqq -aqq -avh -azX -aCV -cra -aIp -aLh -aOf -aPQ -aRS -amY -aAF -aMv -aDI -aBs -aAD -aBs -aGB -bsS -bvT -bdp -cAJ -cAR -buZ -aJd -bhe -bxp -bvx -aMA -czT -bva -bwy -bxi -cCE -cAw -aWF -bBD -bmS -ciM -bmS -ciX -bmY -brP -brX -bsh -bsu -bsx -cJt -sVC -cdp -sVC -cPB -sVC -bZp -sVC -sVC -sVC -frb -bvM -bvW -bvX -bwd -bxU -bBT -bLQ -bLT -bQh -bLT -bLT -cdF -bVl -bZd -cfX -ciP -cjB -cgt -bcl -bfc -bgs -cxG -bif -cnA -csg -btW -biZ -bUW -bRr -bxH -bzj -bzW -bBx -bxH -aaU -aaa -aaa -bNK -bYQ -bNU -aaa -bNK -bYQ -bNU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(171,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -ahv -aaa -aaU -aaa -aaa -aaa -aao -aaP -ado -aaa -aaa -aao -abj -ado -aaa -aaa -aao -aaP -ado -aaU -cjj -amO -afo -cjl -cjj -bGq -bEf -avm -awb -awI -amN -anM -aoO -aoO -aoO -aoO -aoO -aFI -amc -aIt -aLj -aOg -and -aoE -amY -aAG -ane -aEi -aAD -aBs -aAD -aMV -aNq -aOi -bdp -bfK -bsW -cCB -aJd -bhi -byM -blP -aMA -czU -czY -cAe -bFz -cAs -cAx -bhU -biN -biY -bne -cAz -bqf -bqH -brY -bsi -bsv -bsy -bsy -bsD -bsI -bRv -bsD -bww -bsD -cPE -cPF -cPF -cPF -cPG -bBL -bBL -bCm -bwg -bzC -boC -bLR -bTx -bUb -bUh -bUm -bUZ -bVm -cbM -cfY -cJz -cjC -bhr -ckv -bdV -bgt -cxC -bhX -biJ -bjQ -ctu -biZ -btz -bPm -bxH -bxH -bxH -bxH -bxH -aaU -aaa -aaa -bNK -bYQ -bNU -aaa -bNK -bYQ -bNU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(172,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -cnM -abM -acj -aaU -aaa -aaa -aaa -aao -aaP -ado -aaa -aaa -aao -abj -ado -aaa -aaa -aao -aaP -ado -aaa -cjj -cjj -cjp -cjp -cjp -aoK -aoK -aoK -awb -awI -amN -aii -aoO -aqr -aSR -awE -aoO -brx -amc -aIw -aLj -aOj -amY -aoZ -anp -ane -anp -aDI -aBs -aAD -aBs -aHe -aJd -bmI -aZi -bfL -btM -bvf -aJd -bhw -byO -bBb -aMA -btc -czZ -cAf -bVH -bwA -bAj -aMB -bzn -bwW -cgY -bwW -cil -bmW -bCt -aMI -aMI -aaa -aaa -aaa -bfW -bJv -aaa -cwI -aaa -cbG -aaU -aaa -aaa -aaa -aaa -bbV -bhu -bhr -bbT -bdZ -brR -bbT -bUf -bbT -bbT -bbT -bUP -bbT -bbT -cJV -bbT -bbT -bbT -brQ -bgt -cxH -cxN -cxP -cxQ -cxU -cxW -cxX -cPN -clX -bZu -cmM -bYn -bZt -bHN -bHN -bHN -bNL -avr -aaU -aaU -aaU -avr -aaU -aaU -aaU -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(173,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aav -abR -acj -aaU -aaa -aaa -aaa -aao -aaP -ado -aaa -aaa -aaU -adx -aaU -aaa -aaa -aao -aaP -ado -aaa -aaa -aaU -aoK -asA -atu -aue -auO -arM -awb -axa -amc -anO -arn -aqt -atX -ayV -aJJ -brC -bsq -aIy -aLo -aOm -amY -aqd -ane -aBS -aBV -aEk -aBV -aBS -aAD -aHf -aJd -aJd -bco -aJd -aJd -aJd -bvu -bdA -bxp -bvs -aMA -aNc -bvQ -cAg -bxr -byY -cvP -aMB -bzn -bjz -cgZ -bzH -bJS -bmW -bmW -aMI -aaU -aaU -aaU -aaU -bfW -opd -aaU -cwJ -aaU -cbG -aaU -aaU -aaU -bbT -bbT -bbT -bbT -bbT -bbT -bkm -brV -cPH -bfU -bFD -bgO -cqt -bUQ -cvj -cDg -cKd -ben -bor -bcV -bfe -bgt -cxI -ctv -biM -bjS -bkS -cpJ -btF -cxY -bZt -bZv -bYn -bYn -bZy -bHN -bHz -ckn -aqA -bNL -bNL -bNL -bNL -bNL -bOf -bOk -bOk -bOq -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(174,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaD -abM -acm -aaU -aaU -aaU -aaU -aao -aaP -ado -aaa -aaa -aaU -adx -aaU -aaa -aaa -aao -aaP -ado -aaU -aoK -aoK -aoK -asE -atw -atw -atw -arM -awg -axb -amc -amc -amc -amc -amc -azF -aJY -brD -bsr -aIB -aLj -aOy -amY -apw -anp -aBS -ayy -aEj -ayy -aBS -aBs -aHi -aJk -aJd -bdm -aLA -aJd -aMk -aMk -bdA -bxp -bvI -aMB -aMA -aMA -cAh -aMA -bzf -bAp -aMB -bzn -bxG -bxF -bxG -bXs -cii -cjg -cji -aaa -aaa -aaa -aaa -bgi -fui -aaa -cwK -aaa -cbG -aaa -aaa -aaa -cmH -crh -bVx -bVw -bVy -bVw -cwc -buz -bAu -bCx -bPZ -bUl -bVc -cte -cvk -cDm -cvk -ctp -ctq -bkX -ctr -bZw -cxJ -bez -biZ -biZ -biZ -biZ -btz -cxY -bZt -bZt -bZx -bZt -bZt -bHN -bHP -bHN -bNL -aaU -aaU -aaU -aaU -bOc -aaU -aaU -aaU -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(175,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaY -abV -acq -acJ -adk -adG -aaU -aaU -aaT -aaU -aaU -aaU -aaU -aaT -aaU -aaU -aaU -aaU -aaT -aaU -aaU -aoS -aqe -aqe -asQ -atx -auf -auU -avp -awi -axd -ayv -azD -ayv -aBD -aCx -aDw -aEl -aFg -aGk -aIW -aLq -aOG -amY -apa -ane -aBS -ayy -bvE -ayy -aBS -aAD -aHJ -amY -aJd -bds -bfQ -bug -buL -buL -bhC -byS -aMn -aMD -bEj -bvU -cAi -aMA -bzg -aMA -aMB -bzn -bwW -bxF -aMD -bEL -bAK -bjz -aMI -aZG -aaa -aaa -aaa -bgi -fui -aaa -cwI -aaa -cbG -aaa -aaa -aTx -bbT -bbT -bbT -bbU -bcV -crd -bej -bej -bfs -bfY -bej -bla -bVh -ctf -bkc -bcV -bcV -bnh -bnh -bcV -bcA -bgZ -cxK -ctw -bjl -bGC -bpQ -bpQ -cOa -cPO -cya -cya -cya -cya -cye -bHN -bIy -bHN -bJQ -bJQ -aaa -aaa -bNK -bYR -bNU -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(176,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -cpB -aaa -aaa -aaa -aaU -abr -abM -abr -abM -adl -abM -aZG -aaU -aaV -aaV -aaV -aaV -aaV -aaV -aaV -aaV -aaV -aaV -aaV -aaU -aTx -aoK -aoK -arK -asZ -aty -auj -auX -avq -awj -axn -ayx -azH -aAr -aAr -aCI -aDy -aEn -aFs -aAr -aIY -aLr -amG -amG -apL -anp -aBS -aBu -aEj -aBu -aBS -aBs -aGB -aJf -aJd -bdw -bfT -aJd -aMk -aMk -bdA -bzQ -ccl -czO -czV -czV -cAj -bxs -bzl -bkg -bPq -bzn -bwW -byW -bCB -bIC -bVj -cip -cpE -aaa -aaa -aaa -aaa -bgi -fui -aaa -cwK -aaa -cbG -aaa -aaa -aaa -cpp -cgj -cgk -cgj -bcj -cgj -ben -bej -cqF -bfZ -bej -bAB -bVk -ctg -cjd -ctm -blQ -bbw -bci -bci -bfP -cqj -cxL -bir -biZ -cjt -bXE -bLZ -bLZ -bYh -bYn -bYn -bYE -cni -cyf -cgy -bIz -cmc -ceJ -bJQ -aaa -aaa -bNK -bYR -bNU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(177,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -abD -abW -acr -acW -adw -adH -aaU -aaU -abc -aaU -aaU -aaU -aaU -abc -aaU -aaU -aaU -aaU -abc -aaU -aaU -aoT -aqy -arL -asZ -atD -auk -atD -avs -awl -axq -ayB -avb -aAs -aBJ -awp -awx -aEr -aFx -aGl -aIZ -aLr -amG -ane -anp -ane -azt -aBv -aEj -aFh -aKN -aAD -aGN -aJg -amY -aOt -bfV -amY -aMs -aMs -bhD -aOA -bvN -aMs -bmo -cAa -cAk -bxy -bzi -cAy -bTU -bzn -aMD -bzh -bwW -cih -aMI -aMI -aMI -bLw -bMM -bMM -bMM -ifC -bJv -aaU -cwJ -aaU -cbG -aaU -aaU -aaU -bbT -bbT -bbT -bbT -bbT -bdT -beX -beU -beU -beU -beU -bLu -bVr -cth -cje -csv -bcV -bby -bck -bdM -bdM -bhb -bhM -bis -bjn -bjn -bXF -bjn -bjn -bjn -bjn -bjn -bjn -bjn -cyg -bGF -bIA -bIB -bNO -bHN -aaa -aaa -bNK -bYR -bNU -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -abp -aaa -aTd -aaa -abp -aaa -aaa -aaa -cpB -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(178,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -abE -abM -acx -aaU -aaU -aaU -aaU -aao -abj -ado -aaa -aaa -aao -abj -ado -aaa -aaa -aao -abj -ado -aaU -aoK -aoK -aoK -atd -atE -aum -ava -avs -awp -axD -ayE -awp -awp -awp -awp -aDA -aEt -aFA -aGm -aIZ -aLr -amG -anp -aBS -aBS -aBS -ayy -aEj -ayy -aBS -aBS -aLG -aJh -aLN -aOu -cCt -beA -aMt -aNw -bhE -btg -bvO -bwb -aMs -cAb -cAl -bhA -bgP -bzO -caD -bzn -bjz -ciG -bAK -ciV -aMI -aaa -bJj -bLS -kxw -kxw -kxw -bPA -wPS -aaa -cwI -aaa -cbI -mIT -cJr -aaa -aaU -aaU -aaU -aaU -bbT -bbT -bbT -bfE -bih -bkb -bkj -bkY -bVs -cti -cje -cto -bcV -bcV -bcm -bdV -bdM -cqk -bhP -biv -ciR -bjT -bXG -clV -bjT -cjf -btH -btX -ckE -bjn -cyf -bHN -cnS -bKZ -bNP -bHN -aaa -aaa -bNK -bYR -bNU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(179,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aav -abR -acj -aaU -aaa -aaa -aaa -aao -abj -ado -aaa -aaa -aao -abj -ado -aaa -aaa -aao -abj -ado -aaa -aaU -aaa -aoK -ate -atG -auq -atG -avx -awp -axE -ayH -azM -aAt -awp -aFl -aDC -axU -aFB -awx -aIZ -aLr -amG -ane -azt -azu -aAH -aBv -aEk -ayz -azu -azu -aKN -aJm -amY -aQy -bgo -amY -amY -amY -bfX -btr -bvP -bwc -bmo -bwk -bwH -bxG -bzm -bAx -bBh -bBG -bAK -ciO -bAK -ciV -bAS -aaa -bJv -bMp -cwA -cwA -cwA -bgM -cwA -cwA -cwL -cww -cbL -cww -bdR -mIT -mIT -mIT -mIT -cJr -aaa -aaU -bbT -bgk -bbT -bkd -bbT -cea -bVG -cgn -cje -blb -blR -bni -bcA -bdM -bdM -cNA -bhb -ciE -cmT -cnB -csh -cHV -cPM -bjn -btI -buc -cme -bjn -cyf -bHN -bHN -bHN -bHN -bHN -aaa -aaa -bNK -bOd -bNU -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(180,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aav -abM -acz -aaU -aaa -aaa -aaa -aao -abj -ado -aaa -aaa -aao -abj -ado -aaa -aaa -aao -abj -ado -aaa -aaa -aaa -aoK -atg -atG -aur -atG -avz -awx -axU -ayL -azO -aAu -awp -aCP -aDG -cPr -aFD -awp -aJa -aLr -amG -anp -aBS -ayy -ayy -aBS -bAZ -aFn -aFY -aFY -aFn -aJo -aLP -aMJ -bgp -buT -cCC -buN -bDj -bur -bvS -bwe -aMs -bmW -bwI -aMI -ceG -bAK -aMI -aMI -aMI -cjc -aMI -cnt -aMI -aaa -bJv -bMp -cww -bMY -bMY -bPB -xoj -cwx -cPC -cww -cbN -cww -aaU -aaa -aaa -aaa -aaa -anr -aaa -aaU -bbT -bEk -bfD -bVd -bkX -bUT -bXw -chd -cki -ctt -blS -bnn -bcA -bdM -bdM -bdM -bhP -biv -cDz -cDA -cDD -bnX -bjn -bjn -bjn -bjn -bjn -bjn -cyh -boI -aaU -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(181,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aRv -aaa -aaU -aaa -aaa -aaa -aao -abj -ado -aaa -aaa -aao -abj -ado -aaa -aaa -aao -abj -ado -aaa -aaa -aaa -aoK -ath -atG -auu -atG -avB -awx -axU -ayP -azU -aAE -awp -aCR -aDH -aEz -aFH -aGw -aJb -aLt -amY -anY -azt -azu -azu -aBv -aEk -ayz -azu -azu -aKN -aAD -aMe -bdB -bgr -buU -byo -apV -bgj -buu -bvV -aMs -aMs -aaU -bCU -aMI -ceG -bAK -bAS -aaa -aaU -aaa -aRv -aaa -aaU -aaa -bJv -bMp -cww -bMZ -bMZ -bPC -uAY -cwF -cwM -cww -cge -cww -aaU -cak -cam -cak -aaa -anr -aaa -aaU -bff -bgQ -bff -bgQ -bff -bfC -bYM -bjo -bkk -ctx -blV -bny -bdK -bma -bfR -bhd -bhQ -bpl -bjn -bjn -bjn -bjn -bjn -bRt -bxO -bzs -bzZ -bBy -cyi -boI -boK -boK -boK -boK -boK -boK -boI -aaU -aaU -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(182,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aao -abj -ado -aaa -aaa -aao -abj -ado -aaa -aaa -aao -abj -ado -aaa -aaa -aaa -arM -ati -arM -atG -atG -avD -awx -axY -ayZ -azW -aAT -aBO -aCS -aDJ -aEB -aFJ -awp -aJs -aLz -amY -anp -aBS -aBS -aBS -ayy -aEI -ayy -aNa -aSC -aSC -aTB -aUx -bdX -bhV -buY -bMm -amY -aMs -buI -aMs -aMs -aaU -aaU -bCV -aMI -ceH -aMI -aMI -aaa -aaU -aaa -aaU -aaa -aaU -aaa -bJv -bMp -cww -cpM -bNa -bPJ -bRC -cwG -cPD -bVE -cbT -cww -bhI -bhI -can -bhI -aaa -anr -aaa -aaU -bfC -bfb -cmW -bic -cbk -bfC -bYN -bgT -bgT -ctA -bgV -bgV -bgT -bgV -boM -boS -ccv -boS -boI -bqZ -cxT -bMH -btN -buy -bRw -bRz -cmJ -bRG -cyj -cmb -bHQ -bHQ -bHQ -bHQ -bHQ -bLa -boK -aaa -aaU -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(183,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aao -acv -ado -aaa -aaa -aao -abj -ado -aaa -aaa -aao -acv -ado -aaa -aaa -aaa -arM -atl -arM -arM -arM -avs -awp -ayg -aza -azY -aBc -awp -aCT -aDK -aEG -aFK -awp -aJP -aLC -amY -aoa -ayA -azv -aBp -aCy -aEM -aFq -aNb -aGA -aBs -aAD -aMF -bdn -bdn -bdn -bdn -aCJ -aaU -aaU -aaU -aaU -aaU -aaU -aaa -aVT -aaa -bAL -aaU -aaa -aaU -aaa -aaU -aaa -aaU -aaa -bJv -bMp -cww -bNb -bNb -bPL -cwB -cwB -cwB -bVX -eKM -cww -bhI -bhI -cao -bhI -bhI -anr -aaa -aaU -bfC -bgS -bGL -bip -ctz -bfC -cbO -cgE -bkl -ctB -blW -cxs -bos -bgV -boN -boT -bpd -bpp -bqy -cxR -cxV -cxV -cxV -cjb -cxV -cyb -cyc -bVt -bZo -bZs -bZs -bZs -ciA -clO -bHR -bLb -boK -aaa -aaU -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(184,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaT -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -arM -atn -arM -aaU -aaU -aaU -awp -awp -awp -awp -awp -awp -aCY -aDQ -aEH -aFL -awp -aKb -aKb -amY -amY -amY -azw -amY -aHK -aMR -aMU -aQV -amY -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aCJ -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaU -aaa -bJv -bMp -cww -bjE -bNq -bQK -qgO -chO -cpN -bWG -cRg -jiZ -bhI -cLY -cap -cMt -cau -anr -aaa -aaU -bfC -bgU -cng -bCH -bRu -bUK -ccu -che -ckr -ctC -bVo -cxt -bVZ -bgV -boI -boU -cty -bpf -bpf -cxS -bpY -btd -btd -bDy -bxR -cxZ -boI -bBA -bFh -boI -boK -boK -boK -bKo -bKD -boK -boI -aaU -aaU -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(185,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaV -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWj -aaU -aaU -aaU -aaU -aaU -aaU -aaa -aaa -aaU -apC -aqC -axr -aAM -aqC -apC -aaU -aaa -aaa -aaU -amY -azZ -amY -aKI -aKM -aBS -aBS -aCJ -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaU -aaa -bJv -bMp -cww -bkH -blz -bNd -bNE -cww -cpO -bWG -cJo -cMH -bhI -cLZ -caq -cLZ -bhI -anr -aaa -aaU -bfC -bUS -bAv -bPW -cBz -bUM -ccX -chf -ckO -ckO -ckO -cxu -chf -cxy -cxA -cxE -cxM -cxO -cND -bpf -brS -bte -cdT -ceZ -bte -bzu -boI -cJj -bzt -boK -aaU -aaa -aaa -aaa -cgW -aaa -aaa -aaa -aaU -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(186,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -abc -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaa -aaa -aaU -apC -aug -axs -aAN -bsc -apC -aaU -aaa -aaa -aaU -amY -aAw -amY -aCJ -amY -aCJ -aCJ -aCJ -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaU -aaa -bJv -bMp -cww -cww -cww -cww -cww -cww -cww -cIs -tyI -cMJ -cLX -cMa -cMj -cMu -cMG -anr -aaU -aaU -bff -bfC -bff -bfC -bff -bfC -bij -bhK -bkn -cnw -bkn -bhK -bov -bgV -boI -boW -bpf -bpu -bpf -cty -brS -boI -btS -ccT -boI -bzu -boI -bBI -bFi -boK -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(187,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -adx -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aaU -aaU -apC -aun -axs -aAN -bsd -apC -aaU -aaU -aaU -aaU -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -rTW -tpQ -wPS -bMt -pgu -pgu -pgu -gGG -vsO -chS -cpQ -cfM -cbU -jXo -cLm -cMb -cas -cMb -cMH -anr -aaa -aaa -aaU -aaa -aaU -aaa -aaU -bgT -bhZ -bhK -bkn -bkn -bkn -bhK -bow -bgT -boP -boY -bpk -bpf -bpY -brd -brT -boI -btS -ccU -boI -bzv -boI -boI -boI -boI -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(188,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -ady -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -ahu -ahu -ahu -apC -apC -auo -axy -aBd -aJI -apC -apC -ahu -ahu -ahu -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -opd -aaa -aXx -aXx -aXx -aXx -aXx -bfW -tuF -lRy -fti -cfP -mEa -cLV -chn -eCy -chL -cMv -cMI -anr -aaa -aaa -aaU -aaa -aaU -aaU -aaU -bgV -bhZ -bhK -bkp -bhK -blZ -bhK -boB -bgV -boI -boI -ckK -ckL -ckM -boI -boI -boI -cre -cow -boI -cRa -boI -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(189,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -ahu -amU -aov -apE -aqB -aup -axs -aBn -bbR -aqB -apE -aov -amU -ahu -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -opd -aaa -aXx -bca -bca -cat -cKX -bQN -nLV -cLd -fti -cfT -cgg -cgx -chp -chx -chM -gDY -jiZ -hlV -aaa -aaa -aaU -aaa -aaU -aaa -aaU -bgT -bil -bjq -bkq -bld -biw -bld -boB -bgV -aaU -boI -boK -boK -boK -boI -aaU -cNW -cNX -cOf -cNX -cOm -aaU -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(190,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ahu -ahu -amV -amV -apF -aqC -adI -axH -aBB -bsg -aqC -bsB -amV -amV -ahu -ahu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -opd -aaa -aXx -bRK -bca -bZI -bZR -bfW -qHL -eTZ -vcb -uVD -mqB -dpO -tZC -qWY -rUl -cMw -cfs -cMP -aaa -aaa -aaU -aaa -aaU -aaa -aaU -bgT -bgT -bjr -bkr -ble -xxP -bnC -boD -bgT -aaa -aaa -aaa -aaa -aaa -aaa -aaU -cNX -cNX -cOf -cNX -cOm -aaU -aaa -aaa -aaa -aaU -aaU -aaU -aaU -blj -aaU -aaU -aaU -aaU -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(191,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ahu -all -amV -amV -apI -bsw -auw -axJ -aBE -auy -bsw -bsm -amV -amV -bsJ -ahu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -opd -aaa -aXx -bca -bca -cKQ -cKY -bQO -ony -xcO -hKC -cVO -sRD -cMe -cai -rdF -cMk -ceU -cMJ -cxc -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -bgT -bks -blg -bgT -cgm -boE -bgT -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -cNX -cOf -cOh -cOm -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(192,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ahu -alm -amV -amV -apI -bsA -auy -azs -aBE -auy -bsA -bsm -amV -amV -bsK -ahu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -opd -aaU -aXx -aXx -aXx -aXx -aXx -bfW -cww -bUa -cMr -sRD -cMo -cgz -cai -fkx -cMl -cMx -cMJ -cxc -aXx -aXx -aXx -aXx -aXx -aaa -aaU -aaa -aaa -bgT -bkt -blh -bgT -blh -boF -bgT -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -cNX -cOf -cOh -cOm -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(193,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ahu -aln -amV -amV -apJ -aqC -auz -azs -aBE -bsj -aqC -bsC -amV -amV -aln -ahu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -opd -aaa -aXx -bSb -bSb -cKR -cKX -bQN -cLb -cLe -cMo -hMZ -nAF -lcD -cai -fkx -mNN -cLo -nBM -cfD -cKX -cLt -bkZ -bkZ -aXx -aaa -aaU -aaa -aaa -aaa -aaa -cqX -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -cNX -cOf -cOh -cOm -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(194,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ahu -aln -amV -amV -apK -aqB -aqB -azI -brn -aqB -aqB -bsE -amV -amV -aln -ahu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -opd -aaa -aXx -bSi -bWp -bZL -bZR -bfW -cwA -cLf -cMo -iAW -fIw -wWH -ntC -nEX -hDz -cLp -oMB -mxW -bZR -cay -caK -caM -aXx -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -cNX -cOf -cOh -cOm -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(195,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ahu -alm -amV -amV -amV -aqI -aqB -aGO -auy -aqB -aqI -amV -amV -amV -bsK -ahu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -opd -aaa -aXx -bSb -bSb -cKS -cKY -bQO -cLc -eIh -car -tXV -tZj -jml -cVq -cMc -cMm -cMy -cML -cLa -cKY -cLu -bkZ -bkZ -aXx -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -cNX -cOf -cOh -cOm -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(196,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ahu -alJ -amV -aow -amV -amV -auA -auy -auy -bsk -amV -amV -amV -amV -alJ -ahu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -opd -aaU -aXx -aXx -aXx -aXx -aXx -bfW -cww -bhJ -cMo -iAW -cJu -iAW -cJH -cMd -cMn -cMz -cMJ -aaU -aXx -aXx -aXx -aXx -aXx -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -cNX -cOf -cOh -cOm -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(197,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ahu -ahu -amV -amV -amV -aqI -ave -auy -bXH -bsm -aqI -amV -amV -amV -ahu -ahu -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -opd -aaa -aXx -bTH -bTH -cKT -cKX -bQN -cLb -cLh -cMo -iAW -cJu -hlo -cJH -cMe -cMo -cLq -nBM -cKZ -cKX -cLv -blL -blL -aXx -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -cNX -cOf -cOh -cOm -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(198,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -ahu -amW -aoI -amV -amV -ave -aIR -auy -bsm -amV -amV -aoI -bsH -ahu -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -opd -aaa -aXx -bTI -bXe -bZO -bZR -fuE -bWK -cLi -xKr -nvn -cJu -iAW -cJH -cMe -cMo -cMA -cMN -aaU -bZR -caF -caL -caN -aXx -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -cNX -cOf -cOh -cOm -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(199,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -ahu -ahu -ahu -apX -aqI -avk -aJq -brp -bsn -aqI -bsF -ahu -ahu -ahu -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -opd -aaa -aXx -bTH -bTH -cKU -cKY -cLa -cLc -fgS -car -iAW -jon -xjk -cai -cMg -cMq -cMB -cML -cMQ -cKY -cLw -blL -blL -aXx -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -cNX -cOf -cOh -cOm -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(200,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -ahu -ahu -apC -apC -ahu -ahu -apC -apC -ahu -ahu -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -opd -aaU -aXx -aXx -aXx -aXx -aXx -rTW -wbu -cLg -kOG -dVR -xCy -sHB -xkC -cMe -cMr -cMC -cML -cMR -aXx -aXx -aXx -aXx -aXx -aaU -aaU -aaU -aaU -aaU -aaU -blj -abp -blj -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -cNX -cOf -cOh -cOm -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(201,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -amJ -aaU -aaU -aaU -aaU -amJ -aaU -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -opd -aaa -aXx -bTK -bTK -cKV -cKX -bQS -cLb -cLj -cMo -qvB -cgh -cgA -chq -cMh -cMq -cMD -cMM -cMS -cMT -cLx -cpX -blM -aXx -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaU -aaU -aaa -aaa -aaU -cNX -cOf -cOh -cOm -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(202,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -opd -aaa -aXx -bTL -bXR -bZP -bZR -opd -cwA -cal -cLl -cLs -cLs -cLs -cLs -cLs -cMs -cME -cMN -aaU -bZR -caJ -bpq -caS -aXx -aaa -aaU -aaa -bal -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -cNy -cNy -cNz -cNz -cNy -cNX -cOf -cOi -cOm -cOr -cOl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(203,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -opd -aaa -aXx -bTK -bTK -cKW -cKY -bQV -cLc -cLk -ctk -prx -vxU -cLW -ccG -cMi -iQY -cMF -cMO -cMS -cMT -cLy -blM -blM -aXx -aaa -aaU -aaU -bal -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cNy -cNz -cNz -cNy -cNE -cNM -cNO -cNy -cNX -cOf -cOj -cOn -cOj -cOp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(204,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -opd -aaU -aXx -aXx -aXx -aXx -aXx -opd -cww -cww -cww -cfV -cww -cww -cww -cww -cww -cww -cww -aaU -aXx -aXx -aXx -aXx -aXx -aaa -bal -aaa -bal -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cNz -cNB -cNB -cNB -cNF -cNN -cNR -cNY -cOb -cOg -cOj -cOj -cOj -cOp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(205,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -bGh -bHg -bHg -bHg -tpQ -bHg -bHg -wPS -aaU -aWj -cww -cJm -cww -aaU -aaa -aaa -aaa -aaa -aaU -aaU -aaa -aaa -aaU -aaa -aaa -aaa -bal -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cNz -cNB -cNB -cNB -cNG -cNN -cNS -cNy -cNX -cNX -cOj -cOj -cOs -cOp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(206,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aWR -aaa -aaU -aaa -bal -bal -aaU -bal -bal -bal -aaU -aWj -cww -cJn -cww -aaU -bal -bal -bal -bal -aaU -bal -bal -bal -aaU -aaU -bal -bal -bal -aaa -bal -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cNz -cNB -cNB -cNB -cNG -cNN -cNT -cNy -cNX -cNX -cOj -cOj -cOt -cOp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(207,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aWR -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -cbS -abM -ccH -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aWj -aWj -aWj -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -bal -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cNz -cNB -cNB -cNB -cNG -cNO -cNO -cNZ -cNX -cNX -cOj -cOj -cOu -cOp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aWR -aaa -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(208,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -abF -abM -acA -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -cbS -abR -ccJ -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -bal -bal -bal -aaU -bal -bal -bal -aaU -bal -bal -bal -aaU -bal -bal -bal -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cNy -cNz -cNz -cNy -cNH -cNP -cNU -cNy -cOc -cNX -cOk -cOo -cOv -cOp -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -cPl -abM -cPq -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(209,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -abJ -abR -acA -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -abp -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -abp -aaU -aaU -aaU -aaU -aaU -aaU -aaU -cbW -abM -aaD -aaU -aaU -aaU -aaU -aaU -aaU -aaU -abp -aaU -aaU -abp -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cNy -cNy -cNz -cNz -cNy -cNX -cNX -cOl -cOp -cOp -cOl -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -abp -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -cPm -abR -cPq -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(210,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -abJ -abR -acB -adc -adc -adL -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -bGK -bGK -bUe -ccc -abR -aaY -cdb -bGK -cdq -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaU -aWj -aWj -aaU -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cPd -cPd -cPd -cPn -abM -cPq -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(211,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -abJ -abM -abR -abM -abR -abM -aZG -aaU -aaU -aaU -aaU -aaU -aaU -aTd -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aTd -aaU -aaU -aaU -aTx -abM -abR -abM -adl -ccr -ccO -abM -abR -abM -aZG -aaU -aaU -aaU -aTd -aaU -aaU -aTd -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -cNQ -cNI -aWj -aWj -aWj -aWj -aaU -aTd -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aTd -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aTx -abM -abR -abM -abR -abM -cPq -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(212,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -abp -abJ -abZ -abZ -abZ -abZ -abZ -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -bGP -bNo -bNo -ccf -ccs -ccP -cdi -bNo -bNo -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cNI -cNI -cNI -aWj -aWj -aWj -aWj -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cPe -cPh -cPh -cPh -cPh -cPh -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(213,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -abp -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -abp -aaU -aaU -aaU -aaU -aaU -aaU -aaU -abM -abM -abM -aaU -aaU -aaU -aaU -aaU -aaU -aaU -abp -aaU -aaU -abp -aaU -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaU -abM -cNI -aWj -abp -abp -aWj -aaU -abp -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -abp -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -aaU -abp -aaU -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(214,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaU -aaa -aWj -brs -brs -aWj -aaa -aaU -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(215,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWj -aWj -aWj -aWj -aWj -aWj -cfq -cfq -aWj -aWj -aWj -aWj -aWj -aWj -aWj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(216,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(217,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -cpB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cpB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cpB -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(218,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -cpB -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(219,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(220,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(221,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -cpC -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -ckl -ckl -cpC -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(222,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(223,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(224,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(225,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(226,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(227,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(228,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aWj -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(229,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aWj -aWj -aWj -aWj -aWj -aWj -aWj -aWj -aWj -aWj -aWj -aWj -aWj -aWj -aWj -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(230,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(231,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(232,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(233,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(234,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -aaa -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(235,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(236,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(237,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(238,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(239,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(240,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(241,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(242,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(243,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(244,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(245,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(246,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(247,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(248,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(249,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(250,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(251,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(252,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(253,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(254,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -"} -(255,1,1) = {" -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl -ckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaacpBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUabpaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUabpaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaabpaakaaraaraaraaraaraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUakNaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnMaavaaDaaYabrabDabEaavaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFabJabJabJabJaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaakabMabMabMabRabMacMaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUahvabMabRabMabVabMabWabMabRabMaRvaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaWRabMabRabRabMabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaakabRacaaceaceacfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjacjacmacqabracracxacjaczaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAacAacBabRabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaakabRacGaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUacJabMacWaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUadcabMabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklaaaaaaaaaaaaaaaaaUaakabMacGaaUaaaaaaaaaaaaaaaaddadfadfadfadfadfadhaaaaaUaaaaaUaaaaaaadjadjadjadjadjadjadjaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUadkadladwaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUadcabRabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaZGaaaaaUaaaaaaaaaaaaaaaadCaadaadaadaadaadadCaaaaaUaaUaaUaaaadjadjadFadFadFadFadFadjadjaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUadGabMadHaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUadLabMabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaadCaadaadaadaadaadadCadjadjadjadjadjadMadPadFadXadXadXadFadFadjaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaZGaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaZGaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaadjadjadjadCaadaadaadaadaadadCadYadYadYadYadYadMaepaeqaeuaeyaezaeAadFadjaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoaaoaaoaaoaaoaaoaaUaaUaaUaaoaaoaaoaaoaaoaaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaadjaeCaeRaeSaadaadaadaadaadafbafcaeRafcaeRaeRafeaeRafjafkadMafuaeAadFadjaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaOaaPaaPaaPaaPaaPaaTaaVabcabjabjabjabjabjacvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaadjafvafxadjaadaadaadaadaadadjafyadFafzafBafIafLafIafNafPadYafTaeAadFadjaaUaaaaaaaaaaaaaaUaaaaaaaaaaaxaaxaaxaaxaaaaaaaaaaaaaaaaaaaaaaaxaaxaaxaaxaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadoadoadoadoadoadoaaUaaVaaUadoadoadoadoadoadoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUadjadFagaadjaadaadaadaadaadadjagbadFagkagpagtadMagFadFagKagKagKadFadFadjaaUaaaaaaaaaaaaaaUaaaaaaaaaaaxaaXaaZabaaaaaaaaaaaaaaaaaaaaaaabaabbabgaaxaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaVaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaahaanaasaasaasaasaasaanaayaaaabpaaaaTdaaaabpaaaaaUadjagMafIagNaadaadaadaadaadagOadFadFagRagSagVadMadMadFadFadFadFadFadjadjaaaaaaaaaaaaaaaaaUaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaaaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaVaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaazaaAaaAaaAaaAaaAaaAaaAaazaaUaaUaaUaaUaaUaaUaaUaaUadjadjadjahLaadaadaadaadaadadjahMadFafzagpadFahQadMadjadjadjadjadjadjaaUaaaaaaaaaaaaaaaaaUaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaaaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaUaaUaaUaaUaaUaaUaaoaaoaaoaaoaaoaaUaaoaaoaaoaaoaaoaaUaaUaaUaaVaaUaaoaaoaaoaaoaaoaaoaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabyXaaAaaCadBaaHablabkaaAbPoaaaaaUaaaaaUaaaaaUaaaaaUaaUaaaaaaahLaadaadaadaadaadadjahMadFahRagpadFahVadMaaUaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaapvaYpagdaYpaaxabuabKaaxaaaaaaaaaaaaaaaaaaaaaaaxabuabKaaxaYpagdaYpadqaaUaaVaaVaaVabcabjabjabjabjabjadxabjabjabjabjabjadxadxaaTaaVabcabjabjabjabjabjabjaaTaaVabcadxadyaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabyXaaAabnaaFaicaaFaboaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaUaaUaaaahLaadaadaadaadaadadjaieaigafzagpaihaiIadMaaUaaUaacabvchHabzacbabzaaiaaaaaaaaaapvcdccdccdcapvcqVcqVaaxaaUaaaaaaaaaaaaaaaaaUaaxcqVcqVapvcdccdccdcadqaaUaaVaaUaaUaaUadoadoadoadoadoaaUadoadoadoadoadoaaUaaUaaUaaVaaUadoadoadoadoadoadoaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyXaaAabqaaJaaFaaQabwaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaaaaUaaUahLadMaiMaiMaiMadMadMadMadMaiWaiXadMadMadMactactacEacPacSacXaftacPadeaaaaaaaaacrPcrQcrRcrRcrScsaabNaaxaaxaaaaaaaaaaaaaaaaaxaaxacgcsbcrScrRcrRcrTadqaaUaaVaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaVaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyXaaAabGabmaaFabAabPaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaaaajaajafDaajaajaamaapaaqaatbHXaiZajpajradmadtadtabQadvadUaefaenaghagzaefaevaaUaaUajwajwajFajFajFajwacsabLacRaaxaaxadnadqadnaaxaaxadrachadsadSadTadTadTaecaecabeaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaVaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyXaaAackacdacuabAacyaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaaaajaaEafQaaIaaIaaIabdaaIabfabYajLajRajWaeHaeOaeOaeXaeOaeOafgafiagBadtacSactaaUajwajwajXakcakfakhajwaduadQabLaeaafOahZaibajhajmaeaachadQajKadSaeoaeEaeFafMaecaePaaVaaUaaUaaUaaUaaUaaUaaaaaaaaaaaoaaoaaoaaoaaoaaoaaUaaVaaUaaoaaoaaoaaoaaoaaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaazaaAaaAaclaaAacCaaAaaAaazaaaaaUaaaaTxaaaaaUaaaaaaaaaaajacnageamiacoacwabTacFacFacFacFagjagnacFacFacFabUafWafWagfaggaimabBabCacQacQacQakiakkakmakhakhakxadQadQadQadQalaamPasyamPaoQadQadQadQadQaeWafmafmafpagxbEpagXahPahPaioaioahPahPaaUaaaaaaaaaaaOaaPaaPaaPaaPaaPaaTaaVabcabjabjabjabjabjacvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacOadaadbacDacUacZadbadaaegaaaakEbhyakEakPakEaaaaaaaaaaajacnageakXakXakXakXakXacIacVadgagqagwadJaekalealealealealeahjaimafEahYaiyaiDacQalgalialkalialpajwajwajwaQOadQabLaeaaeaaeaachadQacTadSadSadSaiAafmaiVajabEpajSahPaknakZalbalfahPaaUaaaaaaaaaadoadoadoadoadoadoaaUaaUaaUadoadoadoadoadoadoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUanUanUanUanUanUaaGadKadWanUanUanUanUakEalqakEalsakEaaaaaaaaaaajacnagyakXalAalEalOakXaemadiadiagqajJadiaesalealQalTalValeajfaimafEajgajkajqacQalYamnamHamRamTancanfajwaeiaeraetadQannadQadQadQafRadSaeGapoaptapTanvaoMbEpakgahPaJRbiOaKeafhahPaaUaaaaaaaaaaaaaaaaaUaaaaaaaaUaaUaTxaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUanUaaNaebanUaaRaehaeLasVaeQaeQaeVagvansalqanCanWakEbUobUoaajaajacnageakXaoeaoiaokakXaexaeTaeUagqahwafqafraleaolaomaonaleajfaimafEabIaqRarcacQaooaopaozajwajwajwajwajwatZaucaeKaykazGaykaFraFtapvadSadSadSbveadSaecaecbEpbvmakjbEgbEtbEwbEyahPaaUaaUaaUcjjcjjcjjcjjcjjaaaaoKaoSaoKaoTaoKaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaccaaSapcapQaqaaqfasOaeMaeMaeMaeMaeNapgapnappaprakEaaUaaUaajaauafwageakXapAapDakXakXahtafqaeUacHanQagYahialealeapNapOaleajfaimafEacQatsatJacQajwaqbajwajwawNaxeawNawNaFvapvafUaGZaagaGZaKgapvapvadVafdaxLafSbEuaxSagibEpahPahPahPbEAahPahPahPaaUaaaaaacjjcjkagGamOcjjaaUaoKaqeaoKaqyaoKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUanUauEauIauKawYauSauTadAaniadDadEabSaqEaqFaqHaqJakEacLacLaajahnacnafCaqVaqXarfarharjaRzaijagragsaUSaijailaruarzarAarCarDaAxaqsaFuaHraLbbmpahDbAtbEIagAbGcbGcbGcbGcbGcbGdagJaheaKnaelaKnahOaiFajbajdajIagZahKaifaifaifaifaifaifaoJaikbEBaizaaUaaUaaaaaacjjanbaiuafocjpaoKaoKaqearKarLaoKaoKaoKaoKarMarMarMarMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUahgahgahgahgahyahyahgadOaguahEaedaewaewaewaewaewaewaewarRakEafsafFaajajHajNakKarSarUarZasbasebrBcdIalDalKckGbrBckHasfashasnasoasqalNaquaeOaeOaeBbGiasraeObGjalPaeOahIaeOaeObGlbGmampaiJbEGagQalRamlamramtajjafKaeZaixafaafKafKafKafKaiBassajlbGoaizaaUaaUaaUaaUcjjajoajvcjlcjpasAasEasQasZasZatdateatgathatiatlatlakzaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahgakpaksaktakuakyakAacNajxakQaflaeJafnafGafJafYagDaewajCahmaiTaipaajajYamSakGakXapAatpakXakXankadianjagqcwkadialralealeatrapOaleanoaimaeYaeYaeYaeYaeYaeYaffanAaffaffahzahzahAaffaffahzbEXajebqQabXaqLanHaqLaqLagmajMahaahbahcahdafKafKafKajPafAaizaizaizaizasdcjjajVakbcjjcjpatuatwatxatyatDatEatGatGatGarMarMarMarMaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUahgalwakYatIalyamIamQamZanaahEaflaeJagIagPagPagPahraewagHakoacobeVaajalBamSalCakXatNatTatYakXarJadiajJanRaBmamfavnaleauaaudaonaleanoaimaeYahBamsahFahGaeYahHaotahSahWaiwaiwaiQaiRaiSahzbEXakMaoxakdaoyaAQazraqLaqWakHahxahxahxahxahTahUafKalhahNahNahNamwamDahNahNanGanZbGqaoKaueatwaufaujaukaumauqaurauuatGarMaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaahgafHalFammaoqaodamaacNaguahEaflaeJaidagPagPagPaiHaewakCalxalGacoaajamjaoXaalakXauvauxauBakXamoanlajJapfaohaocapbaleauFauGauJaleanoawcaeYaiYahCapxapMapZaqGaqKajQajQajQaraardargartarIasganzanDaoAaoDaoGbwlaqLahXakHahxaiaahxahxahxaitafKaqNaiCaiCaiCaiCaiCaiCaiCaroarGbEfaoKauOatwauUauXatDavaatGatGatGatGarMaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaagWagWagWagWahgahgahgameaoRamBahgaqYaguahEaiKaewaewaiLajBaiLaewaewambbfacjoamdaajapeamSapeakXakXakXakXakXacFacFauMauQacFasJasJalealealealealeauZaxxaeYaeYakSakUakVaeYakWavoaxOayialLaysalIamuamvahzbEXakMaoxawtaojbvpbEnaqLaiUasPasTatmajsajDahxajEafaatoalzakealcaldafValHaiCavbavfavmaoKarMarMavpavqavsavsavxavzavBavDavsaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaahfahkahlahoahpahqapsakLaoVajyabSajzaguahEajAaeJajGajTakvakvakwaewamkaajaajaajaajaalamSaalavNavOavRavSavXavNaVDayDazzarlasJatBazLaALaAOaBzaBHaBLayNaBNaCkaCoaCpaqvaeYanyaCsanXanXanXanXanXamuakRahzbEXakMaoxaDbaDmaDFanJaqLafZakHahxalXatOatCahxamCafaautavtavtavuavZamKamKamLawbawfawbawbawbawgawiawjawlawpawpawxawxawxawpawpaaUaaUaaUaaUaaUahuahuahuahuahuahuahuahuaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaainainainaisaiEaiGagWakDaoYakFabSalMaguahEajAaeJalUanuanwanwaoBaewauHbNMaGccitaviciuaDEaDUawyawzawCawCawFavNaxPayDazzayXasJaBUaCjaCwasJaEUbGzbnHaAAawNaeYaoraoraoraeYaosaFoaoCaoCaoCaoCaoCapiapjaffaXvapqaFpaqLaqLaFkaqLaqLaglakHahsahxaylahxahxahxanFaywazxaDDaDDaGYaHcaDDaQZawIawUawIawIaxaaxbaxdaxnaxqaxDaxEaxUaxUaxYaygawpaaUaaUaaUahuahuahuallalmalnalnalmalJahuahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKaaKaaKaaKaaKaaKaaKaaKaaKaaKaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaUainaklakqakragWamhapuawGawZaxKaqfaqzaewaeJaewaskaymakvakwaewapecivbNTciwaalaalamSaalavNaypayqayraytavNaCAayDazzaDjasJaDkaDlaPiasJaGDayuaxhaBMawNaeYaeYaeYaeYaeYapkaotaplaqhaqiarmaqhahJatAaffbEMaqZaHhanBajiaHhawhafKapWbhjafKarxbmlbmrbvobvobvqbDBbEvaqpaqxaqQbEHaqpaqxamcamcamNamNamcamcayvayxayBayEayHayLayPayZazaawpaaaaaaaaUahuamUamVamVamVamVamVamVamVamVamWahuaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaLaaMaaMaaMaaMaaMaaMaaMaaMaaMaeeabhaaUaaaaaaaaaaaaaaaaaaaaaainainainakOakTaljagWaBAaeDaxWaEyaxXasVatVavgavFawHayFazNakvaqDaewcivcixciycizaalapeamSbGHavNazbazpazAazCavNbGMaIeazzbGNasJbGOaIhaPiasJaJFaimanqaCqanqanqanIanLanPanqatQaotahJahJahJahJahJahJatKaffbEOavTaJSalSaKsaKBamxamyamzbEJaGRamFarybPuamMaImafKbSubZMauiawvaycazVaAgbvwagUawVanMaiianOamcazDazHavbawpazMazOazUazWazYawpaaaaaaaaUahuaovamVamVamVamVamVamVaowamVaoIahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaabiabiabiabiabiabiabiabiabiabiaaUabhaaUaaaaaaaaaaaaaaaaaabfqaltahkalvahoaAdariasFarqarTasjaySazkaCtaCWaewaeJaewaCXaDeakvaewaewavGavGcnFciBaalamjaKRaalavNavNavNaAfavNavNavNaLgazzbGRasJbGSaLBbGTasJaJFaimanqaDxanTaofaoLaoUaqPanqatLaotcpdahJahJatMapPahJaqgaffbEPavTaMyaMCaNlaNuaNUaODamzcfSaAaafKafKciNapWapWaAacjmavtaAmbvrbvAbvCbCJbvwairaoOaoOaoOarnamcayvaAraAsawpaAtaAuaAEaATaBcawpaaUaaUaaUapCapEapFapIapIapJapKamVamVamVamVapXahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabhaaUaaaaaaaaaaaaaaaaaaaaaagWagWagWalWatqamgainawJaaSawRabSacNagEaECaxiaeJaxjaEEaDeakvayhaxkaxlaxmbGUbGVbGWaCMapYaOHaBkaBlaBoaBraBtaBwavNaEoaUAbHbasJasJaVEasJasJaJFaimanqapyanTcpqanTanTapzanqatkaotahJahJazKaAlaAlaAlaCOaffamEaCNaxGapRapUaouaqjaqlaqmbEJareakaatRclyarsarvakaasmavdbvwbDnbZNcbQcjnbvwaZKaqqaoOaqraqtamcaBDaAraBJawpawpawpawpaBOawpawpapCapCapCapCaqBaqCbswbsAaqCaqBaqIamVaqIamVaqIapCamJaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabhaaUaaaaaaaaaaaaaaaaaaaaaaaaaaUagWamXatHamXainawJaNMaxoabSacNatUaELatWaeJayQaEEaDeaAhaewaszaCuaCCbHlbHmacobHdbRaaalavNaBPaBQaBRaBZaBZaChbnJboHbvdbvtaDzbyRbHjbHkaJFaimanqarVanTasaasaanTasKanqbBdbCOaqGaqGbDobDObFLbFLbFMahzaspavTaJSatPatPaouajiawBamzcmlcmocmAcmCaCvcwNaubatSaqobDpbDqbDrbDsbDsbDtantanNaqqaoOaSRatXamcaCxaCIawpawpaFlaCPaCRaCSaCTaCYaqCaugaunauoaupadIauwauyauzaqBaqBauAaveaveavkapCaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaKaaKaaKaaKaaKaaKaaKaaKaaKaaKaaUabhaaUaaUaaUaaUaaUaaUaaUaaUaqwabxagWagWanUanUanUanUanUanUanUazlaAVaBaaCEaewaewaESaETaewaewaewaewaCKaoFaLuapHafXcjOarbaDaaDcaDdaDfaDdaDoaDpbHobDZbHqaDvarkbHrbHsbHkaHaaimanqapyanTaoLbEzanTapzanqbFNahJbEDbEEbFKbFLcqibFLbFPahzauhavTaHhajiajiajiajiboOamzamAavPakaaSUcwZazRazSakaaAobDvaulbDxaaBbDzbDAaoNawDavhaoOawEayVazFaDwaDyawxaDAaDCaDGaDHaDJaDKaDQaxraxsaxsaxyaxsaxHaxJazsazsazIaGOauyauyaIRaJqahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUagLaeeabhaaLaaMaaMaaMaaMaaMaaMaaMaaMaaMaeeabhaaUaaUabxabxaiNaiNaiNaiNabxaiOaiPaiOanUaCraEwaHbaHNaIlaIVaJwauVaGGaCHaDWaDYaGTaHgaEWaUyaGVaFGaFZasWataaoFatcatcatcaDSaBQaBQaDZaEdaDoaDpbHqbEFbHfbHubHvbHvbHwbHkaHpaimanqaxganTanTbESanTbtkanqatMahJbETbFQbFKbFLbEUbFObFMahzayGaAbaHhazmaBTaBWaFVaApaAqamAaAWakaakaakaaBGaBGaqlbDiaiCbDAbDCaEgaNebDAaJHaoOazXaoOaoOaJJaJYaElaEnaEraEtaxUcPraEzaEBaEGaEHaAMaANaANaBdaBnaBBaBEaBEaBEbrnauyauybXHauybrpahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUabiabiabiabiabiabiabiabiabiabiaaUaiqabxajuaiNaiNaoWarrakBaluaCdamqanVaobasLaKdasXasYatjanUanUanUaGPaHHanUaewaewaHTaHSalUalUakvaIzaewatzataauPauWaVratcaDSaEJaEKaENaEOaEPavNbHfbHxbHfbHyaPFaPFaPFaPFaHpaimanqceuanTanTbESanTcevanqbFRahJbETbFSbFTbFUbFVbFUbFWaffaNXavTaHhazmbuPaBXaivaCnbGaamAaDqakaaERaEXaEYaEZaFaaFbaFdbDAbDFbDGbDHbDAanSazTaCVaFIbrxbrCbrDaFgaFsaFxaFAaFBaFDaFHaFJaFKaFLaqCbscbsdaJIbbRbsgauyauybsjaqBaqBbskbsmbsmbsnapCaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaLaoHaoPaluaslapSaDOaDTaDTaDVavWauLbUAasLaLJaNjaNGayfanUayjanUblsaIsanUaInaewaJtaLfakvakvaLvaewaewavJatabGfavLavMatcaDSaFMaFMaFMaFMaFMaDSarwbHkarwbHBaPFbGpbGsaHtaIJaEhanqanqcexceybGvcexanqanqaffahzbGwahzaffahzbGxahzaffaffaEAaCNaCzaCBaCDaCFaMjamAbGGaMlaNnakaaFOaFQaFRaFSaFWaGfaGjbDAbDEbDIbDAbDAamcbsocraamcamcbsqbsraGkaAraGlaGmawxawpaGwawpawpawpapCapCapCapCaqBaqCbswbsAaqCaqBaqIamVaqIamVaqIapCamJaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUajcabxaqMaiNaiNasHatnatvaGyaEpawdawrawkaziazjaNJaNVaznanUanUanUaKOaJyanUaewaewaJNaJOaKaaymalUaPZawQawSawTbHhaxwavLatcaByazPazQaAeaAjaAjaAUaBgaBhaBiaAjaJAaAjaAjaKcaLcaEqbIDbIDbNpbRFccgbRFccqcczcfebRFchQaAjaAjaAjchWaCmazPakabviavTaHhazmbvlbuXamAbvDbGGbcWbvhakaaGFaGIaGUaHdaHmaHwaHBbDAbDKbDKbDAaHCaHXaIbaIpaItaIwaIyaIBaIWaIYaIZaIZaIZaJaaJbaJsaJPaKbaaUaaUaaUapCapEbsBbsmbsmbsCbsEamVamVamVamVbsFahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaayeayeayeayeayeayeayeaaaaaaaaaaaaaaaaaaaaaaaaaaKaaKaaKaaKaaKaaKaaKaaKaaKaaKaaUabhaaUaaUabxabxabxawmawoawuaEsawKawMajUasLaphaphaBbaBeaBfaBjaLwaLxaKtaPXaFGaQfaQgaQiaKwaQgaQAaQYayOazBaAkcqdcqHcswcsAcwfaFfaFiaFCaIkaFCaFCaGgaGxaGxaGxaGxaGSaGxaGxaMoaMGaHuaHuaFCaFCaFCaFCaFCaHvaIkaEucAVcAWcAWcAWcAXaExazPakabvFavTaHhaRMbvZbAhbDuamycAYbvHaqlakaaKfaKfaKmaKraKfaKuaKzavmavmavmavmaKWaLdaLeaLhaLjaLjaLoaLjaLqaLraLraLraLraLraLtaLzaLCaKbaaaaaaaaUahuaovamVamVamVamVamVamVamVamVaoIahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaEfaaUaaaaaaaaaaaUcepaaaaaaaaaaaaaaaaaaaaaaaaaaLaaMaaMaaMaaMaaMaaMaaMaaMaaMaeeabhaaUaaUaaUaaUaaUaxcatvauLaIoaxfasLasLanUasLasLanUbzxanUanUabSayRaKCabSaewaSXakvalUalUakvaSZaTaaBxaBCcjNcBbbhNaBKaCacBcaIucBecAWcBfcBgcBhcBhcBhcBhcBhcBhcBhcBhcBicBjaQSaGraGraFFaFFagoaFFaFFaFFaIUaJcaJcaJCaJQaKDcBoaGJaGQaCebvLaHlcBqbarbasbatbatbascBqbvLaCeaLUaMbaMbaMcaMfaMraMEaMMaMOaMTaMWaNsaNtaNEaNPaOfaOgaOjaOmaOyaOGamGamGamGamGamGamYamYamYamYaaaaaaaaUahuamUamVamVamVamVamVamVamVamVbsHahuaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIakIakIakIakIakIakIaaaaaaaaaaaaaaaaaaaaaaaaabiabiabiabiabiabiabiabiabiabiaaUabhaaUaaaaaaaaaaaUawmaxpawuaEsawKaxuaxvaxzaxAaxBabSaxCaTpaxNaxTayCaLnayIaewaewaewaewaewaewaewaewaoFatcatcaFPaICaIDaCacBuaKJaEvaHkcBvaIjaHsaHsaHsaHsaHsaHsaHsaHsaHtcBwaWraOJaOTaOUaOUaOTaOUaOUaOTaOXaPaaOTaOTaHOaLTaMwaNmaNvaNBaXnaNYaRTaSDaSDaSDaSDaSDaRTaXnaYKaNEaPlaPxaPxaPyaPAaPCaPGaLraLraLraLraLraPJaPLaPQandamYamYamYamYamGaneanpaneanpanYanpaoaamYaaUaaUaaUahuahuahubsJbsKalnalnbsKalJahuahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUakIadpadZajZahhajnakIaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabhaaUaaaaaaaaaaaUayJatvauLaNZaOKaOLaOWaPjaPkaPnaPvaPYaQbaQbaQbaQEaQHaQMayTayUayUayWazcazfaAPaDiaHRaIFaIGaKiaDPaLXaIdcBEaKJaEvaIiaIjaHsaHsaaUaaUaaUaaUaaUaaUaaUaDMcBFaWuaOTaPSaQtaQuaQzaQBaQIaQPaQQaQRaQXaRcaRBaSoaSpcBKcBLaDhcBMcBNcBOcBPcBQcBPcBRcBNcBScBMaDraRdaRfaLjaRgaRiaLjaRkaRnaRsaRtaRKaRNaRNaRNaRPaRSaoEaoZaqdapwapaapLanpaBSaztaBSaztaBSayAamYamYamYaaUaaUaaUahuahuahuahuahuahuahuahuaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIajtchhanxaCfaLHakIaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabhaaUaaaaaaaaaaaUaqwazyaAcatvaAiasLaAnayMaMpaAvabSaAzaaSaaSaaSaMZaMqaSxaROaSQaSQaSQaSQaCbaEcbGYccMaJvaRUaMNaPsaSJaIxcKDcKEaEvaHQaHsaHsaaUaaUaaaaaaaaaaaaaaaaaaaDMcBFaWuaOTaSbaSfaSfaSfaSfaSfaSfaSfaSzaSEaOTaIOaSPaTAaJrbhRakabDScbZccabDVccbbDXcbZccacBUbDYaciacKadRanhaGHaqcaPxaSIaSOaSSaTeamYaSeamGamGaKqamYamYanpaneanpaneanpaneaBSazuayyazuaBSazvazwazZaAwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIchicMfakJakIakIakIaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUabhaaUaGqaGqaGqaGqaGqaGqaGqaGqceCasLaAScCPaOnaOOaPDaOhaQlbpoaAYaAZaQmaTFaBIaABaTgaABaABaFTbjBaDXaDXaJZaDXaQwaGhaHZaJxcBoaKJaEvaHQaHsaaUaaUaaaaaaaaaaaaaaaaaaaaaaDMcBFaWuaOTaTiaTjaTvaTwaTvaTvaTvaTvaTzaTCaOTaTGaTIaTKaTGaTMaqlbERbEabEabEbcBVcBWcBXcBXcBYbEdaqnaHLarXazoaIfaqnaTNaSIaUaandamYamYaACaADaneaLMaAFaAGaneaBSaBSaBSaBSaztaBSaAHayyazuaBSaBpamYamYamYaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIarWaxFaAIaAJaAKaGaaEaaEaaEaaEbaEaaEaaEaaEaaEaaEaaEaaEbaEaaEaaEaaEaaEaaEaaEaaEbaEaaDnaEeaXjaFEaJLaJMaJXaGqaARasLaCcaCgaCiaClabSaCGaguaAXavjaCLaShaUvaDsaDtaDuaDBaDLbjVasLaIqaJUaLYaYIcoUcsnatcaVccBZaKJaEvaHQaHsaaUaaaaaaaaaaEQaEQaEVaEVaEQaEQcBFaWuaOUaUdaTvaTvaTvaTvaTvaTvaTvaTzaUeaOTaUjaUlaUmaUnaTMaqlaqlamyamyaUqaUwaUqamyamyaqnaqnaqnaINaKjaKpaLsaciavmaUJaUNamYaBqaBsaADaBsanpaMuaMvaneanpaBVayyayyaBuaBvayyaBvaBSaBvayyaCyaHKaKIaCJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUakIaHoaIMaMxcMpaRCcMKaXmcMKcMKayaaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaLKaUzaZqbdzaURurjbdEbdJaEmaFjaFjaFmaFjaFjaFjbpXaSkaEDaSNabSaTRaVzbfwasLasLasLasLbpWasLatcatcaNAatcatcatcatcaydcCbaKJaEvaJTaHsaaUaaaaaaaaaaEQaFwaFyaFzaHnaDMcBFaWuaOUaTiaTvaTvaTvaUUaTvaTvaUWaVbaVfaOUaViaVnaVoaVpaTGaaaaaaaaaaaUaVsaVxaVsaaUaaaacKcCdaRjaMKaVyaNDaRAaciaVHaVUaWfamYaCQaneanpawPcsyaNyaDIaEiaDIaEkaEjbvEaEjaEjaEjaEkbAZaEkaEIaEMaMRaKMamYaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIbuVmKPcnnaYaaHjbxoaXsaHEaThbabaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaGqbDPbDQbDRbEccbXcenceoaGzaFjaFXaGKaGbaZTaFjaGoaUgaVwaVIaVOaWSaWeaYoaYraYqaYqaYqaZObfmaYqaYqbkFaVQaVVaVZaydcfRcCeaKJaEvaHQaHsaaUaaaaaaaaaaEQaDRaGdaGeaWtaDMcCfbbQaOTaWsaTvaTvaTvaTvaTvaTvaTvaTzaVfaOUaWDaWLaWNaWTaTGaaaaaaaaaaaUaVsaWUaVsaaUaaaacKaREaNDaOcaRxaNDbkTaciaWXaVUaWYamYaFeanpaneanpaBsaSdaBsaADaBsaBVayyayyaBuaFhayyayzaFnayzayyaFqaMUaBSaCJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIbxucrzbxxakIakIakIbxCakIakIaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaPUaGqaGqhcRaKFkzbaGqaGqaGqaGsaFjaGtcCWcCXaGvaLaaAzblYaBFaBFaKhbpSaTFaKoasLaXuaXuaXuaXuaXAaXuaXuaXuaWaaSgaXLaydaLlcCeaKJaEvaHQaHsaaUaaaaaaaaaaEQaDMaDMaDMaWzaDMaHGaWAaXPaYbaYiaYjaYMaYjaZaaZcaZcaZgaSEaOTaZhaWLaZkaZlaTGaaaaaaaaaaaUaVsaZmaVsaaUaaaacKaSYaVXaSAaSFaWHaWJaXQaZFaZHaZLamYaCJaCJaCJaCJaCJaTqaADaBsaADaBSaBSaBSaBSaKNaBSazuaFYazuaNaaNbaQVaBSaCJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIakIcMfbxDakIbxAakIakIakIaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaPVaPWaTHaKHaGLaGMaLmaGWaGXcvKaKYaOpbmcbnWbrGbGnbLpcjRcjScjTaKxaKyanUanUaWCanUanUaZUaZVaZWaZXaZYbaabajaXuaWaaXMcqNaydaydcCeaKJaEvaHQaHsaaUaaUaaUaaUaEQaLVaMgaUKaWWaXaaXbaXdaOTbanbaUbanbbibanbbibbHaVfaVfbcdaOTaTGbcebcgaTGaTGaaaaaaaaaaaUaVsaWUaVsaaUaaaaqnacKanKaToaTraHxaHzaHyanKbchbcqamYbFnbFnbGebFnaCJaVYaBsaADaBsaADaBsaADaBsaADaBSazuaFYazuaSCaGAamYaCJaCJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUakIbxBbxEbxIaNChiVbbkbeCakIaaUayeaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbikaHDbRDcQQcQQcQQcQRaHIaHMaHMaHMaOZaHPcjWaGuaHWbEVaFjanUaLkaLLanUanUaLWaXiaaSabSaZVaZVaZVbcrbctbcLbcPbcUcCVaYqaYqchJcDkcDlaXKaMHaHQaHtaHYaHYaHYaHYaHYaDNaIaaGeaIcbdbaVCbreaOTbddbdhbdlaOTbdOaOTbdPbdPbdWbdYbdPaaUaaaaaaaaUaaaaaaaaaaaaaaUaVsaVxaVsaaUaaaaaaaaaanKaTtarHascbtbbDcaHzbeabcqamYbFnbFnbFnbFnamYaJjaGBaMVaHeaHfaHiaHJaGBaGNaLGaKNaFnaKNaSCaBsaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIbxQbxWbxJbxvcvIbxXbxYakIaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaPVcQSaIgaHFaHFaHFaHFaMiaILaHMcnpaHMaPuaHPaFjaMhbaKaIraFjaMYaNdaNfaNkabSaaSaXOaMPabSbebbebbebbeObePbeSbfgaXuaYtaYtaYtaOoaydcCnaYwaMSaOzaNpaHYaTLaVgaIvaHYaDNaGEalZalZalZalZalZaOJaOJaOJaOJaOTbfvbfybdPbfFbfJbfMbdPaaUaaaaaaaaUaaaaaaaaaaVsaVsaUqbfOaUqaVsaVsaaaaaaaHAaTJaVaaWnaWnaWwaWxbfSbgbbvuaJdaJdaJdaJdbvuaJdbsSaNqaJdaJdaJkamYaJfaJgaJhaJmaJoaADaTBaADaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIbxZbyabybbyfbybbygbyhakIaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaIAaHFaHFaIEaIHaIIaQhaKvaIPaIQaHMaOZaITaFjaFmaFjaFjaFjaNKaNLaNNaNLabSabSaYSabSabSaNOaNSbebbeObePbgmbgyaXuaBYbaBbaHbaMaydcCpaYVaNIaHtaHtaHYaVAaQFaIvaHYaDNaGEalZalZaogaogapBaogaogaogalZaOJbfvbgJbgRbhabhcbhgbhlcuAaaaaaaaaUaaaaaaaVsaVsbhqbhvaVxbhObidaVsaVsaaaaHAbsRaIKbvGbvRaWyaTrbiXaSOaJdaJibfHaJlbDeaJdbtmbvTaOibmIaJdaJdaJdaJdamYaLNamYaLPaMeaUxaMFaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibybbybbybbyjbybbybbybbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaJeaJnaIEaJuaJzabOaQNaGnaJBaJGaHMaOZaJKaGqaOraSsaOsaGnaNLaNLaNLaNLaNLaLZaZMaOvaNLaNLaOwbebbebbjvbjCbjDbjDaOBaOBbcRbcRbGIcCqbaJaOSbGIaPbaHYaWibbaaJWaHYaDNaGEalZaogapBapGaxVaxVayKaogapBaOJbfvbjLbdPbdPbdPbdPbdPcuyaaUaaUaaUaaUaaUaVsbjObjYbkaaWUbkabkvbkwaVsaaUanKbCGaKkaKlbCIaYmboAbkKbkQaKQaKUbdqaKVaKXaKQbdobdpbdpaZibcobdmbdsbdwaOtaOuaQyaMJbdBbdXbdnaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayecrBbyibyibykbybbylbybbymbyibyicrCayeaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaLEaHFaIEaKAaKEaKGaRaaKKaHMaKLaHMaOZaKPbdQaKSbWeaIPbfAaPoaPqaPqaPqaPzaPBbbpaPHaPqaPqaPqaPMcDpcDqcDraNOaQnaNOaQoaPraPraPwaRbbcfaQDbGIbGIaHYaWobcKaHYaHYaDgaLialZaogaFcaFNaGpbfjbfkaxVaogaOJbkWblDaOJabpabpabpabpbccbrsbrsabpabpabpaUqbmkbkabkabmsbkabkabmtaVsanKanKbCKaTUbCQbDJaYDcAFbmAbmBaJdcCsbetbfzbetbfBbetcAJbfKbfLaJdaLAbfQbfTbfVcCtbgobgpbgrbhVbdnaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibynbynbynbynbynbynbynbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaLyaHFaIEbhBaLIaReaRlaLQaHMbPtaHMaSaaSiaSBaSWcPsaTfaTuaTDaUCaUCaUCaUGaUVbcNbcQbdxbexbcQbcQbeLbhzbhWbcQbcQbcQbixbiCbiCbmCbjUbkebkPbkUblmblnblrbmgaRQaTbaUMaUTaHUaxVbfjaxVaxVaxVaxVaHVaogbmFbmJbmKaPNaPNaPNaPNaPNbcOaPRaQpaQqaQraQrbmObmUbmVbnbbndbnobnwbnBbnBcALcAMcANcAOcAPcAMaYEbCLbnEbnFaKQaLDbmubmxbmXbrtbsecARbsWbtMaJdaJdbugaJdamYbeAamYbuTbuUbuYbdnaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibypbyqbyxbynbyybyzbyAbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaMQaJnaIEaMXaMXaXSaXTaGnaNgaNiaHMaSaaYhaGqcDsbdSaYyaGnaNLaNLaNLaNLaNLaYBaYJaUCaYOaNLaNLaNLaRmccQccRaNLaNLaNLbcSbeJbeJaYPaYQbmqaZJaZJbaqbmyaXqbmDaYeaWvbflbaIaHUaxVaxVaLOcsCaxVaxVaRraogbnTbnSboibesbesbesbeybesbescuxcuxbesbesbeDaUqbokbkaboVboXboZbkabmtaVsanKbCMbCNcCAanKbCPaYFboAbchbpcaJdaLRaUsaLpaLSaJdaMdbuZcCBbvfaJdaMkbuLaMkaMsaMtamYcCCbyobMmbdnaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibyBbynbynbynbynbynbyCbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaNFaHFcsDaIEaIEbbbbbcbbdaSWaSWaSWbbecsraNRaNRaNRbbfaNRaNKaNLaNLaTOaNLbbgaNLaNLaNLaTOaTYaNLaNLccSaNLaUDaUEaULaQobftbftbftbgcbmLbeJbGIbGIaNTbbjbmRaNTaNTaOaaObalZaogaxVaxVaxVaxVbfjaxVaogbnTbofbsxaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUcuyaVsbprbpsbptbpHbpJbrAbpZaVsaaUanKanKanKanKboAbeQanKaSIbqaaJdaJdbuQaMLaMLbvuaJdaJdaJdaJdbvuaMkbuLaMkaMsaNwamYbuNapVamYaCJaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUbyibyGbyHbynbyIbynbyJbyKbyiaaUayeaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacQTcQUaPpaHFaHFaHFaHFbbDbbGaHMaHMaHMbnGaNRaNRbiqaPtbsfaNRaVjaVjaVlaTPaVubcHaVJaVJaVLbhhaWkaWlaXwaXBaXGaXRaXRaXRaXRbdgbdgbcRbgdbgubeJbGIaPbaNTbdabnKaUOaNTaPIaPKalZaogapBaRLaxVaxVaxVaogapBaRJaQJaaUbQeayeayeayebQeaaaaaaaaaaaaaaacuyaVsaVsangaRFangapdangaVsaVsaaaaaaaaaaaUarEaYCbjwbqbbqkbnFbqlaZDbvkaZebaYbAObdAbhebhibhwbdAbdAbhCbdAbhDbhEbfXbDjbgjaMsaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibyLclDbynclEbynclFclGbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbikcQVcQWcQXcQYcQQcQZbitbiFbjubjJbkAblfblyblAaYRbnIaNRaNRaNRaYTaYTaYTbnZaYWaYXaYTaYTaXRaXRaXRaYYaXRaXRaQGaQKaQLaaaaaUbdgbgdbeJbeJbGIbGIaNTbolbnLaQUaNTaPIaPKalZalZaogaogapBaogapBaogalZaRJaQJaaUayeaaUaaUaaUayeaaaaaaaaaaaaaaacuzcuAaVsangcogcohbfIangaVsaaaaaaaaaaaaaaUatfbrfbwuavmbrgbrhbribwEbwFbhFbwObxcbxgbxpbyMbyObxpbxpbySbzQaOAbtgbtrburbuubuIaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibyBbynbynbynbynbynbyCbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacQTcQSaGqaQWaQWaQWcDtcDuaQWaQWaGqaGqaNRbjFbqhcsEaRoaRwbaoaNRaXfbaAbaCbqibaFbaDbaGaYTazdaRIaRWaScawOcjyaRWaRWcjqaaaaaUbdgbgGbeJbeJcrrbgLaNTaSlaSmaSnaNTaPIaPKaStbvvalZalZalZaSGaSHaSHaSHchmaQJaaUbQeaaUaWjaaUayeaaUaaaaaaaaaaaaaaacuzcuAangbntcfyclHangaaaaaaaaaaaaaaaaaUaKTattbnlbrjbrybrEbrWbIXbVibXcbEibFdbvsbvxblPbBbbvsbvIaMncclbvNbvObvPbvSbvVaMsaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyiclIclJclKbynclLclMclNbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUbkCbmjbaPcDwcDxbuMbuOaaUaaUbuRbydbuGbvJbAnbCebDkbEmbFHbFIcPtbIlbIrbIVbbMbbPaTSaTSaTSaTTaUcaTSbsbbzTaQLaaaaaUbdgbgdbeJbeJbjjbGIaNTaNTaNTaNTaNTaPIaPKaStaUhaUhaUhaStaRhaStaZzaaaaaUaQJaaUayeaaUaWjaaUayeaaaaaaaaaaaaaaaaaaaaacuyangangbvbangangaaaaaaaaaaaaaaaaaUarEattbwpbsObtqbttbtucsBcvJbhGcwtczNaMAaMAaMAaMAaMAaMBaMDczOaMsbwbbwcbweaMsaMsaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUbyibynbynbynbynbynbynbynbyiaaUayeaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkCbBtbCdbEqbFybAXbuOaaaaaabKpaUBbIWaUFbKGaNRaNRaNRaYTaYTbcsbcJbcxbKgaZAaYTaRWaRWaRWaUHcjqaQLaUIcnqaQLaaaaaUbdgbgdbeJbtGbjjbdgaaaaaaaaaaaaaStaPIaPKaStcjMaUPaUQaStaRqaStaaUaaaaaUaQJaaUaaUaWjaWjaWjaaUaaUaaUaaUaaUaaUaaUaaUcuzcuBcuCaRuaRXaaUaaaaaaaaaaaaarEarEarEattbwMavmavmbtJbsObwjbwnbhHczQczRczSczTczUbtcaNcaMAbEjczVbmoaMsbmoaMsaMsaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyiclPclQclRcrDclSclTclUbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaQWcDBcjQcpscDCbENaQWaaUaaabKJbKKbKKbKKbLeaNRaaUaaUaaUaYTaYTbOYcvZcwaaYTaYTbcRbcRbcRbcXbcRaUXaUYaVecjqaaaaaUbdgbgdbeJbeJbjjbdgaaaaaaaaaaaaaStaTnaVmbjAaVvbCCaVMchoaRqaTsaaUaaaaaUaRZaSqaSqaSuaSvaWjaWjaTyaWjaWjaTyaWjaWjaWjaWjaWjcuDaSvaSwaaUaaaaaaaaaaaaarEbGJattbtPbxqbVzaMIbmSaMIbmWbmWbhLczXbuhbuWbvaczYczZbvQaMAbvUczVcAacAbbwkbmWaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibyibyibyibyibyibyibyibyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkCbLhbLkbMhbOJbOLbuOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdgbdjbdrbdrbdrbdybdgbdNbcRbdUbelbcRaZEbewaRHaQLaaaaaUbdgbgdbeJbeJbjjbdgaaUaaUaaUaaUaStaPIbtRaVvaVvaZbaVNaStaRqchoaaUaaaaaUaaUaaUaaUaRZaSuaWjbtwbtTbtZbudbtTbtwaaUaaUaaUaaUcuDaSyaSMaaUaaaaaaaaUaaUarEbFecqrbwobytbVKaMIbwqaMIbEQbwsbiocAdbwvbwxbwycAecAfcAgcAhcAicAjcAkcAlbwHbwIbCUbCVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaacrEaaaaaUaaaaaaaaaaaUaaacrFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQWaQWaVPbRbaVRaQWaQWaaaaaabdgbdgbdgbdgbdgbdgbdgbdgbdgbdgbeFbeJbeJbeJbeMbdgbeJcmdbeJcplbcRaVSaUYaVeaQLaQLaQLbcRboobeJbeJbIPbGIaStaStaStaStaStaPIaPKchobuebuebuebueaRqaStaaUaaaaaaaaaaaabtTbtTbukbtTbuqbtTbusbuEbtTbuqbtTbtTaaaaaacuyaSwaaUaaUaaUaaUaaUaWjarEatfarEarEbyubGXbwWbwXaMIbxbaNWbiDcAnbxhaMAbxibFzbVHbxraMAaMAbxsbxybhAbxGaMIaMIaMIaVTaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaayeayeayeayeayeayeayeayeayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaQWcptbOQbBjaQWaaUaaUaaUbdgbeNbeRbeJbeJbeJbeJbeJbeJbeJbeJbeJbeTbfdbfdbJybfdbfdbfdbfibcRbcRaWbaWcaTSaTSaTSbgNbTwbiSbiWbjebjhbjkbjkbjkbjkbjkbjpbjHaWqbuebvcbvgbuebvzbueaRvaWRbtTbvBbtTbtTbwhbwzbwBbwCbwLbwQbwSbwTbwZbxabtTbtTbtTcuEaTkaTlaTlaTlaTlaTlaTlbxPbxSbyvbAdbAzcbRbwWbwXbAkaNWbxdcAqcArbyPaMAcCEcAsbwAbyYbzfbzgbzlbzibgPbzmceGceGceHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkCbORbOSbRcbuOaaaaaaaaabdgbgxbeJbeJbeJbeJbbIbeJbeJbeJbeJbeJbbIbeJbeJcaWbeJbgzbeJbgAbgEbgFaRWaRWaRWaRWaRWbgFbgEbjRbqdbqnbqFbqGbqGbqGbqGbqGbqWbrcbrobxfbysbyEbyFbyZbzDaaUaaabzEbzFbzMbzPbAebAibAmbArbwLbBkbBvbBBbBCbBFbBHbBVbBXcuDaQJaaUaaUaaUaaUaaUaWjarEbzobANarEceQceSbwWbzLaMIcCFbBKbkEbkLbkNaMAcAwcAxbAjcvPbApaMAbkgcAybzObAxbAKbAKaMIbALaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaTxaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabVNbXIcbibXIcbpaaaaaaaaabdgbdgbdgaXkbdgbdgbdgbdgbdgaXkbdgbdgbdgbdgbdgbdgbdgbgxbiibLHbLJbcRbcRbcRbcRbcRbcRbcRcoOcCGbcfbjjbGIaWBaWBaWBaWBaWBaUhbkVbwabBYbCcbCubCwbCybCEaaUaaabtZbCRbCTbCZbDDbEebEhbExbEYbFabFbbGbbGkbGybtTbtTbtTcuyaQJaaUaaaaaaaaaaaUaMIaMIaMIaMIaMIcgTbmWaMIbwXaMIbmWbASbmWbmWbmNaWEaWFbhUaMBaMBaMBaMBbPqbTUcaDbBhaMIbASaMIaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbGKabMbGPaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUbdgbjgbdgaaUaaUaaUbdgbjgbdgaaUaaUaaUaaUaaUbdgbdgcoPbjibLVbLXcpcbcRbjGbjXbkubcRbkxbUwbwUbkxaWBaWBaWGaWIaWIaWBaWBaVvbwYbuebGZbHabuebvzbueaRvaWRbtTbtTbHcbKlbKrbKLbLobMzbMBbMIbMSbMWbNfbNkbNlbNnbtZcuyaQJaaUaaaaaaaaaaaacgdcgXcgYcgZchachcchvchwbBpbznbznbCqbBqbBrbngbznbBDbiNbznbznbznbznbznbznbznbBGaMIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbGKabRbNoaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpCcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdgaXlbdgaaaaaaaaabdgaXlbdgaaaaaaaaaaaUaaaaaUbdgbdgblibfibLYbjjbcRblkcpnbllbcRblocCGbcfblCbslaWKaWMaWOaWPaWQaWBbkRbwYbuebNNbOBbOCbOVaStaaUaaaaaabtTbQtbQWbRlbREbSzbSDbSFbSIbBvbTFbBvbUcbvBbtTbtTcuEaQJaaUaaaaaaaaaaWRbwWbimbwWcifcigbmYbwWbwWbwWaMDbwWbwWbwWbwWbnMbwWbmSbiYbwWbjzbxGbwWbwWaMDbjzbAKaMIaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbUeabMbNoaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacutaaaaaaaaUaWZaWZaWZaWZaWZaWZaWZblEbLYbjjbcRblFblJblKbcRblocCGbcfblOcjJaXoaXrbPzaXyaXzaWBaWBbwYbuebuebuebueaRqaStaaUaaaaaabvBbUgbUpbULbUYbVabVubVAbXpbXMbXMbXMbXMbXMbYfaaacuyaQJaaUaaaaaaaaaaaabeEcikcilcimcckccIcinciqciqciqciqciqciqciqbohciqciMbnecgYcgZbxFbxFbyWbzhciGciOcjcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbScbScbWcccadlccfabMaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaXCaXDaXEaZfaVGaWZbBWaVdbmhbmibmnbmZbmnbnabncbpxbCibnraXHaXIaXJbQfaXNaXUaXVaXWbClaXYaXZaYdchocjDaStaaUaaaaaabtTcchccibtTccjbtTbvBbtTbtTbvBbtTccnccobtTbtTaaUcuyaQJaaUaaaaaaaaaaaUbwWbwWbwWcmDbwWbmYaMDbwWbwWbwWbwWbwWaMDbwWbpIbwWbmScAzbwWbzHbxGaMDbCBbwWbAKbAKaMIaRvaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaWRabMabRabMabRccrccsabMaaaaaaaaaaaacpBaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaYgaYkaYkaYkbnuaWZbgAbLYbnvbnxbnzbnAbnDbnPbnRcCGbcfblOcbAaYnaXraYsaXyaYuaYvaWBbCnbCoaXXaYxaStbnUaStaStaaUaaUbtTccybtZbtTaSwaaUaaUaaUaaUbvMbtTccAccEbtTaaUaaUcuDaRZaSubghbszbszbszbszbsTbwWciSciVanmarpciVciVciVciVciVciVciVbqgciVciXbqfcilbJSbXsbELbICcihciVciVcntaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccHccJaaDaaYccOccPabMaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaYzaYkaYAaYkbnVboeawwbQgboubpnbpwbpybpCbpFbpGcCHbCpblOcbHcdacjGcjZckgckYaYNaZdaWdaWdaWdaWdckIbxmaWdcpGaSqaSqcjEaSqaSqcjEaaWabyabyabyabHacYbtTccybtZbtTaVtaTlcuGaVKaYUbGQaTlaTlaTlaTlbGQbCjbCjbCjasubCkbwWbwWbwWbwWbwWbwWbwWbqubwWbmYbqHbmWbmWciibAKbVjaMIaMIbASaMIaaUaaUaaUaaUaaUaaUrTWopdopdopdopdopdopdopdopdopdopdopdopdopdopdopdopdopdbGhaaUaaUaaUaaUcdbabMcdiaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaZfaYkaYkaYkaYlaWZawLbQwbQxbQxbQxbQIbQxbQYbQxbRfbcfblOckZaZjaXraYsaXyaZnaWBaWBaStchoaZoaZoaStbnsaStaStaaUaaUaaUaaUbghbszbszbszbszbszbAAadzcjFaTlaTlcjFadNqeqeUFcxacxbbITcxccxccxccxcbHeanranranranraqkaaUaaUaaUaaUaaUaaUaMDbrabrrbrPbrYbCtbmWcjgbjzcipaMIaaaaaaaaaaaaaaaaaaaaaaaaaaatpQaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUbHgaaaaaaaaaaaUbGKabRbNoaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaZraZsbegaYgaZuaWZaGCbLYbqjbqAbllbllbllbqKbqYcCGbcfbafaZvaZwaXraYsaXyaZxaWBaaUaaUaaUaaUaaUbrsbxnbrsaaUaaaaaaaaaaaabIYaaUaaaaaaaaaaaabMKbszbMXbszbszbMXbszbPhbszbPrbszbPXaaaaaaatFatFbHAbHObHObHObHObRnbsTaaaaaaaaaaaaaaabwWbwWbCrbrXbsiaMIaMIcjiaMIcpEaMIbJjbJvbJvbJvbJvbJvbJvbJvbJvwPSaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxbHgbalaaaaaaaaUcdqabMbNoaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaWZaWZaWZaWZaWZaWZaONbLYbjjaZyaZCaZIbazaZybrMcCHbCsbRsbRPbRQbRUbSVaXybEsaWBaaabunbupavvavvavvavyavvavvavvbuvbuxaaabIYaaUaaaaaaaaaaaaaZpaaacdtcdGcdUcdtaaaguKaejsVCaejaaUaaaaaaatFausausaOPausausatFqlJbRoaaaaaaaaaaaaaaaaaabwWcwvbshbsvaMIaaUaaaaZGaaabLwbLSbMpbMpbMpbMpbMpbMpbMpbMpbMtaXxbcabRKbcaaXxbSbbSibSbaXxbTHbTIbTHaXxbTKbTLbTKaXxbHgbalaaaaaaaaUaaaaZGaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaabdgbaZbdgaaaaaaaaabdgbaZbdgaaaaaaaaaaaUaaaaaUbdgbdgbeJaGCbLYbjjaZybczbeGaZNaZybwrcCGbcfbxkaWBaZQaZRaZSaZZbacaWBaaUbxlajOajOajOajOaloajOajOajOajObxlaaUbRocdVaaaaaaaaaaaaceqaaUcdtcercescdtaaUhXkagcaNHagCatFaRDatFatFausbcMbiublXausatFqlJbRpbszbszbszbszbszbsTaaUbAQbsubsyaaaaaUaaaaaaaaabMMkxwcwAcwwcwwcwwcwwcwwcwwcwwpguaXxbcabcabcaaXxbSbbWpbSbaXxbTHbXebTHaXxbTKbXRbTKaXxtpQaaUaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaUaaUaaUbdgbjgbdgaaUaaUaaUbdgbjgbdgaaUaaUaaUaaUaaUbdgbdgbyVbSWbTubTybjjaZybadbaebCSaZybkxbUwbwUbkxaWBaWBaWIaWGbagaWBaWBaaaawqajOaGibCvavYawnaxZazeaGiajOazqaaabIYcdVayeayeayeayecetcdtcdtcewcescdtcdthXkagTbErbEKatFciTciUcmhauscmicmjcmkausatFbcGanrcJxanranranranrbHeanrbxtbxKbsyaaaaaUaaaaaaaaabMMkxwcwAbMYbMZcpMbNbbjEbkHcwwpguaXxcatbZIcKQaXxcKRbZLcKSaXxcKTbZOcKUaXxcKVbZPcKWaXxbHgbalaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaabdgbdgbdgbhSbdgbdgbdgbdgbdgbhSbdgbdgbdgbdgbdgbdgbdgbeJbzBbUybUCaZyaZyaZybahchPbakbakbrIbVJbCDbjjbDNaWBaWBaWBaWBaWBayeaaUawqajOaxIaxIajOaISajOazJaxIajOaCUaaUbRocdVaaUaaUaaUaaUcetceKceLceMceNceOcePcJpbFgcJAcJBcJCcJDcJEcmpauscmqcmrcmsausatFcmtbcIcJFbcIbcIbcIaaUbRoaWjbzpbDbbTJaaaaaUaaaaaaaaabMMkxwcwAbMYbMZbNabNbbNqblzcwwpguaXxcKXbZRcKYaXxcKXbZRcKYaXxcKXbZRcKYaXxcKXbZRcKYaXxbHgbalaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaabdgbECbeJbeJbeJcoQcmdbeJbeJbeJbeJbeJcmdbeJbeJcaWbeJbeJbgAbJGbVQbVUbVVbavbaRbaSbAIbawblocCGbcfbFAcpvbGIaaaaaaaaaaaaaaaaaaawqajOaxIaNhajOaNoajOaNraIXajOaCUaaabIYcdVceRceRceRceRcetceKceTceVceWceXceKhXkapmaqOapmatFcmucJGatFcmwauscmxausausatFauRbgwbRAsdpaXpbcIaaabRpbUjbUVsVCbsIbfWbfWbgibgibgiifCbPAbgMbPBbPCbPJbPLbQKbNdcwwgGGbfWbQNbfWbQObfWbQNbfWbQObfWbQNfuEcLarTWbQSopdbQVopdwPSbalaaaaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaabdgbgxbeRbeJbeJbeJbeJbeJbeJbeJbeJceIbeTbfdbfdbJybfdbfdbWfaZyaZyaZybWgbWhbWibWjbWkbWwbWEbWFbcfbjjbDNbGIaaaaaaaaaaaaaaaaaaawqajOaGiaNzaOIaJpaPfbCFaGiajOaCUaaabIYcdVcfacffcfacffcetcdVcdVasUcJvaeIaeIhXkaqSanEaqTatFatFcJIatFatFatFatFatFatFatFaYLbgwcJJbUXbVbcwycwzaaabVDcafcdpbRvbJvopdfuifuifuibJvwPScwAxojuAYbRCcwBqgObNEcwwvsOtuFnLVqHLonycwwcLbcwAcLccwwcLbbWKcLcwbucLbcwAcLccwwaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaabdgbdgbdgbdgbdgbdgbdgbdgbdgbGIbGIbGIbGIbdgbdgbdgbGIblcbXmaZybTpbJmaWgcsGaWhbaScdEaZyblocCGbcfbIPbGIbGIaaaaaaaaaaaaaaaaaaawqajOajObDwbDUbDWbEZbDwajOajOaCUaaabIYcdVcfocfocfocfpcfrcftcfuarBmkxaQxarNtjbarPanEarQarOarYcJKasiasvaqUcfvastasIaqUcfwbgwbsXbgwcfxbcIaaacwDaaabamsVCbsDaaaaaUaaaaaaaaaaaUaaacwAcwxcwFcwGcwBchOcwwcwwchSlRycLdeTZxcObUacLecLfeIhbhJcLhcLifgScLgcLjcalcLkcwwaWjaWjaWjaWjaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbXPbXVbXVbXVbXVbXVbXVbYdbYPbZQaZybRebbmbbobQAcmNbbrbbsaZybGrcfzbGtbGAbdgaaUaaaaaaaaaaaaaaaaaaawqajObFfbFvbGgbGBbGDbPKcReajOaCUaaabIYcdVcfpcfAcfBcfCcfEcfFcdVaswcJwasDarFasxcphanEcpiasCawWcJLasiasNasGasIasIasIasMbapbdkcJMuwKbhsjMOjyujyucPzcPAcPBbwwcwIcwJcwKcwIcwKcwJcwIcwLcPCcwMcPDcwBcpNcpOcwwcpQftiftivcbhKCcMrcMocMocarcMocMoxKrcarkOGcMocLlctkcwwcwwcwwbFYaWjabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbGIcoSbWqaZybawbawbawaZyaZyaZyaZyaZybIZcCGbJBbGEbdgaaUaaaaaaaaaaaaaaaaaaawqajOaPEbHpbIFaHqbJkbKxaZPajObbuaaabIYcdVcfCcfHcfHcfIcfJcfKcdVatbcJNasRasSasSasSaQTasSasSasScJOcJPcJQcJRcJScJTcJUcfLcJWcJXcJYbhmbmmbcIaaaaaaaaabamsVCbsDaaaaaUaaaaaaaaaaaUcwAcwAcwwcwwbVEbVXbWGbWGcIscfMcfPcfTuVDcVOsRDhMZiAWtXViAWiAWnvniAWdVRqvBcLsprxcfVcJmcJmcJnaWjaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdgbdgbGIaXcccNaXgbZAaXebZCbZVbaEbJCbKRbZHbVIcCGblBbLgbGIaaUaaaaaaaaaaaaaaaaaaaOeaQabaWbLmbLzbkibLCbmvbmHaQaaQjaaabIYcdVcdVcfWcfWcdVcdVcgbcdVavlasRasRauCauDauNaybaTQauYavcasRasRavAawsclxcJZavwaqUbcIbcIbcIbcIbcIbcIaaaaaaaaabYlbZpcPEcbGcbGcbGcbGcbGbWJcbIcbLcbNcgecbTeKMcRgcJotyIcbUmEacggmqBsRDcMonAFfIwtZjcJucJucJujonxCycghcLsvxUcwwcwwcwwcwwaWjaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaceDbuBbjgbzbaXcceibfdcfQchUcjvbZJbRZbZKcnNbZHblocCHcCIbMGbGIbGIbGIaaaaaaaaaaaaaaaaQvajOaYZajObNebPpcRfajOaYZajOajOcjHbRpcgicglcgocgocgpcgucgwcdVaMaaweavEavHawXavKaxtavUazEawaaOQaweazhaqUawAcKabRdaqUbbFbbJbbJbbLaaUaaUaaUaaUaaUbamsVCcPFaaUaaUaaaaaaaaamITcwAcwAcwwcwwcwwcwwjiZcMHcMJjXocLVcgxdpOcMecgzlcDwWHjmliAWhloiAWxjksHBcgAcLscLWcwwaWjaWjaWjaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdgbdgbGIaXcccNbjgbZAcjwaYcbZFbZFbZFbZFbZAaYHcCGblBbPRbGIaSVbGIaaUaaUaaUaaUaaUaaUajObeuajOajObPUbPVajObhtbmMajOaaaaaacgDcgRcgScgUchbchgchjchkcrvasSavQaxMaxQaxRaCZaynayoclAbevclBaOdaqUchlcKbazgaqUbbNbbFbbLbbNaaaaaaaaaaaaaaabamsVCcPFaaaaaUaaaaaaaaacJranrbdRaaUaaUbhIbhIbhIbhIcLXcLmchnchptZCcaicaicaintCcVqcJHcJHcJHcaixkCchqcLsccGcwwaWjbalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbdgaXcccNbUtbZAcjwbZFcpucsHcjxcCJcCKcCLcCMblBbGEbGIbGIaRybqXbqXbqXbqXbqXbqXaRybeKaRybQbbQibQTaRybcYbcZbdiaaUaaUcdVchrchrchschtchsaXFchuaOEasSavQaxMbeHaAyaRGaFUbCbaLFcbJasSaOMaMzaNxcKcaNQaqUbbNbbNbbNbbNaaaaaaaaaaaaaaabamsVCcnQaaaaaUaaaaTxaaaaaUaaamITaaacakbhIbhIcLYcLZcMacMbeCychxqWYrdFfkxfkxnEXcMccMdcMecMecMgcMecMhcLscMicwwaWjbalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaabdgceEbdgaaaaaaaaaaaaaaUbdgaXcccNbaibqBckebaybaxbaybaycnPbZHaYHcCGbRgbRybRBbRWbSkbSrbSsbSsbSsbSsbStbSObTXbUicnRbUUbVqbVCcydbVFbWmbWvbWvchychzchAchschtchBchDcdVaQcasSavQaxMaxQaOkaOlaOqayoaxMaOxasSaOCchEchFchGchIchKbbObbNbbNbbNaaaaaaaaaaaaaaacJgcJqcJsaaabbTcmHbbTcppbbTaaUmITaaacamcancaocapcaqcMjcaschLchMrUlcMkcMlmNNhDzcMmcMncMocMocMqcMrcMqcMsiQYcwwaWjbalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaabdgbjgbdgaaUaaUaaUaaUaaUbdgaXcccNbaVbZSclubZUceabKwbaXbZSbZSbGIcCNbWHbSAbGIbgYaRybqXbqXbqXbqXbqXbqXaRybWIaRycJtcNCcPGcRhcRsbTScjIaaUaaUchNchXchYchZciacibcidcdVclzasSavQaxMaZtaORaOVaOYbeiaxMaPcaPdaPeciecirciDciHchKbbLbbNbbNbbNbbVbbVbbVciIbbVbbXcRtbBLaaabbTcrhbbTcgjbbTaaUmITaaacakbhIbhIcMtcLZcMucMbcMvgDYcMwceUcMxcLocLpcMycMzcLqcMAcMBcMCcMDcMEcMFcwwaWjbalaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbGIceFbGIbGIbGIbdgbdgbdgbGIaXcccNcKFbZScmPcnWbZXbZHbZHbZSbSBbTtcoMbWMbTwbTtcgCbGIaaUaaUaaUaaUaaUaaUbfhbWNbfhbfhbWPbfhbfhcgFcgGcgHaaaaaabWQcdVciYciZcjhcjscjucdVaMaavCbemaPhavIaPmavQaPOavVaPPbeqavCclCcjKcjLcjUcjXckmbcbbbObcbbbObbVbfNbggbgvbbVbbXbvWbBLbbVbbTbVxbbTcgkbbTaaUmITaaaaaaaaabhIcaubhIcMGcMHcMIjiZcfscMJcMJnBMoMBcMLcMJnBMcMNcMLcMLcMMcMNcMOcwwaaUaaUaaUbalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaabGIbeJbeJbeJbeJbeJbeJbeJbeJaXccoZbbnbZSclwbbqccYbZHaaUbGIbTTbGIcprbZrcwWbGIbTTbGIaaaaaaaaaaaaaaacgIcgJcbjbfhbrbcbVcbYbfhbfhbfhcgNaaUaaUbWQcdVcktckuckwckyckzckAaQdaQeaQeaQkbeIaPmcmXaPOaQscrsaQeaQeaQCckmckBckCckFckmaaUbbVciIbclbbVbhkbgKbhkbbVbcnbvXbCmbhubbTbVwbbUcgjbbTaaUcJranranranranranranranranranrhlVcMPcxccxccfDmxWcLaaaUcKZaaUcMQcMRcMSaaUcMSaaUaaUbalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaabGIbeJcisbbIbeJcoRbeJbeJbbKaXcblOcKGbZSbZZbcpcabbZHaaaaaabTWbutcpxcdebTYbutbTZaaaaaaaaaaaaaaaaaacgNbyecdfcdhbzNbzRcdnbBRbBSbEocgOaZBaZBcdockJclYcmfcmgcmEcmGcmYcksckxasRasSasSbBoaRpbCWasSasSasRaRRaRVcnhcnocnrcnsckmckmckmbjIbAabhkbhkbhkbhkbhkcnvbwdbwgbhrbbTbVybcVbcjbbTbbTaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaXxcKXbZRcKYaXxcKXbZRcKYaXxcMTbZRcMTaXxaaabalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaabGIbGIbGIbGIbGIbdgbdgbdgbGIbGIbGIbGIbZSbZHbZHbZHbZHaaaaaabTWbutcpxcmFbTYbutbTZaaaaaaaaaaaaaaaaaacgNcmIcnybzNbzNcvBcpfcqfcqhcqmcgNaaaaaaaPgcdVcnxcnKcofcokcoTcdVcrvcqPaSKaSKaSLaTmbkJbvYbwJcpjcrwcpjcJlckmcpacpkcpocpAcpFciebkBbkMbwibwtbwGbxebwtbxLbxUbzCbbTbbTbVwcrdcgjbdTbbTaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaXxcLtcaycLuaXxcLvcaFcLwaXxcLxcaJcLyaXxaaabalaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaabTWbutcpxcrkbTYbutbTZaaaaaaaaaaaaaaaaaacgNbXabXkbYTbYUbOzbYUbYXbXkbZacgNaaaaaaaPgcdVcpKcnKcofcokcpLcdVcrxcrlaSraTWaTZaUbaUfasBbfnaUraUtaSrckockmcpRcpScpTcpUcpVckmbmPbjablNbjabjabjabBicpWbBTboCbdZbkmcwcbejbenbeXbbTbbTbbTbffbfCbfCbfCbfCbffaaUaaUaaUaaUaaUaXxbkZcaKbkZaXxblLcaLblLaXxcpXbpqblMaXxaaUaaUaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaabTWbutcpxcmFbTYbutbTZaaaaaaaaaaaaaaaaaacgNbfhcgLbYScgMcwdcgMbYScvCbfhcgNaaaaaacetcdVcdVcdVcpYcdVcpZcdVaeIcsQaeIaVBaWVbARaeIbARaXhbmTbpKaeIaeIckmcqacqccqncqocqpcqqbKjbKBbKXbLnbLvbLAbLObLPbLQbLRbrRbrVbuzbejbejbeUbfEbgkbEkbgQbfbbgSbgUbUSbfCaaaaaaaaaaaaaaaaXxbkZcaMbkZaXxblLcaNblLaXxblMcaSblMaXxaaaaaUaaUbalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaabTWbutcpxcmFbTYbutbTZaaaaaaaaaaaaaaaaaaaPgbfhcvDcvEbYYbYZbYYcvEcvDbfhaPgaaaaaabpLbpNbBEbBOcwqbBObBObBObBOcqsbxzcqucqvbnfbnpbnqcqwcqxcqybQqbpvckmckmcqAcqCcqDcqEckmbbVbclciIbbVbbVbbVbbVbuHbLTbTxbbTcPHbAubfscqFbeUbihbbTbfDbffcmWbGLcngbAvbffaaUaaUaaUaaUaaUaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaaabalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaafaawaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaabTWbutcpxcwUbTYbutbTZaaaaaaaaaaaaaaaaaaaPgbfhcvFbYSbZbbZcbRxbYScvFbfhaPgaaaaaabBObCabCabUBcwVbPvcxdbSmbSncqGbwPbwRbwVbwRcmObEWbSxbwPbEWcqIcqJcqKckmcqLcqMcqOcrbcrmbfGbfGbfGbfGbfGbfGbTVbBzbQhbUbbUfbfUbCxbfYbfZbeUbkbbkdbVdbgQbicbipbCHbPWbfCaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaabalaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaawaafbgDaafaawaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcwbcwbcwbcwbcybcybcybcybcybQeayechCbrscnIaaUaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaUkaUkaUkaUkbmEbUqcrVcATcwXbUqbUrbUqaaaaaaaaaaaaaaacgPcgJcgJcgJcgJcgQcgJcgJcgJcgJcgKaaUaaUbBObSobSpbSqcAUcBdcBdcBkcBlcrtcBncBxcBycBxcfUbQFbQGbQHbQFbQMcdgcrucsqcsscstckmckmckmbgebgebbVbbVbbVciJbgfbPYbLTbUhbbTbFDbPZbejbejbeUbkjbbTbkXbffcbkctzbRucBzbffaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbalbalbalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaabnjaawacpacpacpaawbnjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaUZcRubdebeebdfbdtbecbedbcyaaUaaUabpbrscnJaaUaaUaaUaaUaaUaaUaaUaUkaTVaUiaUiaUiaTVaTVaTVaTVaUiaTVaTVaUkbmGbwKbmGbUubUvcrYcBAcqYbUvbUzbUqaaUaaUaaUaaUaaUaaUaaUaaUbfhbfhbZebfhbfhaaUaaUaaUaaaaaabBObSvbSwbVfcfhcficfjcfkbSncdmcBHcBIcBJcCRcmmcahcbdcdjcdkcdlcdscszckmckmckmckmbglbgnbgBbgebgHbgIbjfbUkbTkbUdbLTbUmbbTbgObUlblabABbLubkYcpmbUTbfCbfCbfCbUKbUMbfCbgTbgVbgTbgTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaUaaaaaaaaaaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaawaawacpbefbehbFracpaawaawaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbcwbcwbcwbcwmBPctjbekboJbcyaaUaaUabpbrsbgWbgWbgWbgXbgXbgXbgWbgWbgWaUoaUpaUuaUuaVhaTVaVkaVqciCaYfbHHaUkbmGbAFbmGaUkbUqcrZcCTbUEbUqbUqbUqaaaaaaaaaaaaaaaaaUaaaaaaaaUbfhbZebfhaaUaaaaaaaTxaaaaaabBOcflcflcfmcoscfmcflcflcflctlctEctGcdycdzcricdAcdBcdCbmQcducdvcdwbUNbUObUGbjZbglbhnbhobgebhpbDlbkhbUHbURcdxcdFbUZbbTcqtbVcbVhbVkbVrbVsbVGbXwbYMbYNcbOccuccXbijbhZbhZbilbgTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaabalbalbalaaUbalbalbalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaafbHZbJMcrGbKHcrHacpcrGcrHaaaaaabbvaaaaaaaaabbvbbvaaaaaaaaabbvaaaaaaaaabbvbbvaaabbvaaaaaabbvaaabbvaaaaaaaaaaaaaaaaaaaaabbvbbvaaaaaabbvbbvaaaaaaaaaaaabYgcrIcrJbUFblHfuRbcyaaUaaUabpbrsbgWbincfgbAwbiBcsFbiGbiIbgWaVWaWmcnuaWmbiPaTVbfubfxbzzbeoaWpcnmbmGbmGbmGaXtbaLcsJcCUbaObaQbbhaaaaaaaaaaaaaaaaaaaaUaaaaaaaaUbfhbZebfhaaUaaaaaactGctJctKctGctXcuucuwcuFcuHcuIcuJcuKcuLcuMctGcuNcPIcdHcPJbiLbiQbiRcdNbiQbiQbiVcdRcfnblqbjbcuObjcbgebjdcuPblubVgcfOcgabVlbVmbUPbUQctectfctgcthcticgnchdbjobgTcgEchechfbhKbhKbhKbjqbjrbgTbgTaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaawaawacpcrKcrLcrMacpaawaawaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbcybcybcybcyblTbOvbnmbzXbcybcwbcwbcybcwbgWbjsbjtbiAbiAcsNcvecqBcslcDHcDHcDIcDHcDHbAccsucuQcvMcuQczfczzcDNcDNcDNcDKcDOcDPcCYcDRcuRcuRcuRcuRcuRaaaaaaaaaaaUaaaaaaaaUbfhbZebfhaaUaaaaaactGcuScuTctGcuUcuVcuVcvacvbcuVcvccuVcvdcvgcvhcvicdJcdKcdLbkDcjYbjyciKbXfbiQcKgciLconbCzbjbbhnbjKbgebZibjMciIbVncjacgqbZdcbMbbTcvjcvkbkccjdcjecjecjeckibkkbgTbklckrckObknbknbkpbkqbkrbksbktaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcpCcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaabnjaawacpacpacpaawbnjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcnUbdcbfpbfobqJbfobwNbAlbgCbdfcnLbiKbiTbgWbgWbepbiAcDSbiAbkyczAcAQbbSbcBcDTbOtbcCbrwcAScpPctscwecoIaUkbmGbmGbmGaXtbblbUIcCUbFccvlcvmcvncvpcuRcuRcuRcuRcuRcuRaRvaaUbfhcjrbfhaaUaWRctGctGcvqcuTcvrcwrcwEcuVcypcvdcyvcyzcyzcApcBacBmcBBcdMcPucmvcopcotcouctdbkGbiQcLncLrcoobCzbkIbhnbkIbgeboGccWccZcfdcjacgqcfXcfYbbTcDgcDmbcVctmcsvctoblbcttctxctActBctCckOcnwbknbhKbldbleblgblhcqXaaaaaaaaaaaaaaaaaabljaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaawaafbLBaafaawaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcnUbyccwYblGbBNblIbJYboLbdfbdfbdfbdfbdfbnkbgWbVebiAcDUbiAbiAcBtbgWaUkaTVaTVaTVaTVaTVcDVaTVaTVaTVaTVaUkaUkaUkaUkbwmbbAbUIcCUbFccvlcDncDocFYcFZcGacGfcGgcGhcHZaaaaaUbrsbrLbrsaaUaaacIhcIicIqcuTctGcIrcuVcuVcuVcvdcuVcuVcuVcvdcJkcJycvicdJcdrcdLbkDbltcsdcwCcwPbiQcLzcwQcwRcgccicciccsmcwScxecgscgscgsbojbzwciPcJzcJVcKdcvkbcVblQbcVbcVblRblSblVbgVblWbVockObknbknblZbiwxxPbgTbgTaaaaaaaaaaaaaaaaaaaaaabpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaafaawaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcnUbdcbODbfobKIbfobLEbAGboRbpMbpRbpRbpRbqIbmbbVpbmdcDWcsLbiAcsxbgWbVLbVMbQZbIgbInbVMcDXbVRbVMbVSbVTbWabWrbWcbWbbWabbWbVBcCZcDacKecKfcLBcLEcLJcuRcLKcLOcLOcLQaaaaaUbrsbrLbrsaaUaaactJcLRcMUcMVctGcMWcMXcMYcMZcNacNbcNccNdcNecNfcNgcuNcdObqwcdQbiLcsebyrbmwctnbiQbmzbPxbPycxicxjcDicxkcxlcxmcxncxocxpcxqcxrcjBcjCbbTbenctpbnhbbwbbybcVbnibnnbnybgVcxscxtcxubhKbhKbhKbldbnCcgmblhaaaaaaaaaaaaaaaaaaaaabljaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUbZWbcybcybcybOrbWSbOEcnTbDLbFpbJwbJTbwDbHFbgWcsfcsIcDYcDjcDjcDvcEbcEccEdcEdcEebINcEfcEgcEhcEfcEicEjcEkcElbWocEmcEncEocEpcDQcErcNhcNicNjcNkcNlcNmcNncuRcuRcuRbbhbbhbcTbVWbcTbbhbbhctGctGcvrcNoctGctGctGctGcvrcNpcNqcNrcNscNtcNucNscNvcPKcdScPLboabobbobbobbobbocbiVbodbVYcAAbiVbiVbiVbiVbgfbgfbgfckqcxvcxwcgtbhrbbTborctqbnhbcibckbcmbcAbcAbdKbgTbosbVZchfbovbowboBboBboDboEboFaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaUaaaaaabcwbJYboQboQbvjbLcbLlbLxbDMbgWbgWbgWbgWcDycDybgWbgWbXrbWscsOcEsbIObWxbWxbWybWzcEtbWAbWabWBbWCbWLbWRbblbUIcEqbPQcNwcvlcvlcuRcuRcuRcuRcuRcvLbdCbdDbdFbdDbVWcIvcIwcIxcIycIycIwcIzcIycIAbdGbdHbdGberbeWbyTbeYbeZbSycIBbhTbbYbUsbUDbhTcjzbhYbiabibbzVcdPbeWbWncAIbiebdHcvNbdIcICbBUbgfbgfbgfcxxbclckvbbTbcVbkXbcVbcibdMbdVbdMbdMbmabgVbgVbgVcxybgVbgTbgVbgVbgTbgTbgTaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUbcwcKIcKJcKJcKKcKLcKMcKNbOubOvjyubOwbOxbPlbWTbWUbWVbWWbWscEucEvbIQaabbSEbufbSEcEwbSGbSEbSEbSEbSEbSHcoBcqecIDcIEcIFcIFcIFcIFcIGcIHcIFcIFcIIcIJcIKcILcIMcINcIObjmbjmbjmbjmbjmbWObjWcIPcIMcIMcIMcIQcIMcIRcIMcIScITcIMcIMcIMcIUcIVcIWbjmbXWbXXbXXbYmbXXbXXbYOcAZbZlbWObjmcNxbjmbnNbezbeBbrQcxzbfcbdVbrQbfectrbcAbfPbdMbdMbdMbdMbfRboMboNboIcxAboIboPboIaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUcNycNzcNzcNzcNzcNyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaUaaaaaaaaUaaabcwcbPbAPbAPbAUbAVbQXbWtbWubWSbXgbcybcybXxbXhbXlbXhbXhbXhbXhcExbIRbXockRbJubSKcEybSLbSMbSNbYVbSPbSGbblcqgbZmcEzccpccpccpccpccwcgvcgBcgBcgBcgBcgBciFciWcjVcgBcgBcgBcgBcmncgBcIXcKOcIYcoacoicgBcgBcgBcojcgBcozcoDbXXbXXbZlcoLcoNcIZcIMcJacIMcIMcJbcIMcIMcJccJdcqQcqRbXXbXXbXXcrccxBcxCcxCcxDbgsbgtbgtbgtbZwbgZcqjbhbcqkcNAbdMbhdboSboTboUcxEboWboYboIboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaacNzcNBcNBcNBcNBcNzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUcbbcbbcbbcbbcbbbcybcybcybcybRibRjbvybvybRkbcybXSbRmbcwbXTbYabXybXAbXBbXJbXKcEAbIQbXQbSEbSQbSRcEBbSSbSTbSUcECcEDcijcEFcEGcEHcEIbqobqrcpHcJecsMcoEbqrbqxbqrbqrbqraYGbqCbdubTvbYWbbhbbhbWZbbhbZhbZhcJfcwHbZhcoFbqNbqVbyTbtlbtybubbtybtycwOcykcylcymcymcynbtybtybzVbqEbqDbXbcBpbqDbqEbqDbqDbqDbuwbhfbgqbgqcxFcxGcxCcxHcxIcxJcxKcxLbhMbhPbhbbhPbhQccvbpdctycxMbpfbpkckKboKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaacNzcNBcNBcNBcNBcNzaaaaaaaaaaaaaaaaaaaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaacbbcbghFacsRcbncbucbCchRbWlbSlbZfbZgbZjbZBcvHbYbbYjbYsbYubYwbWabXUbXUbXUbWacEJbIQbXZbSGbSYbSLcEKbUJbSZbTacELbTbbSGbuDbdvbdvbXibuFbbhbbhbbhcyobxMbbhbbhbbhbbhbcTbdubdubdubcTbcTbbhbpmbXjcoCbZhbZkbGucyqbZhbcTbcTbcTbzYbBlbBlbIobBlbzrcyrcysbzIbzUbIpbQRbIpbIpbUnbcTbcTbcTccVcBrcBrcBscBrcBCaRYaRYcjAbhXbhXbifbhXcxNctvbezctwbirbisbivciEbivbplboSbppbpfcxObpubpfckLboKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUcNycNycNBcNBcNBcNBcNycNyaaaaaUaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaacbbchTcsRcsRcsRcsRcnOcnVbZWbRibZYcaacaccadbcycaebRqbcwbYAbYLbYcbpzbpzbpzbYccEMbIRbYibTcbTdbTebSSbSSbTfbaubvnbCXbFBbFCbqrbqrbgabpAbpBbqsbrJbBsbDdbDmbPwbPwbPwbPwbiUbXtbXubQEbQEbQEbQEbXvbpObZhbZnbHicywbZhaaUaaUaaUaaUaaUaaUaaUaaUbyTcyxbaNbHnbzVaaUaaUaaUaaUaaUaaUaaUbpPcItaRYaSTaTcbcubcvbcDaRYbiybizbiJcnAbiJcxPbiMbiZbjlbiZbjnciRcmTcDzbjnboIbqybpfcNDbpfbpYckMboKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUcNycNEcNFcNGcNGcNGcNHcNyaaUaaUcNIaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaacbbcpDcsRcGJgVVcGFcsRcGGbcybcybcybcybcybcybcybcybcybcybYAbZEbXUaaaaaaaaabXUcEJbIQbYkbSEbTjbTMbTlbSLbTmbTnbSCbSCbSCbqcbqecyycaQbqebqmbXzbtvblUbXtbFEbqzbqzbqzbqzbrFcsibqzbqzbsVbsVbsVbsVbpEbZhbZqbJUcJhbZhaaaaaaaaaaaaaaaaaUcNKbImcfccyrbaNbzIcuobIxcNLaaUaaaaaaaaaaaUbpPcIubcEbcFbdLcsSbdLbcFaRYbjNbjPbjQcsgbjQcxQbjSbiZbGCcjtbjnbjTcnBcDAbjnbqZcxRcxSbpfctybrdboIboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaacNzcNMcNNcNNcNNcNOcNPcNzaaacNQcNIabMaaUaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklaaaaaaaaaaaaaaaaaacbbcGHcsRdYmcGKcGLcsRcGMcbbaEFaSjaTEaTXaVFbSJbfrbigbYrbZGbZEbXUaaUaaUaaUbXUcEJbISbWabSEbSEbSEbSEbSCbSCbSCbSCbrkbhxbrmbrqcyAbXCceYbqmbqmbqmbqzbrHbIfbqzbqqbrKbsLbsNbsPbsQbqzbsGbtsbujbulbpEbZhbZhbOnbZhbZhaaaaaaaaaaaaaaaaaUaaUaaUbcTcyrbaNbzIbcTaaUaaUaaUaaaaaaaaaaaUbpPbMqaRYckcbiEbiHbkfbkzaRYbkOcJiccFbtWctucxUbkSbiZbpQbXEbXFbXGcshcDDbjncxTcxVbpYbrSbrSbrTboIaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaUaaacNzcNOcNRcNScNTcNOcNUcNzaaUcNIcNIcNIaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUcbbcbbcbbcbbcbbcGPcGQcGPcbbbkobkoaTEaVFcGRcGScGTccecgVcmVcsPbWabXUbXUbXUbWacEJbIQbWaaaUaaUaaUbrUbrZbsabRHbRJbspbqvbstbstbstbvKbwfbywbyDbzJbADbAEbItbzAbzGbCfbzGbCgbACbCYbqzbHDbHGbpDbpDbpEbsVcEEbOpbsYbsZaaaaaaaaUblpbmebmebmeblpbmfcyDcoqcorbnOblpbmebmebmeblpaaUaaUbpPbJlaRYbnQbpVbnQbWYbnQaRYbiZbiZbiZbiZbiZcxWcpJbiZbpQbLZbjnclVcHVbnXbjnbMHcxVbtdbteboIboIboIcNWcNXaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUcNycNycNYcNycNycNZcNycNyaaUaWjaWjaWjaWjaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaUcGZcbbcGVcGWcGVcbbbkocsTaTEaVFcGXcGYbJzbJAcGicGjcGkbJFbKsaJVbKsbKtbKubIQbXUaaUaaaaaUbrUbtfbuAbthbthbthbtibstbstcyEbHIbHJbstbHJbstbIibILbJdbRTbFZbTCbFGbHCbHCbHEbJfbHDbQpbXLbsVbpEbzebpDbJpbtxbsZaaaaaaaaUbmebnYbogbombmeboncyJboxboybozbmebpibogbpjbmeaaUaaUbpPbLKbtzbtAbLZbtBbtCbtDbtzbXYbtzbtzbUWbtzcxXbtFbtzcOabLZbjnbjTcPMbjnbjnbtNcxVbtdcdTbtSbtScrecNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcObcNXcNXcNXcOccNXaWjaWjaWjabpbrscfqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcGZcbbcHamImcGVcbbbkobkoaTEaVFcHbbuCbTobTqcGlcGmcGnbKvbKvbrzbLGbLUbQvbQPbXUaaUaaaaaUbrUbtUbJKcOdbTBbthbtYbstbVPcyKbYKcbrcbrcbscbKbBPcdXbXqciQckpckDclccmBbIMbqzbqzbMjbMjbsVbsVbpEbpDcmLbJpbumbsZaaUaaUaaUbmebpTbpTbpTbmebpUcyJboxboybqpbmebpTbpTbpTbmeaaUaaUbpPbYecOebMQbNtbNVbPmbPmbPnbPmbPmbPmbRrbPmcPNcxYcxYcPObYhbjncjfbjnbjnbRtbuycjbbDyceZccTccUcowcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOgcNXcNXcNXcNXcNXaWjaWjaWjabpbrscfqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcbbcbbcbbcbbcbbcbbbTrbTsbTGaVFcHccHdcagbigcGobYvcctbYvbYvbYvbYvbRMbRNcfZbXUaaUaaaaaUbrUceccegcegcekcegcodcsjcKhbuJbuKcDEcDFbuSbuSbuSbuScmKcolcomcpIbqzbqzbqzbqzcajcaHcbmcyOcyPcyQcyRcyScyTcyUbxjbxjbxjblpblpbqLbqMbqUbrvbrNcyVcyWcyXcyYcyZczaczbczcblpblpbxwcrobHLbtBbtabtabtabtabxHbtEbxHclWbxHbxHbxHclXbZtbZtcyabYnbjnbtHbtIbjnbxObRwcxVbxRbteboIboIboIcNXcNXcOhcOhcOhcOhcOhcOhcOhcOhcOhcOhcOhcOicOjcOjcOjcOjcOjcOkcOlaaUaWjaWjaWjaWjaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUbxTbJZbxVbKabxTbRhaVFaVFaVFaVFcHecHfcbcbigcGpbYvbYobYpbYqbTgbYvbROcEsbWXbXUaaUaaaaaUcdZbrUbqTbrlcsKbrUcdZbstbtjbstbstcDGcDJcDZbAJcaRbuScwscxhcyucyFbqzcyGcyNbMjcdYchVbyQbyNbyQbyQbyQbyQbPsczdbyUbyUbyUbtKbtLbtLbtLbtLbtLbtLczecpybtObtLbtLbtLbtLczebtLcmybzabzabYtbtBbtabtQbzdbtVbzcbzkbFFbPMbSfbzjbxHbZubZvbZtcyabYnbjnbtXbucbjnbzsbRzcybcxZbzubzubzvcRacOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOncOjcOjcOjcOjcOocOpaaUaaUaaUaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbxTcbycOqcGqcGrbTOcGtcGscGscHgcHhcHicaIbTNcGuciockkbYxcPvbYycwbbRRbRSbWXbXUaaUaaaaaUbrUcedceecefcKkbSXbssbstbtjbstbstcEacKCczgczhczibuSczvczBczFczMbqzczPczWcAccAocDLbHKbzKbzScCOcrqbyQbYCczjczkczkczkczlczmcznczmczoczpczqczrbPDbPEbPFbPGbPHbPIczsbPHcmzbMQbMQbYDbtAbtabxNcehcfGbBgcrpcsUbzdbzdbzWbxHcmMbYnbZxcyabYEbjnckEcmebjnbzZcmJcycboIboIboIboIboIaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUcOrcOjcOjcOscOtcOucOvcOpaaaaTdaaaabpaaUaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabrsbAfbAgbMxcGvbMybxTbVvaVFaVFaVFbTPbTQbuCbTobigcGpcctbYFcPwbYHcrfbYvcytcENckfbWaaaUaaUaaUbrUcejcefcnZcKlcelcemcoVbAobAqbKibuScDhcztczucKjbuScmUcnkcDMcGIbqzbBQcFXcovcdYcoxcGUczwczwczxcspbyQbPNblpblpblpblpblpbzqczybuibPObAWbmebmebAYbmebmebBabBcbUxczybBeblpblpblpblpblpbtabDhbzdbtVcoWbBfbBgbBgbQDbBxbxHbYnbYnbZtcyacnibjnbjnbjnbjnbBybRGbVtbBAcJjbBIboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacOlcOpcOpcOpcOpcOpcOpcOlaaUaaUaaUaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabxTbxTbxTbxTbxTbxTbxTbxTbxTbxTbBJbxTcGwbxTbxTbTRbTRcavcawcawcawcaxcaxcaxcGxcctcctcazbYvbYvbuabDTcEObtnbIkbIkbIkbIkbIkbChcocbRIcKmbChbRIbChcuWcuXbPPbuScPRcPScPTbuSbuScrgbqzcrncHWbqzcKibRIbMjcupcvubXNbDacRvczCbPSbyQbPNblpcoyctHcqTcqUbuibuicOwbPTbBmbBmbBmbBwbBmbBmbBmbBMbUxbuibuicqUcnfctHcrUblpbtabHMbHMbtabxHbDfbDgbDhbxHbxHbxHbZtbZybZtcyecyfcygcyfcyfcyhcyicyjbZobFhbztbFiboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbFjbFkbFlbFmcnbbFocdDbFqcrNbFsbFtcGybzybFlaaUcavcavcaAcaBcaCbWdcaEcpgcGzbOObFubsUbFxbIebJEbKdbIcbIhbIdbIjcpwbJDbIkbRLbTzbTAcKncEQcERcEScETbFJbQabFXbFJczDczEcFscnzcvRcKHcxfcxgcNJcNVcyBcyCcyHcyIbHKcoebBuczGbQcbyQbPNbmecddcddcddbBZclZbuibuibQdbuibuibuibCAccxccxccxccxccKbuicmablpcddcddcddblpaaaaaaaaaaaabxHbHMbHMbHMbxHaaUaaUbHNbHNbHNbHNcgybGFbHNbHNboIboIcmbbZsboIboKboKboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbFlbHSbHSbFlbHTbHUbHVbHWbHYcrObIabIbcGybzybFlaaUcavcHjcHkcHlcHkcHmcHncHocHpcHqbKebRVbSdbSebSdbTibRXbRYbKNbKObKPbKQbIkbIsbTEbVOcKobXncEUcEVcEWcEXcEYcEZcFacFbcFccEXcEZcFdcFecFfcFfcAmcFfcFhcFfcFicyLbIubIvcrXbIwbQjbyQbPNbxjaYpcscaYpbmebuobuibuibQdbuibuibuicqlbuibuibuibuicOwbuibHtbmeaYpcscaYpblpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHNbHzbHPbIybIzbIAcnSbHNaaUboKbHQbZsboKaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbSjbIEbZzbFtbOFbYzbIGbIHbIIbIJcsYcGybIKbFlaaUcavcqScaPcaPcaPcbvcskcbwcHrcHsbsMbQQbThbtobThcaOcRnbTDbTDbTDcRobYBccBccCccDcfNbYIbYJbShcgfckaclvcqWbAscFkbElbElbIUbJabElcFkbElbJbcAtbJcbJebtpbMFcyMbJhbJiczIczJbQobKkcAubxjaaaaaaaaabmebuobuibuibQrbQsctVbJqbJqbJqcrjbJRbuibuibuibHtbmeaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHNcknbHNbHNcmcbIBbKZbHNaaaboKbHQbZsboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbFlbJrbJrbFlbJsbJtcPUcPVcGAcGBcGCcGDcGEbJxbFlaaUcavcavcaTcaTcaTcaUcavbXdcGzcHtbsMccdbtocsZcqzckbcvSczHcmScrycrAcgrcFWcGNcGOcPxcPPbSabChcFjbQkbWDbJgayYcFlbJnaJDaJEaKZaMmcFmaOFbJJcAvbJLcRbbJNbNFbJObyQbDabBubBubJPbyQcChbxjaaaaaaaaabmebmebuibuibJobNHblpbmebNIbmeblpbNJbJRbuibuibmebmeaaaaaaaaaaaUbNKbNKbNKbNKbNKaaUbNKbNKbNKbNKbNKbNLaqAbNLbJQceJbNObNPbHNaaaboKbHQciAboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbFjbFkbFlbJVbJWcPWcPXbJXbFwbXObZDbKbbKcbxTcavcavcavcaXcaYcoGcbacavcavcHucHvbsMcsVbThbtobThcuZcmRbKfccmccmcdWbIkbIkcFnbTEckdbIqbScbChcFobQkcqbbQlbaTcFpbQmbbxbbzbbBbbCcFqbbEbKhcFgcHOcHPcHOcHQcKpcHRczwcKqbKmbKnbyQcChbxjaaaaaaaaaaaabmebmebuibNQbmebmeaaaaaaaaabmebmebNRbuibmebmeaaaaaaaaaaaaaaUbNSbYQbYQbYQbYQavrbNSbYQbYQbYQbYQavrbNLaaUbJQbJQbHNbHNbHNaaaboKbHQclObKoaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbxTbxTbxTbxTbxTcPYcPZbKqbxTbxTbxTbxTbxTbxTcavcavccLcaXcaXcaXcnCcavcavcHwcaGcuYcvtcvQcEPcRicRjcRpcRlcoHcOxcOycOzcGbcGccGdcGecqZbSgbShcFrbQubKybYGbaTcFpcbfbbZbjxblvblwcRwcoXbKzbKzbKzbKAbKzbKzcHSbKCbyQcHTbyQbyQbyQcChbxjaaaaaaaaaaaaaaabmebuibNQbmeaaUaaaaaaaaaaaUbmebNRbuibmeaaaaaaaaaaaaaaaaaUbNUbNUbNUbNUbNUaaUbNUbNUbNUbNUbNUaaUbNLaaUaaaaaaaaaaaaaaaaaaboKbHQbHRbKDcgWaaaaaaaaaaaabljaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKEbKFbKFcQacbocQbcQccQdcQecQfbKMbKMctabxTcavcbecaXcaXcaXcHxcHycHzcHAcHBcHCbIkbZTcrWcRqcumcFVcRkcRrbJHcOAcOBcOCbRIbMjcvTbMjbMjbMjbMjcFtcFucFvcFwcFxcFybopboqbotczKblwcFzbbEbKSbKTbKUbKVbKWbKTcHUbKYcPQcPycHXcHYcODcIabxjaaaaaaaaaaaaaaabmebuibNQbmeaaUaaaaaaaaaaaUbmebNRbuibmeaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbNLaaUaaaaaaaaaaaaaaaaaaboKbLabLbboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTcaVbLdbKMcQgbLfcQhcQibLibLjcQjbKMbKMcaZbxTcavcblcaXcbhcaXcHDcHEcHFcHGcHHcHIbIkbIkcebcebcebcebcebbIkbIkcOEcOFcOGcOHbMjcFAbLIbLWcFBcFCcFDcFEbJIbpabpbbbtbpebpgbotbphblwbqtbbEbLqbLrbKTbLsbLtbLrcIbbKYcIccIdcKPcyScIecIfbxjaaaaaaaaaaaaaaabmebNWbNXbmeaaUaaaaaaaaaaaUbmebNYbNZbmeaaaaaaaaaaaaaaaaaUbNKbNKbNKbNKbNKaaUbNKbNKbNKbNKbNKaaUbNLaaUbNKbNKbNKbNKbNKaaUboIboKboKboIaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKMbKMbKMcQkcQlcQmcQnbLickNcQobKFbKFbLybxTcavcbqcaXcaXcaXcHJcbtcaXcavcHKcHLcbBaaUaaUaaUaaUaaUaaUaaUcOIcOJcOKcOLbRIbMjckhckjcFFcFGcFHcFIcFJbJIbQnbqObqPbQzbpgbjxbqRblwblxbqSbKzbKTcIgczLcsobLtcvvbKYcIcbLDcOMcOMcONcOOcOMaaUaaUaaUaaUaaUbmebOabOabObaaUaaaaaaaaaaaUbObbOabOabmeaaUaaUaaUaaUaaUaaUbNSbYQbYQbYQbYQavrbNSbYQbYQbYQbYQavrbNLbOcbYRbYRbYRbYRbOdaaUaaUaaaaaaaaUaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbxTbxTbxTbxTbxTcQhcQibLFbxTbxTbxTbxTbxTbxTcavcavctbcaXcaXcaXcpecavcavcHMcHNcbBaaUaaaaaaaaaaaaaaaaaacOIcOPcOIcOLbRIcfbcFKcFLcFMcFNbChcFObQLbLLbQCbrubrObXDbAybAHbAMbATbBnbQybLMbLNcIjcIkcIlcImcIncIocIpcoAcOMcOQcORcOScOMaaUaaaaaaaaaaaabmebOebOebmebmeaaaaaaaaabmebmebOebOebmeaaaaaaaaaaaaaaaaaabNUbNUbNUbNUbNUaaUbNUbNUbNUbNUbNUaaUbOfaaUbNUbNUbNUbNUbNUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcpCcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKEbKFbKFcQacbocQhcQpcQqcQrcQfbKMbKMbKMbxTcavcavcavcbxctIcbzcavcavcbEckPckQcbBaaUaaaaaaaaaaaaaaaaaacOIcOTcOIcOUbRIcFPcFQcnXcnYcvwbChcFRcFSbMacmZcoYbQBcnabQJcRmcvxcezceAceBbKzbMbbMcbMdbMebMfbMgbKzbxjbxjcOMcOVcOWcOXcOYaaUaaaaaaaaaaaabmebOibOgbOhbmeaaaaaaaaabmebOibOgbOhbmeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbOkaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTclfbLdbKMcQsbLfcQhcQtbMibLjcQubKMbLdcmQbxTaaUcavcavcavcavcavcavcavcbEckTckQcbBaaUaaaaaaaaaaaaaaaaaaaaUaaUaZGaaUbChbChbChbChbChbRIcpzctDcFTctFcpzcpzctDcvocpzcpzbMkbMlbMlbMnbKzbKzbKzbKzbKzbKzbKzbKzaaUaaUcOMcOZcPacPbcOYaaaaaaaaaaaaaaacnGcndbuicnebmeaaaaaaaaabmebOjbuicnccnGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbOkaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKMbKMbKMcQkcQvcQhcQibLickNcQobKFbKFbLybxTaaUaaUcavcavcavcavcavaaUcbEckTckUcbBaaUaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaUbMlbMocFUcoJcvsbMrbMscvObMucvsbMwbMvbMwbMvbMwbMvbMvbMlaaUaaUaaUaaUaaUaaacOMcOMcOMcOYcOYaaaaaaaaaaaaaaabmebOlcnfbOmbmeaaaaaaaaabmebOlcnfbOmbmeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbOqaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbxTbxTbxTbxTbxTcQwcQibLibxTbxTbxTbxTbxTbxTaaaaaaaaaaaaaaaaaaaaaaaUcbEckTckQcbBaaUaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaUbMlcobbNgcpbcwgcwhbMAcwibMCcwjbMDbMvbMvbMvbMvbMwbMEbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabOocnHbmecnHbmeaaaaaaaaabmecnHbmecnHbOoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKEbKFbKFcQacbocQhcQpcQqcQxcQfbKMbKMbKMbxTaaaaaaaaaaaaaaaaaaaaaaaUcbEckVckWcbBaaUaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUcpzcpzcpzcpzcpzbNhcpzcpzcwlcwmcwncwocwpbMvbMwbNibMLbMvbMvbMvbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTctLbKMbKMcQybLfcQzcQAbLibLjcQBbKMcnDctMbxTaaaaaaaaaaaaaaaaaaaaUcbBcbEcRccRdcbEcbBaaUaaUaaUaaUaaUaaaabpaaaaTdaaacpzcpzcpzcpzcvUbMNbMObMPbNjbMRbMlbNmbMTcwubMUcwTbMvbMvbMvbMvbMvbMVbMvbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKMbKMbKMcQkcQCcQDcQEbLickNcQobKFbKFbLybxTaaUaaUaaUaaUaaUaaUcbBcbBcleclgcsXctWcbBcbBaaUaaaaaaaaUaaUaaUaaUaaUaaUcpzbNrbNvcpzctObMJbMJbMJbNwbNxbNybNzbNGcABbNccpzcvscpzcoKbMvbMlbMlbMlbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabxTbxTbxTbxTbxTbxTcjPcbFcvVbxTbxTbxTbxTbxTbxTcbBcbBcbBcbBcbBcbBcbEcnjcsWctcctPcbDctNcbEaaUaaaaaaaaaaaaaaUaaaaaUaaacpzbQUcACcADcAEcAGcAHcAKcPccBDcBGcBTcCacCccCgcCicCjcucbMvbMvbMlaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabAbctQbxTbOscvzctTctRcnlckSbOyctUbOAcuectScvGctYcKrcKrcKrcKrcKscKtcKucKvcuacukctZclhcbBaaUaaaaaaaaaaaaaaUaaaaaUaaacpzcuvcCkcClbNsbMJcvybMJcCmcLAcpzcpzcCocCrcCrcCrcCucpzbNubMLbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaacKwcKxcKycKzcKAcKBcQFclacQGclackXclbcvXcudcvYcvAcubcufcubcubcugcuhcuicujcvWculctZclhcbBaaUaaaaaaaaaaaaaaUaaaaaUaaacpzcLCcCvcCwcLFcLGcLHcLIcCxcCycCzcCDcLLcLDcLDcLMcLNcvsbMlbMlbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaclicljbxTbOGbOHbOIcQHbOKcQIbOMbONbOGbxTcljbxTcbBcbBcbBcbBcbBcbBcbEclhcuqcurcurcldctNcbEaaUaaaaaaaaaaaaaaUaaaaaUaaacpzcCQcCScpzbNAbNBbNCbNDcDbcLPcpzcDccDdcuvcuvcvfcLScClaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabxTclkbxTbOPcQJcQKcQLcQMcQNcQOcQPbOPbxTcllbxTaaUaaUaaUaaUaaUaaUcbBcbBcusclhclhcuscbBcbBaaUaaaaaaaaaaaaaaUaaaaaUaaacpzcwTcpzcpzcpzcpzctDcDecDfcLTcpzcpzcwgcCrcCrcCrcCrcCuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabxTcljbxTbxTbxTbOTbKMbKMbKMbOUbxTbxTbxTcljbxTaaUaaaaaaaaaaaaaaaaaUcbBcbEcbBcbBcbEcbBaaUaaUaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcLUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaTxaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaclmbxTbOWbKMbKMbKMbKMbKMbKMbKMbOXbxTclmaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaTxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPdabMcPeaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaclnbxTbOZbKMbKMbKMbPabKMbKMbKMbPbbxTcloaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPfabMcPgaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPdabRcPhaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaclnbxTbPcbKMbKMbKMbKMbKMbKMbKMbPdbxTcloaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPfabRcPiaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUcPdabMcPhaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaclnbxTbPebKMbPfbPgcunbPibPjbKMbPkbxTcloaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPfabMcPjcPkcPkaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacPlcPmcPnabRcPhaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaclpbxTbxTbxTbxTbxTbxTbxTbxTbxTbxTbxTclpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPfabMabRabRabMaRvaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaWRabMabRabMabMcPhaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaclqclrclsclsclsclsclsclsclsclsclsclrcltaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPocPocPocPocPpaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacPqcPqcPqcPqcPhabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUabpaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaacpBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcpCcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl "} From 01c3f702354d89f5765ac11de9e98127deaded27 Mon Sep 17 00:00:00 2001 From: EmeraldSundisk <51142887+EmeraldSundisk@users.noreply.github.com> Date: Mon, 24 Aug 2020 18:58:13 -0700 Subject: [PATCH 58/94] Add files via upload --- _maps/map_files/CogStation/CogStation.dmm | 146433 ++++++++++++++++++- 1 file changed, 138410 insertions(+), 8023 deletions(-) diff --git a/_maps/map_files/CogStation/CogStation.dmm b/_maps/map_files/CogStation/CogStation.dmm index 5bbbf1eeec..3c64b9f6ad 100644 --- a/_maps/map_files/CogStation/CogStation.dmm +++ b/_maps/map_files/CogStation/CogStation.dmm @@ -1,8026 +1,138413 @@ -"aaa" = (/turf/open/space/basic,/area/space) -"aab" = (/obj/structure/sign/poster/official/anniversary_vintage_reprint,/turf/closed/wall/r_wall,/area/science/research{name = "Research Sector"}) -"aac" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/closed/wall/r_wall,/area/maintenance/fore) -"aad" = (/turf/open/floor/engine{name = "Holodeck Projector Floor"},/area/holodeck/rec_center) -"aae" = (/obj/docking_port/stationary{dir = 2; dwidth = 4; height = 12; id = "arrivals_stationary"; name = "cog arrivals"; roundstart_template = /datum/map_template/shuttle/arrival/cog; width = 9},/turf/open/space/basic,/area/space) -"aaf" = (/turf/closed/wall,/area/science/test_area) -"aag" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/stairs/medium,/area/hallway/secondary/entry) -"aah" = (/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "2-4"},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) -"aai" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/closed/wall/r_wall/rust,/area/maintenance/fore) -"aaj" = (/turf/closed/wall/r_wall,/area/maintenance/port/fore) -"aak" = (/obj/machinery/conveyor/auto{id = "pb"},/turf/open/floor/plating/airless,/area/router/aux) -"aal" = (/turf/closed/wall,/area/maintenance/port/fore) -"aam" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port/fore) -"aan" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/ai_monitored/security/armory) -"aao" = (/obj/machinery/power/solar{id = "forestarboard"; name = "Fore-Starboard Solar Array"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/fore) -"aap" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/port/fore) -"aaq" = (/obj/structure/rack,/obj/item/storage/toolbox/emergency,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/port/fore) -"aar" = (/obj/machinery/conveyor/auto{dir = 8; id = "pb"},/turf/open/floor/plating/airless,/area/router/aux) -"aas" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plating/airless,/area/space/nearstation) -"aat" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/observatory"; dir = 1; name = "Observatory APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/port/fore) -"aau" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/port/fore"; dir = 8; name = "Port Bow Maintenance APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/port/fore) -"aav" = (/obj/machinery/conveyor/auto{dir = 8; id = "solar"},/turf/open/floor/plating/airless,/area/router/aux) -"aaw" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/test_area) -"aax" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/entry) -"aay" = (/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "2-8"},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) -"aaz" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/ai_monitored/security/armory) -"aaA" = (/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) -"aaB" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/kitchen/backroom"; dir = 1; name = "Kitchen Coldroom APC"; pixel_y = 24},/turf/open/floor/plating,/area/hallway/secondary/service) -"aaC" = (/obj/structure/closet/secure_closet/lethalshots,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/storage/box/firingpins,/obj/item/storage/box/firingpins,/obj/effect/spawner/lootdrop/armory_contraband/metastation,/turf/open/floor/plasteel,/area/ai_monitored/security/armory) -"aaD" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating/airless,/area/router/aux) -"aaE" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera{c_tag = "Port Bow Maintenance - Fore"; network = list("ss13","rd")},/turf/open/floor/plating,/area/maintenance/port/fore) -"aaF" = (/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"aaG" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel/stairs/left,/area/security/brig) -"aaH" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/machinery/camera/motion{c_tag = "Armory Motion Sensor"; pixel_x = 22},/obj/structure/rack,/obj/item/gun/energy/e_gun{pixel_y = -6},/obj/item/gun/energy/e_gun{pixel_y = -3},/obj/item/gun/energy/e_gun,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"aaI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/fore) -"aaJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"aaK" = (/obj/machinery/power/solar{id = "foreport"; name = "Fore-Port Solar Array"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) -"aaL" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/turf/open/space/basic,/area/solar/port) -"aaM" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/port) -"aaN" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/security/brig) -"aaO" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/turf/open/space/basic,/area/solar/starboard/fore) -"aaP" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/fore) -"aaQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"aaR" = (/obj/machinery/vending/snack/random,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"aaS" = (/turf/open/floor/plasteel,/area/security/brig) -"aaT" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space/basic,/area/solar/starboard/fore) -"aaU" = (/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"aaV" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/solar/starboard/fore) -"aaW" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/space/nearstation) -"aaX" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aaY" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 21},/turf/open/floor/plating/airless,/area/router/aux) -"aaZ" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aba" = (/obj/machinery/door/airlock/external{name = "Arrival Shuttle Airlock"},/obj/structure/fans/tiny,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"abb" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"abc" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-4"},/turf/open/space/basic,/area/solar/starboard/fore) -"abd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/port/fore) -"abe" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space/basic,/area/solar/starboard/fore) -"abf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/fore) -"abg" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"abh" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/solar/port) -"abi" = (/obj/machinery/power/solar{id = "foreport"; name = "Fore-Port Solar Array"},/obj/structure/cable,/turf/open/floor/plasteel/airless/solarpanel,/area/solar/port) -"abj" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/fore) -"abk" = (/obj/structure/closet/crate/secure/gear{name = "Grenade Crate"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/storage/box/flashbangs{pixel_x = 3; pixel_y = 2},/obj/item/storage/box/teargas{pixel_x = 3; pixel_y = -3},/obj/item/grenade/barrier,/obj/item/grenade/barrier,/obj/item/grenade/barrier,/turf/open/floor/plasteel,/area/ai_monitored/security/armory) -"abl" = (/obj/machinery/airalarm{pixel_y = 24},/obj/structure/rack,/obj/item/gun/energy/laser{pixel_x = -3; pixel_y = 3},/obj/item/gun/energy/laser,/obj/item/gun/energy/laser{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"abm" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"abn" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/rack,/obj/item/gun/ballistic/shotgun/riot{pixel_y = 6},/obj/item/gun/ballistic/shotgun/riot,/obj/item/gun/ballistic/shotgun/riot{pixel_y = -6},/turf/open/floor/plasteel,/area/ai_monitored/security/armory) -"abo" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/security/armory) -"abp" = (/turf/closed/wall/r_wall,/area/space/nearstation) -"abq" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/item/storage/box/rubbershot{pixel_x = -3; pixel_y = 3},/obj/item/storage/box/rubbershot,/obj/item/storage/box/rubbershot{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel,/area/ai_monitored/security/armory) -"abr" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/router/aux) -"abs" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"abt" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"abu" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"abv" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/fore) -"abw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/rack,/obj/item/clothing/suit/armor/bulletproof{pixel_x = -3; pixel_y = 3},/obj/item/clothing/suit/armor/bulletproof,/obj/item/clothing/suit/armor/bulletproof{pixel_x = 3; pixel_y = -3},/obj/item/clothing/head/helmet/alt{layer = 3.00001; pixel_x = -3; pixel_y = 3},/obj/item/clothing/head/helmet/alt{layer = 3.00001},/obj/item/clothing/head/helmet/alt{layer = 3.00001; pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel,/area/ai_monitored/security/armory) -"abx" = (/turf/closed/wall/r_wall,/area/maintenance/solars/port) -"aby" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/space/nearstation) -"abz" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/fore) -"abA" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"abB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/closed/wall,/area/crew_quarters/theatre/clown) -"abC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/closed/wall,/area/crew_quarters/theatre/clown) -"abD" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/turf/open/floor/plating/airless,/area/router/aux) -"abE" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/deliveryChute{dir = 4},/turf/open/floor/plating/airless,/area/router/aux) -"abF" = (/obj/machinery/mass_driver{dir = 8; id = "sb_out"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) -"abG" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/table,/obj/item/storage/box/trackimp{pixel_x = 4},/obj/item/storage/box/chemimp{pixel_x = -4},/obj/item/storage/lockbox/loyalty,/turf/open/floor/plasteel,/area/ai_monitored/security/armory) -"abH" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/space/nearstation) -"abI" = (/obj/structure/table,/obj/structure/mirror{icon_state = "mirror_broke"; pixel_x = -24},/obj/item/storage/briefcase,/obj/item/circuitboard/machine/vending/donksofttoyvendor,/obj/item/storage/pill_bottle/happy,/obj/effect/decal/cleanable/dirt,/obj/item/paper/fluff/cogstation/cluwne,/turf/open/floor/plating,/area/crew_quarters/theatre/clown) -"abJ" = (/obj/machinery/conveyor{dir = 8; id = "sb_off"},/turf/open/floor/plating/airless,/area/router/aux) -"abK" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"abL" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"abM" = (/turf/closed/wall/r_wall,/area/router/aux) -"abN" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/checker,/area/hallway/secondary/entry) -"abO" = (/obj/structure/chair/comfy/brown,/obj/item/beacon,/turf/open/floor/carpet/royalblue,/area/bridge) -"abP" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/rack,/obj/item/gun/energy/ionrifle{pixel_y = 4},/obj/item/gun/energy/temperature/security{pixel_y = -4},/obj/item/clothing/suit/armor/laserproof,/turf/open/floor/plasteel,/area/ai_monitored/security/armory) -"abQ" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/fore) -"abR" = (/obj/structure/grille,/turf/open/floor/plating/airless,/area/router/aux) -"abS" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/brig) -"abT" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/dorms/purple"; name = "Crew Quarters A APC"; pixel_y = -26},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/port/fore) -"abU" = (/obj/machinery/space_heater,/obj/machinery/power/apc{areastring = "/area/crew_quarters/dorms/blue"; name = "Crew Quarters B APC"; pixel_y = -26},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/fore) -"abV" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating/airless,/area/router/aux) -"abW" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/router/aux) -"abX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/checkpoint) -"abY" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/fore) -"abZ" = (/obj/machinery/conveyor{dir = 1; id = "sb_off"},/turf/open/floor/plating/airless,/area/router/aux) -"aca" = (/obj/machinery/conveyor{dir = 5; id = "pb_off"},/turf/open/floor/plating/airless,/area/router/aux) -"acb" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/closed/wall/r_wall,/area/maintenance/fore) -"acc" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/door/poddoor/preopen{id = "solitarylock"; name = "Brig Lockdown"},/turf/open/floor/plating,/area/security/brig) -"acd" = (/obj/machinery/button/door{id = "armory"; name = "Armory Blast Door Control"; pixel_x = -28; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"ace" = (/obj/machinery/conveyor{dir = 4; id = "pb_off"},/turf/open/floor/plating/airless,/area/router/aux) -"acf" = (/obj/machinery/mass_driver{dir = 4; id = "pb_out"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) -"acg" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) -"ach" = (/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) -"aci" = (/turf/closed/wall,/area/medical{name = "Medical Booth"}) -"acj" = (/obj/machinery/conveyor{dir = 4; id = "solar_off"},/turf/open/floor/plating/airless,/area/router/aux) -"ack" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/rack,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/suit/armor/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/item/clothing/head/helmet/riot,/obj/item/shield/riot{pixel_x = -6},/obj/item/shield/riot{pixel_x = -6},/obj/item/shield/riot{pixel_x = -6},/obj/item/clothing/mask/gas/sechailer/swat{pixel_x = -4},/obj/item/clothing/mask/gas/sechailer/swat{pixel_x = -4},/obj/item/clothing/mask/gas/sechailer/swat{pixel_x = -4},/turf/open/floor/plasteel,/area/ai_monitored/security/armory) -"acl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Armory"; req_one_access_txt = "3"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"acm" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/deliveryChute{dir = 8},/turf/open/floor/plating/airless,/area/router/aux) -"acn" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/fore) -"aco" = (/turf/open/floor/plating,/area/maintenance/port/fore) -"acp" = (/turf/open/floor/plating/airless,/area/science/test_area) -"acq" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/conveyor{id = "solar_off"},/turf/open/floor/plating/airless,/area/router/aux) -"acr" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 7},/turf/open/floor/plating/airless,/area/router/aux) -"acs" = (/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"act" = (/turf/closed/wall/r_wall,/area/maintenance/fore) -"acu" = (/obj/structure/table,/obj/machinery/light,/obj/machinery/recharger,/obj/item/assembly/signaler{pixel_x = 8; pixel_y = 6},/obj/item/assembly/signaler{pixel_x = 8; pixel_y = 4},/obj/item/assembly/signaler{pixel_x = 8; pixel_y = 2},/obj/item/electropack{pixel_x = -10},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"acv" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/solar/starboard/fore) -"acw" = (/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/port/fore) -"acx" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating/airless,/area/router/aux) -"acy" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/gun/energy/e_gun/advtaser{pixel_y = 6},/obj/item/gun/energy/e_gun/advtaser,/obj/item/gun/energy/e_gun/advtaser{pixel_y = -6},/obj/structure/rack,/turf/open/floor/plasteel,/area/ai_monitored/security/armory) -"acz" = (/obj/machinery/mass_driver{dir = 4; id = "sb_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) -"acA" = (/obj/machinery/conveyor{dir = 4; id = "sb_off"},/turf/open/floor/plating/airless,/area/router/aux) -"acB" = (/obj/machinery/conveyor{dir = 6; id = "sb_off"},/turf/open/floor/plating/airless,/area/router/aux) -"acC" = (/obj/machinery/door/firedoor,/obj/machinery/door/poddoor{id = "armory"; name = "Armory"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"acD" = (/obj/machinery/light_switch{pixel_x = -24},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig) -"acE" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/closed/wall/r_wall,/area/maintenance/fore) -"acF" = (/turf/closed/wall,/area/crew_quarters/lounge) -"acG" = (/obj/machinery/conveyor{dir = 1; id = "pb_off"},/turf/open/floor/plating/airless,/area/router/aux) -"acH" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"acI" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"acJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{id = "solar_off"},/turf/open/floor/plating/airless,/area/router/aux) -"acK" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical{name = "Medical Booth"}) -"acL" = (/obj/machinery/door/poddoor{id = "executionspaceblast"},/turf/open/floor/plating,/area/maintenance/port/fore) -"acM" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = -32},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"acN" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"acO" = (/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "1-4"},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) -"acP" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating,/area/maintenance/fore) -"acQ" = (/turf/closed/wall,/area/crew_quarters/theatre/clown) -"acR" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/kirbyplants{icon_state = "plant-16"},/turf/open/floor/plasteel/checker,/area/hallway/secondary/entry) -"acS" = (/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/open/floor/plating,/area/maintenance/fore) -"acT" = (/obj/structure/table/reinforced,/obj/item/modular_computer/laptop/preset/civilian,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"acU" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera{c_tag = "Armory Access"; network = list("ss13","rd")},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig) -"acV" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/washing_machine,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"acW" = (/obj/structure/disposalpipe/trunk,/obj/machinery/disposal/deliveryChute,/turf/open/floor/plating/airless,/area/router/aux) -"acX" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/fore) -"acY" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/space/basic,/area/space/nearstation) -"acZ" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) -"ada" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/ai_monitored/security/armory) -"adb" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/security/brig) -"adc" = (/obj/machinery/conveyor{id = "sb_off"},/turf/open/floor/plating/airless,/area/router/aux) -"add" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plating,/area/crew_quarters/observatory) -"ade" = (/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/closed/wall/r_wall,/area/maintenance/fore) -"adf" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/crew_quarters/observatory) -"adg" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/table,/obj/machinery/microwave{pixel_y = 8},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"adh" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/crew_quarters/observatory) -"adi" = (/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"adj" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/observatory) -"adk" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/conveyor{id = "solar_off"},/turf/open/floor/plating/airless,/area/router/aux) -"adl" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating/airless,/area/router/aux) -"adm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Fore Maintenance"; req_one_access_txt = "12;46"},/turf/open/floor/plating,/area/maintenance/fore) -"adn" = (/obj/structure/sign/nanotrasen,/turf/closed/wall/r_wall,/area/hallway/secondary/entry) -"ado" = (/obj/machinery/power/solar{id = "forestarboard"; name = "Fore-Starboard Solar Array"},/obj/structure/cable,/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/fore) -"adp" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/tcommsat/computer) -"adq" = (/turf/closed/wall/r_wall,/area/hallway/secondary/entry) -"adr" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/kirbyplants{icon_state = "plant-16"},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) -"ads" = (/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"adt" = (/turf/open/floor/plating,/area/maintenance/fore) -"adu" = (/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"adv" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/maintenance/fore) -"adw" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/conveyor/auto{dir = 1; id = "solar"},/turf/open/floor/plating/airless,/area/router/aux) -"adx" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/fore) -"ady" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating/airless,/area/solar/starboard/fore) -"adz" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/space/basic,/area/space/nearstation) -"adA" = (/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"adB" = (/obj/structure/sign/poster/official/enlist{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"adC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/crew_quarters/observatory) -"adD" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/vending/security,/turf/open/floor/plasteel,/area/security/brig) -"adE" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/gun/energy/laser/practice,/obj/item/gun/energy/laser/practice,/obj/machinery/syndicatebomb/training,/turf/open/floor/plasteel,/area/security/brig) -"adF" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"adG" = (/obj/machinery/mass_driver{id = "serv_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) -"adH" = (/obj/machinery/conveyor/auto{dir = 1; id = "solar"},/turf/open/floor/plating/airless,/area/router/aux) -"adI" = (/obj/machinery/disposal/bin{name = "Service Delivery"},/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/hydroponics) -"adJ" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/closet,/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/under/misc/staffassistant,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"adK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/stairs/medium,/area/security/brig) -"adL" = (/obj/machinery/mass_driver{id = "starboard_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) -"adM" = (/turf/closed/wall,/area/crew_quarters/observatory) -"adN" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/space/basic,/area/space/nearstation) -"adO" = (/obj/structure/noticeboard{dir = 4; pixel_x = -27},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"adP" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"adQ" = (/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"adR" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/storage/box/beakers,/obj/item/hand_labeler,/obj/item/folder/white{pixel_x = -6; pixel_y = 4},/obj/item/stamp/denied{pixel_x = 8; pixel_y = 8},/obj/item/stamp,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"adS" = (/turf/closed/wall,/area/construction) -"adT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/construction) -"adU" = (/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/maintenance/fore) -"adV" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/starboard/fore"; dir = 1; name = "Starboard Bow Maintenance APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"adW" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/right,/area/security/brig) -"adX" = (/obj/structure/chair/comfy/black{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"adY" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"adZ" = (/turf/open/floor/plating,/area/tcommsat/computer) -"aea" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) -"aeb" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/brig) -"aec" = (/turf/closed/wall/r_wall,/area/construction) -"aed" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aee" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space/basic,/area/solar/port) -"aef" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/fore) -"aeg" = (/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "1-8"},/turf/closed/wall/r_wall,/area/ai_monitored/security/armory) -"aeh" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/brig) -"aei" = (/obj/machinery/light,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/hallway/secondary/entry"; dir = 8; name = "Arrival Shuttle Hallway APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aej" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/plating/airless,/area/engine/engineering{name = "Engine Room"}) -"aek" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/photocopier,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"ael" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) -"aem" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"aen" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/maintenance/fore) -"aeo" = (/obj/effect/decal/cleanable/dirt,/obj/item/circuitboard/machine/sleeper,/obj/structure/frame/machine,/turf/open/floor/plasteel,/area/construction) -"aep" = (/obj/machinery/firealarm{dir = 4; pixel_x = -24},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"aeq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"aer" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aes" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/chair{dir = 1},/obj/structure/sign/poster/official/random{pixel_x = 32},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"aet" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aeu" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"aev" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/closed/wall/r_wall,/area/maintenance/fore) -"aew" = (/turf/closed/wall/r_wall,/area/security/prison) -"aex" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/table,/obj/item/storage/hypospraykit/regular,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"aey" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"aez" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"aeA" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"aeB" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/toilet/fitness"; name = "Fitness Toilets APC"; pixel_y = -26},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/fore) -"aeC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"aeD" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) -"aeE" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass,/turf/open/floor/plasteel,/area/construction) -"aeF" = (/obj/structure/table,/obj/item/assembly/infra,/obj/item/assembly/voice{pixel_x = 4; pixel_y = 12},/obj/item/assembly/health{pixel_x = -6; pixel_y = 4},/obj/item/assembly/prox_sensor{pixel_x = 4; pixel_y = -2},/turf/open/floor/plating,/area/construction) -"aeG" = (/obj/item/stack/tile/plasteel{pixel_x = 8; pixel_y = 6},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/construction"; dir = 1; name = "Construction Area APC"; pixel_y = 24},/turf/open/floor/plating,/area/construction) -"aeH" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore) -"aeI" = (/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) -"aeJ" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/security/prison) -"aeK" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry) -"aeL" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aeM" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aeN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Security Router"; req_one_access_txt = "1"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aeO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore) -"aeP" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/solar/starboard/fore) -"aeQ" = (/obj/structure/closet/secure_closet/brig,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"aeR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"aeS" = (/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"aeT" = (/obj/structure/table,/obj/item/storage/box/donkpockets,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"aeU" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"aeV" = (/obj/structure/closet/crate,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"aeW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Construction Area"; req_access_txt = "12"},/turf/open/floor/plasteel,/area/construction) -"aeX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/fore) -"aeY" = (/turf/closed/wall,/area/crew_quarters/toilet/fitness) -"aeZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/crew_quarters/kitchen) -"afa" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/kitchen) -"afb" = (/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"afc" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"afd" = (/obj/machinery/newscaster{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"afe" = (/obj/machinery/door/airlock,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"aff" = (/turf/closed/wall,/area/crew_quarters/fitness) -"afg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/open/floor/plating,/area/maintenance/fore) -"afh" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable,/obj/machinery/power/apc/highcap/fifteen_k{areastring = /area/maintenance/solars/starboard/fore; dir = 4; name = "Starboard Bow Solars APC"; pixel_x = 28},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) -"afi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fore) -"afj" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"afk" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"afl" = (/obj/effect/landmark/secequipment,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"afm" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction) -"afn" = (/obj/machinery/biogenerator,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison) -"afo" = (/obj/structure/cable{icon_state = "0-8"},/obj/effect/landmark/start/mime,/obj/machinery/power/apc{areastring = "/area/crew_quarters/theatre/mime"; dir = 4; name = "Mime's Office APC"; pixel_x = 24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/theatre/mime) -"afp" = (/turf/open/floor/plating,/area/construction) -"afq" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"afr" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/paper_bin,/obj/item/pen,/obj/item/camera{pixel_y = -8},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"afs" = (/obj/machinery/flasher{id = "executionflash"; pixel_x = -25},/obj/structure/chair/e_chair,/obj/effect/decal/cleanable/ash{pixel_y = -8},/turf/open/floor/plating,/area/maintenance/port/fore) -"aft" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore) -"afu" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"afv" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"afw" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/port/fore) -"afx" = (/obj/machinery/computer/holodeck{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"afy" = (/obj/structure/table,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"afz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"afA" = (/turf/open/floor/plating,/area/maintenance/starboard/fore) -"afB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"afC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/port/fore) -"afD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/r_wall,/area/maintenance/port/fore) -"afE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/crew_quarters/theatre/clown) -"afF" = (/obj/machinery/sparker{id = "executionburn"; pixel_x = 25},/turf/open/floor/plating,/area/maintenance/port/fore) -"afG" = (/obj/structure/sink{pixel_y = 28},/obj/item/paper/guides/jobs/hydroponics,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison) -"afH" = (/obj/structure/table,/obj/item/storage/toolbox/mechanical,/obj/item/clothing/mask/gas/sechailer,/obj/item/clothing/mask/gas/sechailer,/obj/item/clothing/mask/gas/sechailer,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -32},/turf/open/floor/plasteel,/area/security/warden) -"afI" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"afJ" = (/obj/structure/table,/obj/machinery/light{dir = 1},/obj/item/plant_analyzer,/obj/item/cultivator,/obj/item/reagent_containers/glass/bucket,/obj/item/reagent_containers/glass/bucket,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison) -"afK" = (/turf/closed/wall,/area/crew_quarters/kitchen) -"afL" = (/obj/machinery/door/airlock,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"afM" = (/obj/structure/closet/crate/internals,/obj/machinery/camera{c_tag = "Construction Area"; pixel_x = 22},/obj/item/flashlight,/obj/item/clothing/suit/hazardvest,/obj/item/tank/internals/emergency_oxygen/engi,/turf/open/floor/plating,/area/construction) -"afN" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"afO" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/washing_machine,/turf/open/floor/plasteel/checker,/area/hallway/secondary/entry) -"afP" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"afQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/port/fore) -"afR" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/table/reinforced,/obj/item/paicard,/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"afS" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"afT" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"afU" = (/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/stairs/left,/area/hallway/secondary/entry) -"afV" = (/obj/structure/closet/crate,/obj/machinery/light{dir = 1},/obj/item/clothing/gloves/color/white,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/structure/sign/poster/contraband/red_rum{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"afW" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/fore) -"afX" = (/obj/item/cigbutt,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/machinery/camera{c_tag = "Port Bow Maintenance - Aft"; dir = 1},/turf/open/floor/plating,/area/maintenance/port/fore) -"afY" = (/obj/item/seeds/carrot,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison) -"afZ" = (/obj/machinery/disposal/bin{name = "Brig Catering"},/obj/effect/turf_decal/stripes/line{dir = 5; layer = 2.03},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/kitchen) -"aga" = (/obj/structure/table,/obj/item/paper/fluff/holodeck/disclaimer,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"agb" = (/obj/structure/table,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"agc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) -"agd" = (/obj/structure/fans/tiny/invisible,/obj/docking_port/stationary{dwidth = 1; height = 4; name = "escape pod loader"; roundstart_template = /datum/map_template/shuttle/escape_pod/default; width = 3},/turf/open/space/basic,/area/space) -"age" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/port/fore) -"agf" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fore) -"agg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore) -"agh" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/fore) -"agi" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"agj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Observatory Access"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"agk" = (/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"agl" = (/obj/machinery/disposal/bin{name = "Bar Catering"},/obj/effect/turf_decal/stripes/line{dir = 6; layer = 2.03},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar,/turf/open/floor/plasteel,/area/crew_quarters/kitchen) -"agm" = (/obj/structure/table,/obj/item/sharpener,/obj/item/kitchen/knife,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"agn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/crew_quarters/lounge) -"ago" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"agp" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"agq" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"agr" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"ags" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"agt" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"agu" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) -"agv" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/security/brig) -"agw" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/noticeboard{pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/displaycase/labcage{desc = "A glass lab container for storing smelly creatures."; name = "stinky panda containment"; start_showpiece_type = /mob/living/simple_animal/pet/redpanda/stinky},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"agx" = (/mob/living/simple_animal/bot/floorbot,/turf/open/floor/plating,/area/construction) -"agy" = (/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/port/fore) -"agz" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/fore) -"agA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fore) -"agB" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore) -"agC" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) -"agD" = (/obj/machinery/seed_extractor,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison) -"agE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) -"agF" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"agG" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/theatre/mime) -"agH" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/fore) -"agI" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/tower,/obj/item/seeds/amanita,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison) -"agJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Fore Maintenance"; req_one_access_txt = "12;46"},/turf/open/floor/plating,/area/maintenance/fore) -"agK" = (/obj/structure/chair/comfy/black,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"agL" = (/obj/machinery/power/tracker,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating/airless,/area/solar/port) -"agM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"agN" = (/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"agO" = (/obj/machinery/door/airlock/public/glass{name = "Holodeck Door"},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"agP" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison) -"agQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"agR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"agS" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"agT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/suit_storage_unit/engine,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"agU" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = 6},/obj/item/storage/toolbox/mechanical{pixel_y = 3},/obj/item/assembly/timer{pixel_x = 6; pixel_y = 4},/obj/item/t_scanner{pixel_x = -2; pixel_y = 5},/obj/item/t_scanner,/obj/item/assembly/igniter{pixel_x = 6; pixel_y = -4},/obj/structure/sign/poster/contraband/missing_gloves{pixel_y = 32},/turf/open/floor/plasteel,/area/storage/tools) -"agV" = (/obj/machinery/newscaster{pixel_x = 28},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"agW" = (/turf/closed/wall/r_wall,/area/security/processing) -"agX" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Starboard Bow Solar Exterior Airlock"; req_access_txt = "10;13"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) -"agY" = (/obj/structure/table,/obj/item/storage/crayons,/obj/item/toy/beach_ball/holoball,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"agZ" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"aha" = (/obj/structure/table,/obj/machinery/microwave{pixel_y = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"ahb" = (/obj/machinery/processor,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"ahc" = (/obj/structure/table,/obj/machinery/microwave{pixel_y = 8},/obj/structure/sign/poster/official/cleanliness{pixel_y = 32},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"ahd" = (/obj/structure/sink/kitchen{pixel_y = 28},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"ahe" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"ahf" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external/glass{name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plasteel,/area/security/processing) -"ahg" = (/turf/closed/wall/r_wall,/area/security/warden) -"ahh" = (/obj/machinery/power/port_gen/pacman,/turf/open/floor/plating,/area/tcommsat/computer) -"ahi" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/newscaster{pixel_x = 28},/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/item/storage/fancy/donut_box,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"ahj" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Fore Maintenance - Fore"; dir = 4},/turf/open/floor/plating,/area/maintenance/fore) -"ahk" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/processing) -"ahl" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Labor Camp Shuttle Airlock"},/turf/open/floor/plasteel,/area/security/processing) -"ahm" = (/obj/structure/falsewall/reinforced,/turf/closed/wall,/area/maintenance/port/fore) -"ahn" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/port/fore) -"aho" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/security/processing) -"ahp" = (/obj/machinery/gulag_item_reclaimer{pixel_y = 24},/turf/open/floor/plasteel,/area/security/processing) -"ahq" = (/turf/open/floor/plasteel,/area/security/processing) -"ahr" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/ambrosia,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison) -"ahs" = (/obj/machinery/light,/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/camera{c_tag = "Kitchen"; dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aht" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/table,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/item/storage/box/disks,/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"ahu" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hydroponics) -"ahv" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = 32},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"ahw" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"ahx" = (/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"ahy" = (/obj/effect/spawner/structure/window/plasma/reinforced,/obj/machinery/door/poddoor/preopen{id = "solitarylock"; name = "Brig Lockdown"},/turf/open/floor/plating,/area/security/warden) -"ahz" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/fitness) -"ahA" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/crew_quarters/fitness) -"ahB" = (/obj/structure/toilet{dir = 4},/obj/machinery/door/window/eastleft{name = "Bathroom Stall"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) -"ahC" = (/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) -"ahD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/fore"; dir = 1; name = "Fore Maintenance APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/fore) -"ahE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) -"ahF" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/mirror{pixel_y = 24},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) -"ahG" = (/obj/structure/sink{pixel_y = 28},/obj/structure/sign/poster/official/cleanliness{pixel_x = 32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) -"ahH" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/wood,/area/crew_quarters/fitness) -"ahI" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness"; name = "Fitness Room APC"; pixel_y = -26},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/fore) -"ahJ" = (/turf/open/floor/wood,/area/crew_quarters/fitness) -"ahK" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"ahL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/crew_quarters/observatory) -"ahM" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"ahN" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"ahO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) -"ahP" = (/turf/closed/wall,/area/maintenance/solars/starboard/fore) -"ahQ" = (/obj/structure/closet/lasertag/blue,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"ahR" = (/obj/item/beacon,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"ahS" = (/obj/structure/closet/cabinet,/turf/open/floor/wood,/area/crew_quarters/fitness) -"ahT" = (/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/light{dir = 1},/obj/item/storage/bag/plants,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"ahU" = (/obj/machinery/vending/wardrobe/chef_wardrobe,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"ahV" = (/obj/structure/closet/lasertag/red,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"ahW" = (/obj/structure/closet/secure_closet/personal,/obj/machinery/light{dir = 1},/turf/open/floor/wood,/area/crew_quarters/fitness) -"ahX" = (/obj/machinery/deepfryer,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"ahY" = (/obj/machinery/vending/autodrobe,/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown) -"ahZ" = (/obj/structure/table/glass,/obj/item/storage/toolbox/emergency{pixel_y = 4},/obj/item/radio/off,/obj/machinery/camera{c_tag = "Arrival Shuttle Hallway"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/hallway/secondary/entry) -"aia" = (/obj/effect/landmark/start/cook,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aib" = (/obj/structure/table/glass,/obj/machinery/light{dir = 1},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/hallway/secondary/entry) -"aic" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"aid" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/cotton,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison) -"aie" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"aif" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"aig" = (/obj/machinery/camera{c_tag = "Observatory Holodeck"; dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"aih" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"aii" = (/obj/structure/closet,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/gps,/turf/open/floor/plasteel,/area/storage/tools) -"aij" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"aik" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"ail" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"aim" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore) -"ain" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/processing) -"aio" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) -"aip" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/port/fore) -"aiq" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space/basic,/area/solar/port) -"air" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stock_parts/cell/high/plus,/obj/item/stack/cable_coil/red{pixel_x = 3; pixel_y = 2},/obj/item/stack/cable_coil/red,/obj/item/screwdriver,/obj/item/multitool{pixel_x = -6; pixel_y = -2},/turf/open/floor/plasteel,/area/storage/tools) -"ais" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/security/processing) -"ait" = (/obj/machinery/vending/dinnerware,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aiu" = (/obj/effect/landmark/start/mime,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/checker,/area/crew_quarters/theatre/mime) -"aiv" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks/beer,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aiw" = (/obj/machinery/vending/cola/random,/turf/open/floor/wood,/area/crew_quarters/fitness) -"aix" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/crew_quarters/kitchen) -"aiy" = (/obj/structure/bed,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/landmark/start/clown,/obj/item/bedsheet/clown,/obj/structure/sign/plaques/kiddie/perfect_man{pixel_y = 32},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown) -"aiz" = (/turf/closed/wall,/area/maintenance/starboard/fore) -"aiA" = (/obj/machinery/light_switch{pixel_x = -24},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction) -"aiB" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/kitchen"; name = "Kitchen APC"; pixel_y = -26},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"aiC" = (/turf/closed/wall,/area/hallway/secondary/service) -"aiD" = (/obj/structure/closet/crate/wooden/toy,/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Clown's Office"; pixel_x = 22},/obj/item/clothing/under/rank/civilian/clown/yellow,/obj/item/clothing/under/rank/civilian/clown/blue,/obj/item/clothing/under/rank/civilian/clown/green,/obj/item/toy/crayon/spraycan/lubecan,/obj/item/megaphone/clown,/turf/open/floor/plating,/area/crew_quarters/theatre/clown) -"aiE" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel,/area/security/processing) -"aiF" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Starboard Bow Maintenance"; req_one_access_txt = "12;25;26;28;35;46"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"aiG" = (/obj/structure/closet,/obj/structure/window/reinforced,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/security/processing) -"aiH" = (/obj/machinery/hydroponics/constructable,/obj/item/seeds/grass,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/security/prison) -"aiI" = (/obj/structure/closet/boxinggloves,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"aiJ" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry) -"aiK" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/bot,/obj/structure/closet/secure_closet/genpop,/turf/open/floor/plasteel,/area/security/brig) -"aiL" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/prison) -"aiM" = (/turf/closed/wall/r_wall,/area/crew_quarters/observatory) -"aiN" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/port) -"aiO" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/solars/port) -"aiP" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/solars/port) -"aiQ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/wood,/area/crew_quarters/fitness) -"aiR" = (/obj/structure/rack,/obj/item/reagent_containers/glass/beaker/waterbottle,/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/fitness) -"aiS" = (/obj/item/kirbyplants{icon_state = "plant-06"},/turf/open/floor/wood,/area/crew_quarters/fitness) -"aiT" = (/obj/machinery/door/airlock/maintenance/abandoned{name = "Port Bow Maintainance"; req_one_access_txt = "1"},/turf/open/floor/plating,/area/maintenance/port/fore) -"aiU" = (/obj/structure/disposalpipe/segment,/obj/machinery/deepfryer,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aiV" = (/obj/item/stack/tile/plasteel{pixel_x = 10; pixel_y = 4},/turf/open/floor/plating,/area/construction) -"aiW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Observatory"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/observatory) -"aiX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/crew_quarters/observatory) -"aiY" = (/obj/structure/toilet{dir = 4},/obj/structure/window/reinforced/tinted{dir = 1},/obj/machinery/door/window/eastright{name = "Bathroom Stall"},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) -"aiZ" = (/turf/open/floor/plasteel,/area/crew_quarters/observatory) -"aja" = (/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/obj/item/caution,/turf/open/floor/plating,/area/construction) -"ajb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"ajc" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space/basic,/area/solar/port) -"ajd" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"aje" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"ajf" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore) -"ajg" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = -24},/obj/item/reagent_containers/food/snacks/pie/cream,/obj/item/instrument/bikehorn,/obj/item/flashlight/lamp/bananalamp{pixel_y = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown) -"ajh" = (/obj/structure/table/glass,/obj/item/paper_bin/construction,/obj/item/storage/crayons,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/hallway/secondary/entry) -"aji" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"ajj" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"ajk" = (/obj/effect/landmark/start/clown,/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown) -"ajl" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/mob/living/simple_animal/cockroach,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"ajm" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/washing_machine,/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) -"ajn" = (/obj/machinery/power/smes,/turf/open/floor/plating,/area/tcommsat/computer) -"ajo" = (/obj/structure/table,/obj/item/toy/dummy,/obj/structure/mirror{pixel_x = -24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/checker,/area/crew_quarters/theatre/mime) -"ajp" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/observatory) -"ajq" = (/obj/effect/landmark/start/clown,/obj/structure/cable{icon_state = "0-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/power/apc{areastring = "/area/crew_quarters/theatre/clown"; dir = 4; name = "Clown's Office APC"; pixel_x = 24},/turf/open/floor/plating,/area/crew_quarters/theatre/clown) -"ajr" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/observatory) -"ajs" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/mint,/obj/item/reagent_containers/food/condiment/mayonnaise,/obj/item/bikehorn{pixel_x = -8; pixel_y = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"ajt" = (/obj/machinery/atmospherics/components/binary/valve,/turf/open/floor/plating,/area/tcommsat/computer) -"aju" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/solars/port) -"ajv" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/theatre/mime) -"ajw" = (/turf/closed/wall,/area/construction/secondary) -"ajx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) -"ajy" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/machinery/computer/prisoner/management,/turf/open/floor/plasteel,/area/security/brig) -"ajz" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"ajA" = (/obj/effect/turf_decal/bot,/obj/structure/closet/secure_closet/genpop,/turf/open/floor/plasteel,/area/security/brig) -"ajB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Hydroponics"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/turf/open/floor/plasteel,/area/security/prison) -"ajC" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore) -"ajD" = (/obj/structure/chair/stool,/obj/effect/landmark/start/cook,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"ajE" = (/obj/structure/closet/secure_closet/freezer/kitchen,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"ajF" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/construction/secondary) -"ajG" = (/obj/machinery/computer/arcade,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"ajH" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/storage/toolbox/mechanical,/obj/item/crowbar,/obj/item/extinguisher,/turf/open/floor/plating,/area/maintenance/port/fore) -"ajI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"ajJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"ajK" = (/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"ajL" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/lounge"; name = "Lounge APC"; pixel_y = -26},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/observatory) -"ajM" = (/obj/structure/table,/obj/machinery/reagentgrinder{pixel_y = 6},/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = -8; pixel_y = 12},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = -8; pixel_y = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"ajN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/port/fore) -"ajO" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) -"ajP" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"ajQ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"ajR" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/observatory) -"ajS" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) -"ajT" = (/obj/structure/weightmachine/weightlifter,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"ajU" = (/obj/structure/rack,/obj/item/wrench,/obj/item/light/tube,/obj/item/radio/off,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/cable,/obj/machinery/camera{c_tag = "Security - Interrogation Maintenance"; dir = 1},/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/security/brig"; dir = 4; name = "Brig APC"; pixel_x = 26},/turf/open/floor/plating,/area/maintenance/solars/port) -"ajV" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/crew_quarters/theatre/mime) -"ajW" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/observatory) -"ajX" = (/obj/item/pipe{pixel_x = 8; pixel_y = 2},/obj/item/melee/baseball_bat,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/camera{c_tag = "Secondary Construction Area"},/turf/open/floor/plating,/area/construction/secondary) -"ajY" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/port/fore) -"ajZ" = (/obj/item/multitool,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/tcommsat/computer"; dir = 1; name = "Telecomms Access APC"; pixel_y = 28},/turf/open/floor/plating,/area/tcommsat/computer) -"aka" = (/turf/closed/wall,/area/crew_quarters/bar) -"akb" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{name = "Mime's Office"; req_access_txt = "46"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/crew_quarters/theatre/mime) -"akc" = (/obj/machinery/computer/slot_machine,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction/secondary) -"akd" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/security/checkpoint) -"ake" = (/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/rnd/production/techfab/department/service,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"akf" = (/obj/structure/table,/obj/item/storage/toolbox/emergency{pixel_y = 4},/obj/item/electronics/firelock,/obj/item/electronics/firealarm,/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction/secondary) -"akg" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) -"akh" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction/secondary) -"aki" = (/obj/structure/closet/toolcloset,/turf/open/floor/plating,/area/construction/secondary) -"akj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external{name = "Starboard Bow Solar Exterior Airlock"; req_access_txt = "10;13"},/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) -"akk" = (/obj/item/stack/tile/plasteel{pixel_x = 10; pixel_y = 4},/turf/open/floor/plating,/area/construction/secondary) -"akl" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/computer/shuttle/labor{dir = 4},/turf/open/floor/plasteel,/area/security/processing) -"akm" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass,/turf/open/floor/plasteel,/area/construction/secondary) -"akn" = (/obj/machinery/power/solar_control{id = "forestarboard"; name = "Starboard Bow Solar Control"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) -"ako" = (/obj/machinery/button/flasher{id = "executionflash"; pixel_x = 7; pixel_y = 24},/obj/effect/decal/cleanable/generic,/turf/open/floor/plasteel,/area/maintenance/port/fore) -"akp" = (/obj/structure/closet/secure_closet/warden,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden) -"akq" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/structure/table/reinforced,/obj/item/storage/box/prisoner,/obj/item/razor,/obj/item/paper/guides/jobs/security/labor_camp,/obj/item/pen,/turf/open/floor/plasteel,/area/security/processing) -"akr" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/computer/prisoner/gulag_teleporter_computer{dir = 8},/obj/machinery/camera{c_tag = "Security - Prison Shuttle Dock"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/security/processing) -"aks" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden) -"akt" = (/obj/machinery/computer/prisoner/management,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Brig Control APC"; pixel_y = 24},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden) -"aku" = (/obj/machinery/computer/secure_data,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden) -"akv" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"akw" = (/obj/structure/bed,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"akx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Secondary Construction Area"; req_access_txt = "12"},/turf/open/floor/plating,/area/construction/secondary) -"aky" = (/obj/machinery/computer/crew,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden) -"akz" = (/obj/machinery/door/airlock/external,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/router/service) -"akA" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/security/warden) -"akB" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/port) -"akC" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/warning/electricshock{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/port/fore) -"akD" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/obj/item/hand_labeler{pixel_y = 4},/turf/open/floor/plasteel,/area/security/brig) -"akE" = (/turf/closed/wall/r_wall,/area/router/sec) -"akF" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"akG" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plating,/area/maintenance/port/fore) -"akH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"akI" = (/turf/closed/wall/r_wall,/area/tcommsat/computer) -"akJ" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Telecommunications Maintenance"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/tcommsat/computer) -"akK" = (/obj/machinery/portable_atmospherics/pump,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/port/fore) -"akL" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/camera{c_tag = "Security - Brig"; pixel_x = 22},/turf/open/floor/plasteel,/area/security/brig) -"akM" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"akN" = (/turf/open/space/basic,/area/router/aux) -"akO" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/computer/security/labor{dir = 4},/turf/open/floor/plasteel,/area/security/processing) -"akP" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor{name = "Security Router"},/turf/open/floor/plating,/area/router/sec) -"akQ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"akR" = (/obj/structure/punching_bag,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"akS" = (/obj/structure/rack,/obj/structure/window/reinforced/tinted{dir = 1},/obj/item/soap/nanotrasen,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) -"akT" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/plasteel,/area/security/processing) -"akU" = (/obj/machinery/door/window/northleft{name = "Showers"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) -"akV" = (/obj/structure/rack,/obj/structure/window/reinforced/tinted{dir = 1},/obj/item/storage/firstaid/regular,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) -"akW" = (/obj/structure/table/wood,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/reagent_containers/hypospray/medipen,/obj/item/reagent_containers/hypospray/medipen,/obj/item/reagent_containers/hypospray/medipen,/obj/item/reagent_containers/hypospray/medipen,/obj/structure/sign/departments/restroom{pixel_x = -32},/turf/open/floor/wood,/area/crew_quarters/fitness) -"akX" = (/turf/closed/wall,/area/crew_quarters/dorms/purple) -"akY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/security/warden) -"akZ" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) -"ala" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry) -"alb" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) -"alc" = (/obj/structure/fermenting_barrel,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"ald" = (/obj/machinery/chem_master/condimaster,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"ale" = (/turf/closed/wall,/area/crew_quarters/dorms/blue) -"alf" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) -"alg" = (/obj/structure/frame/machine,/obj/item/circuitboard/computer/arcade/minesweeper,/turf/open/floor/plating,/area/construction/secondary) -"alh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"ali" = (/turf/open/floor/plating,/area/construction/secondary) -"alj" = (/obj/machinery/gulag_teleporter,/turf/open/floor/plasteel,/area/security/processing) -"alk" = (/obj/item/caution,/turf/open/floor/plating,/area/construction/secondary) -"all" = (/obj/structure/table/glass,/obj/item/wrench{pixel_x = 2; pixel_y = 4},/obj/item/reagent_containers/glass/bottle/mutagen{pixel_x = -4},/turf/open/floor/grass,/area/hydroponics) -"alm" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/grass,/area/hydroponics) -"aln" = (/obj/machinery/hydroponics/constructable,/turf/open/floor/grass,/area/hydroponics) -"alo" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) -"alp" = (/obj/machinery/washing_machine,/turf/open/floor/plasteel,/area/construction/secondary) -"alq" = (/obj/machinery/conveyor/auto{id = "sec"},/turf/open/floor/plating,/area/router/sec) -"alr" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"als" = (/obj/machinery/mass_driver{dir = 1; id = "sec_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/sec) -"alt" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external/glass{name = "Labor Camp Shuttle Airlock"; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/processing) -"alu" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port) -"alv" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Labor Camp Shuttle Airlock"; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/processing) -"alw" = (/obj/machinery/light{dir = 8},/obj/effect/landmark/start/warden,/obj/machinery/camera{c_tag = "Security - Brig Control"; dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/warden) -"alx" = (/turf/open/floor/plasteel,/area/maintenance/port/fore) -"aly" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/warden) -"alz" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"alA" = (/obj/structure/bed,/obj/item/bedsheet/purple,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) -"alB" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/port/fore) -"alC" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plating,/area/maintenance/port/fore) -"alD" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"alE" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) -"alF" = (/obj/machinery/photocopier,/obj/machinery/newscaster/security_unit{pixel_y = -28},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/paper/guides/cogstation/letter_sec,/turf/open/floor/plasteel,/area/security/warden) -"alG" = (/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plating,/area/maintenance/port/fore) -"alH" = (/obj/structure/table,/obj/item/storage/box/beakers{pixel_x = -8},/obj/item/storage/box/ingredients{pixel_x = 6},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"alI" = (/obj/structure/weightmachine/stacklifter,/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"alJ" = (/obj/machinery/vending/hydroseeds,/turf/open/floor/grass,/area/hydroponics) -"alK" = (/obj/effect/landmark/xmastree,/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"alL" = (/obj/structure/weightmachine/weightlifter,/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"alM" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"alN" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/fore) -"alO" = (/obj/structure/table/wood,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) -"alP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/fore) -"alQ" = (/obj/structure/dresser,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) -"alR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry) -"alS" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/reagent_containers/food/drinks/drinkingglass,/obj/item/reagent_containers/rag,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"alT" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) -"alU" = (/obj/structure/chair/stool,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"alV" = (/obj/structure/bed,/obj/item/bedsheet/blue,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) -"alW" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/security/processing) -"alX" = (/obj/structure/table,/obj/item/storage/box/ingredients,/obj/item/clothing/head/chefhat,/obj/item/reagent_containers/glass/beaker,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"alY" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/item/t_scanner,/turf/open/floor/plating,/area/construction/secondary) -"alZ" = (/turf/closed/wall/r_wall,/area/hydroponics/garden{name = "Nature Preserve"}) -"ama" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/security/warden) -"amb" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/port/fore) -"amc" = (/turf/closed/wall,/area/storage/tools) -"amd" = (/obj/structure/table,/turf/open/floor/plating,/area/maintenance/port/fore) -"ame" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/warden) -"amf" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"amg" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/security/processing) -"amh" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/table,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/recharger,/obj/item/pen/red{pixel_y = 4},/obj/item/pen/blue{pixel_x = -4; pixel_y = -4},/turf/open/floor/plasteel,/area/security/brig) -"ami" = (/obj/structure/sign/poster/contraband/grey_tide{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/port/fore) -"amj" = (/turf/closed/wall/rust,/area/maintenance/port/fore) -"amk" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/maintenance/port/fore) -"aml" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"amm" = (/obj/structure/closet/crate/secure/weapon{desc = "A secure clothing crate."; name = "formal uniform crate"; req_access_txt = "3"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/warden) -"amn" = (/obj/structure/cable{icon_state = "2-4"},/mob/living/simple_animal/mouse/brown,/turf/open/floor/plating,/area/construction/secondary) -"amo" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"amp" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Fore Maintenance"; req_one_access_txt = "12;46"},/turf/open/floor/plating,/area/maintenance/fore) -"amq" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/maintenance/solars/port) -"amr" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Starboard Bow Maintenance"; req_one_access_txt = "12;25;26;28;35;46"},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"ams" = (/obj/machinery/camera{c_tag = "Fitness Toilets"; pixel_x = 22},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) -"amt" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"amu" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"amv" = (/obj/structure/punching_bag,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"amw" = (/obj/structure/sign/poster/contraband/eat{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"amx" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"amy" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/bar) -"amz" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"amA" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"amB" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/warden) -"amC" = (/obj/structure/closet/secure_closet/freezer/fridge,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"amD" = (/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"amE" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/cable,/obj/machinery/power/apc/highcap/five_k{areastring = "/area/crew_quarters/bar"; dir = 8; name = "Bar APC"; pixel_x = -26},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"amF" = (/obj/effect/landmark/start/cook,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -30},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"amG" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/chapel/main) -"amH" = (/obj/item/crowbar/large{pixel_y = 3},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/construction/secondary) -"amI" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/warden,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/warden) -"amJ" = (/obj/structure/lattice,/obj/structure/sign/departments/botany{pixel_x = -32},/turf/open/space/basic,/area/space/nearstation) -"amK" = (/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"amL" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/service) -"amM" = (/obj/machinery/light,/obj/machinery/disposal/bin{name = "Kitchen Mailbox"},/obj/effect/turf_decal/delivery/white,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"amN" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/storage/tools) -"amO" = (/obj/item/bedsheet/mime,/obj/structure/bed,/obj/effect/landmark/start/mime,/obj/machinery/camera{c_tag = "Mime's Office"; pixel_x = 22},/turf/open/floor/plasteel/checker,/area/crew_quarters/theatre/mime) -"amP" = (/obj/effect/landmark/start/assistant,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/hallway/secondary/entry) -"amQ" = (/obj/structure/table/reinforced,/obj/machinery/door/window/eastleft{name = "Reception Window"},/obj/machinery/door/window/westleft{name = "Warden's Desk"; req_one_access_txt = "2"},/obj/item/paper_bin,/obj/item/pen,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/warden) -"amR" = (/obj/machinery/light/small,/obj/machinery/light_switch{pixel_y = -24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/construction/secondary) -"amS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/port/fore) -"amT" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plating,/area/construction/secondary) -"amU" = (/obj/structure/beebox,/obj/item/queen_bee/bought,/turf/open/floor/grass,/area/hydroponics) -"amV" = (/turf/open/floor/grass,/area/hydroponics) -"amW" = (/obj/structure/table/glass,/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 6},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 4},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = -4; pixel_y = 2},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = -4},/obj/item/book/manual/hydroponics_pod_people{pixel_x = 4; pixel_y = 4},/obj/item/paper/guides/jobs/hydroponics{pixel_x = 4; pixel_y = 4},/turf/open/floor/grass,/area/hydroponics) -"amX" = (/obj/machinery/suit_storage_unit/security,/turf/open/floor/plasteel/dark,/area/security/processing) -"amY" = (/turf/closed/wall,/area/chapel/main) -"amZ" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"ana" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"anb" = (/obj/structure/table,/obj/item/lipstick/black,/obj/item/lipstick/random{pixel_x = 2; pixel_y = 4},/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/theatre/mime) -"anc" = (/obj/item/cigbutt,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/construction/secondary) -"and" = (/turf/closed/wall/r_wall,/area/chapel/main) -"ane" = (/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) -"anf" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/construction/secondary"; dir = 1; name = "Secondary Construction Area APC"; pixel_y = 24},/turf/open/floor/plating,/area/construction/secondary) -"ang" = (/turf/closed/wall/r_wall,/area/engine/storage_shared{name = "Electrical Substation"}) -"anh" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/paper_bin,/obj/item/pen,/obj/item/clothing/glasses/regular,/obj/machinery/door/window/northright{name = "Medical Booth Desk"; req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"ani" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/poster/official/duelshotgun{pixel_y = -32},/turf/open/floor/plasteel,/area/security/brig) -"anj" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"ank" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/easel,/obj/item/canvas/nineteenXnineteen,/obj/machinery/camera{c_tag = "Crew Lounge"; dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"anl" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"anm" = (/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/maintenance/disposal) -"ann" = (/obj/effect/landmark/event_spawn,/turf/open/floor/goonplaque{desc = "It reads 'In honor of spacemen past, whose work allowed this station to find its new home. The fact that you stand on a station originally built light years away is a definitive representation of the ingenuity of the human spirit.' Beneath this is the image of a spaceman rocketing upwards by means of what appears to be a match and flatulence."},/area/hallway/secondary/entry) -"ano" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore) -"anp" = (/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) -"anq" = (/turf/closed/wall,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"anr" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"ans" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/destTagger,/obj/machinery/button/door{id = "secblock"; name = "Router Access Control"; pixel_x = 8; pixel_y = 24; req_access_txt = "1"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/router/sec) -"ant" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) -"anu" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"anv" = (/obj/item/stack/sheet/plasteel{pixel_x = 4; pixel_y = 4},/obj/item/storage/box/beakers,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plating,/area/construction) -"anw" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"anx" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/tcommsat/computer) -"any" = (/obj/structure/table/wood,/obj/item/reagent_containers/pill/patch/styptic,/obj/item/reagent_containers/pill/patch/styptic,/obj/item/reagent_containers/pill/patch/styptic,/obj/item/reagent_containers/pill/patch/styptic,/turf/open/floor/wood,/area/crew_quarters/fitness) -"anz" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"anA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Fitness Room Maintenance"; req_one_access_txt = "12;46"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/crew_quarters/fitness) -"anB" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/sign/barsign{pixel_y = 32},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"anC" = (/obj/machinery/computer/cargo/request,/obj/effect/turf_decal/delivery,/obj/machinery/requests_console{department = "Security Router"; name = "Security Router RC"; pixel_y = 32},/turf/open/floor/plasteel,/area/router/sec) -"anD" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry) -"anE" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"anF" = (/obj/machinery/smartfridge,/turf/closed/wall,/area/crew_quarters/kitchen) -"anG" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"anH" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/security{name = "Security Checkpoint"; req_access_txt = "1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/security/checkpoint) -"anI" = (/obj/machinery/computer/arcade/orion_trail,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"anJ" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/item/paper_bin,/obj/item/stamp/denied{pixel_x = 8; pixel_y = 8},/obj/item/stamp{pixel_x = 6; pixel_y = 4},/obj/item/pen,/obj/machinery/power/apc{areastring = "/area/security/checkpoint"; dir = 4; name = "Security Checkpoint APC"; pixel_x = 24},/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -32},/turf/open/floor/plasteel,/area/security/checkpoint) -"anK" = (/turf/closed/wall/r_wall,/area/security/detectives_office) -"anL" = (/obj/machinery/computer/arcade/minesweeper,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"anM" = (/obj/machinery/recharge_station,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/storage/tools) -"anN" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/analyzer,/obj/item/wrench{pixel_y = 4},/turf/open/floor/plasteel,/area/storage/tools) -"anO" = (/obj/structure/rack,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/storage/belt/utility,/obj/item/extinguisher,/turf/open/floor/plasteel,/area/storage/tools) -"anP" = (/obj/machinery/computer/arcade,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"anQ" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"anR" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"anS" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/power/apc{areastring = "/area/storage/tools"; name = "Auxiliary Tool Storage APC"; pixel_y = -26},/obj/machinery/camera{c_tag = "Auxiliary Tool Storage"; dir = 4; pixel_y = -22},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/storage/tools) -"anT" = (/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"anU" = (/turf/closed/wall/r_wall,/area/security/brig) -"anV" = (/turf/open/floor/plating,/area/maintenance/solars/port) -"anW" = (/obj/machinery/conveyor{dir = 1; id = "sec_off"},/turf/open/floor/plating,/area/router/sec) -"anX" = (/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"anY" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) -"anZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"aoa" = (/obj/item/clockwork/component/geis_capacitor/fallen_armor,/obj/structure/table/bronze,/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) -"aob" = (/obj/structure/closet/emcloset,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/solars/port) -"aoc" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/machinery/requests_console{department = "Recreation"; name = "Recreation RC"; pixel_y = -32},/obj/item/storage/box/drinkingglasses,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -4; pixel_y = 2},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"aod" = (/obj/machinery/computer/security{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/warden) -"aoe" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) -"aof" = (/obj/structure/sign/poster/official/foam_force_ad{pixel_y = 32},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"aog" = (/turf/open/floor/grass,/area/hydroponics/garden{name = "Nature Preserve"}) -"aoh" = (/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"aoi" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) -"aoj" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/security/checkpoint) -"aok" = (/obj/structure/chair/wood/normal{dir = 1},/obj/machinery/button/door{id = "Dorm1"; name = "Dormitory Door Lock"; normaldoorcontrol = 1; pixel_x = -7; pixel_y = -24; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) -"aol" = (/obj/machinery/button/door{id = "Dorm3"; name = "Dormitory Door Lock"; normaldoorcontrol = 1; pixel_x = 7; pixel_y = -24; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) -"aom" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) -"aon" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) -"aoo" = (/obj/structure/rack,/obj/item/storage/toolbox/mechanical,/obj/item/clothing/ears/earmuffs,/turf/open/floor/plating{icon_state = "panelscorched"},/area/construction/secondary) -"aop" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/construction/secondary) -"aoq" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/warden) -"aor" = (/obj/machinery/shower{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) -"aos" = (/obj/structure/window/reinforced,/obj/structure/closet/athletic_mixed,/turf/open/floor/wood,/area/crew_quarters/fitness) -"aot" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/wood,/area/crew_quarters/fitness) -"aou" = (/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"aov" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/grass,/area/hydroponics) -"aow" = (/mob/living/simple_animal/banana_spider{name = "Henry"},/turf/open/floor/grass,/area/hydroponics) -"aox" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry) -"aoy" = (/obj/machinery/computer/secure_data,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/camera{c_tag = "Security Checkpoint"; pixel_x = 22},/obj/machinery/newscaster/security_unit{pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/checkpoint) -"aoz" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance{lootcount = 4; name = "4maintenance loot spawner"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/construction/secondary) -"aoA" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/door/firedoor,/obj/item/flashlight/lamp,/obj/machinery/door/window/westright{name = "Security Checkpoint"; req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/checkpoint) -"aoB" = (/obj/structure/bed,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/camera{c_tag = "Security - Prison Beds"; dir = 8; pixel_y = -22},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/security/prison"; dir = 4; name = "Prison APC"; pixel_x = 26},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"aoC" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"aoD" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint) -"aoE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/chapel/main) -"aoF" = (/turf/closed/wall/r_wall,/area/security/main) -"aoG" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/checkpoint) -"aoH" = (/obj/machinery/door/airlock/external/glass{name = "Port Bow Solars External Access"; req_access_txt = "10;13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/port) -"aoI" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/grass,/area/hydroponics) -"aoJ" = (/obj/machinery/firealarm{pixel_y = 26},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"aoK" = (/turf/closed/wall/r_wall,/area/router/service) -"aoL" = (/obj/structure/chair/stool,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"aoM" = (/obj/structure/closet/crate,/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/micro_laser,/obj/item/stock_parts/scanning_module,/obj/item/stock_parts/capacitor,/turf/open/floor/plating,/area/construction) -"aoN" = (/obj/structure/closet/crate/internals,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/flashlight,/obj/item/flashlight,/obj/item/tank/internals/emergency_oxygen,/obj/item/tank/internals/emergency_oxygen,/obj/item/tank/internals/emergency_oxygen,/obj/item/tank/internals/emergency_oxygen,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = -26},/obj/item/clothing/head/hardhat/orange,/obj/item/clothing/head/hardhat/orange,/turf/open/floor/plasteel,/area/storage/tools) -"aoO" = (/turf/open/floor/plasteel,/area/storage/tools) -"aoP" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/solars/port) -"aoQ" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) -"aoR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Brig Control"; req_access_txt = "3"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/warden) -"aoS" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/conveyor{id = "serv_off"},/obj/machinery/door/poddoor{id = "servblock"; name = "Service Router"},/turf/open/floor/plating,/area/router/service) -"aoT" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor{id = "servblock"; name = "Service Router"},/turf/open/floor/plating,/area/router/service) -"aoU" = (/obj/structure/chair/stool,/obj/effect/landmark/start/assistant,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"aoV" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aoW" = (/obj/machinery/power/solar_control{dir = 4; id = "foreport"; name = "Port Bow Solar Control"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/solars/port) -"aoX" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/port/fore) -"aoY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aoZ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) -"apa" = (/obj/structure/chair/sofa/right,/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) -"apb" = (/obj/structure/reagent_dispensers/water_cooler,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"apc" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/brig) -"apd" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/engine/storage_shared{name = "Electrical Substation"}) -"ape" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/port/fore) -"apf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"apg" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/router/sec) -"aph" = (/turf/open/floor/plasteel/dark,/area/security/brig) -"api" = (/obj/machinery/door/window/southright{name = "Weightroom"},/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"apj" = (/obj/structure/window/reinforced,/obj/structure/punching_bag,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"apk" = (/obj/structure/closet/lasertag/blue,/turf/open/floor/wood,/area/crew_quarters/fitness) -"apl" = (/obj/structure/chair/sofa/right,/obj/item/clothing/head/beret/black,/turf/open/floor/wood,/area/crew_quarters/fitness) -"apm" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1},/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) -"apn" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/router/sec) -"apo" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/construction) -"app" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/router/sec) -"apq" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/hallway/secondary/entry) -"apr" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/button/massdriver{id = "sec_out"; pixel_x = 24; pixel_y = 24},/turf/open/floor/plasteel,/area/router/sec) -"aps" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/security{name = "Security EVA Prep Room"; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/processing) -"apt" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction) -"apu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig) -"apv" = (/turf/closed/wall,/area/hallway/secondary/entry) -"apw" = (/obj/structure/chair/sofa/left,/obj/effect/landmark/start/assistant,/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) -"apx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) -"apy" = (/obj/machinery/vr_sleeper{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"apz" = (/obj/machinery/vr_sleeper{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"apA" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/crew_quarters/dorms/purple) -"apB" = (/obj/structure/flora/tree/jungle/small,/turf/open/floor/grass,/area/hydroponics/garden{name = "Nature Preserve"}) -"apC" = (/turf/closed/wall/r_wall,/area/hydroponics) -"apD" = (/obj/machinery/door/airlock{id_tag = "Dorm1"; name = "Room 1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) -"apE" = (/obj/machinery/biogenerator,/turf/open/floor/grass,/area/hydroponics) -"apF" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"apG" = (/mob/living/simple_animal/chicken{name = "Featherbottom"; real_name = "Featherbottom"},/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) -"apH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/security/main) -"apI" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"apJ" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green,/obj/machinery/camera{c_tag = "Hydroponics - Fore"; dir = 1},/turf/open/floor/plasteel,/area/hydroponics) -"apK" = (/obj/structure/reagent_dispensers/watertank/high,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -30},/obj/item/reagent_containers/glass/bucket,/turf/open/floor/grass,/area/hydroponics) -"apL" = (/obj/structure/chair/sofa/left,/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) -"apM" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) -"apN" = (/obj/machinery/door/airlock{id_tag = "Dorm3"; name = "Room 3"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) -"apO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/crew_quarters/dorms/blue) -"apP" = (/obj/structure/table,/obj/item/radio/intercom{name = "Station Intercom (Common)"},/turf/open/floor/wood,/area/crew_quarters/fitness) -"apQ" = (/obj/machinery/door/airlock/security/glass{name = "Solitary Confinement"; req_one_access_txt = "2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"apR" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = 1; pixel_y = 3},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = -5; pixel_y = 7},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"apS" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/solars/port) -"apT" = (/obj/machinery/light/small,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/construction) -"apU" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/gun/ballistic/revolver/russian,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"apV" = (/turf/closed/wall/rust,/area/chapel/main) -"apW" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/crew_quarters/kitchen) -"apX" = (/obj/structure/fermenting_barrel,/turf/open/floor/grass,/area/hydroponics) -"apY" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/port/fore) -"apZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Fitness Toilets"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) -"aqa" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aqb" = (/obj/machinery/door/firedoor,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Secondary Construction Area"; req_access_txt = "12"},/turf/open/floor/plating,/area/construction/secondary) -"aqc" = (/obj/structure/sign/departments/medbay/alt,/turf/closed/wall/r_wall,/area/medical{name = "Medical Booth"}) -"aqd" = (/obj/structure/chair/sofa/right,/obj/machinery/camera{c_tag = "Chapel - Fore"},/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) -"aqe" = (/obj/machinery/conveyor{id = "serv_off"},/turf/open/floor/plating,/area/router/service) -"aqf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aqg" = (/obj/structure/chair{dir = 8},/obj/machinery/camera{c_tag = "Fitness Room"; dir = 8; pixel_y = -22},/turf/open/floor/wood,/area/crew_quarters/fitness) -"aqh" = (/obj/structure/chair/sofa/left,/turf/open/floor/wood,/area/crew_quarters/fitness) -"aqi" = (/obj/structure/table,/obj/item/clipboard,/obj/item/paper_bin{pixel_x = 2; pixel_y = 4},/obj/item/pen,/turf/open/floor/wood,/area/crew_quarters/fitness) -"aqj" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aqk" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 10},/turf/open/space/basic,/area/space/nearstation) -"aql" = (/turf/closed/wall/r_wall,/area/crew_quarters/bar) -"aqm" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aqn" = (/turf/closed/wall/r_wall,/area/medical{name = "Medical Booth"}) -"aqo" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"aqp" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) -"aqq" = (/obj/structure/chair/stool,/turf/open/floor/plasteel,/area/storage/tools) -"aqr" = (/obj/structure/chair/stool,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/storage/tools) -"aqs" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore) -"aqt" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/modular_computer/laptop/preset/civilian,/obj/structure/sign/poster/contraband/hacking_guide{pixel_x = 32},/turf/open/floor/plasteel,/area/storage/tools) -"aqu" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore) -"aqv" = (/obj/structure/sign/poster/official/no_erp{pixel_x = 32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) -"aqw" = (/turf/closed/wall/r_wall/rust,/area/maintenance/solars/port) -"aqx" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) -"aqy" = (/obj/machinery/mass_driver{dir = 1; id = "serv_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/service) -"aqz" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/brig) -"aqA" = (/obj/structure/lattice/catwalk,/obj/structure/cable,/turf/open/space/basic,/area/solar/starboard/aft) -"aqB" = (/turf/closed/wall,/area/hydroponics) -"aqC" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/hydroponics) -"aqD" = (/obj/machinery/vending/sustenance,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"aqE" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light_switch{pixel_y = -24},/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/router/sec) -"aqF" = (/turf/open/floor/plasteel,/area/router/sec) -"aqG" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness) -"aqH" = (/obj/machinery/power/apc{name = "Security Router APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel,/area/router/sec) -"aqI" = (/obj/structure/flora/ausbushes/genericbush,/turf/open/floor/grass,/area/hydroponics) -"aqJ" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/router/sec) -"aqK" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"aqL" = (/turf/closed/wall,/area/security/checkpoint) -"aqM" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/port) -"aqN" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock{name = "Service Hallway"; req_one_access_txt = "25;26;28;35"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/hallway/secondary/service) -"aqO" = (/obj/machinery/door/airlock/engineering{name = "Engineering EVA"; req_access_txt = "11"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"aqP" = (/obj/structure/chair/stool,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"aqQ" = (/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) -"aqR" = (/obj/item/grown/bananapeel,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown) -"aqS" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"aqT" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"aqU" = (/turf/closed/wall/r_wall,/area/engine/storage{name = "Canister Storage"}) -"aqV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Purple Dorms Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/dorms/purple) -"aqW" = (/obj/structure/table,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/book/manual/chef_recipes,/obj/item/storage/box/donkpockets,/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aqX" = (/obj/structure/sign/warning/fire{desc = "A sign that states the labeled room's number."; icon_state = "roomnum"; name = "Room Number 1"; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) -"aqY" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel,/area/security/brig) -"aqZ" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"ara" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"arb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/barbershop"; dir = 4; name = "Barbershop APC"; pixel_x = 24},/turf/open/floor/plating,/area/maintenance/port/fore) -"arc" = (/obj/structure/closet/secure_closet/freezer/cream_pie,/obj/item/toy/figure/clown,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/crew_quarters/theatre/clown) -"ard" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"are" = (/obj/machinery/chem_heater,/obj/effect/turf_decal/stripes/end{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"arf" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) -"arg" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"arh" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) -"ari" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/processing) -"arj" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/dorms/purple) -"ark" = (/turf/open/floor/plasteel,/area/crew_quarters/locker) -"arl" = (/obj/machinery/vending/kink,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/camera{c_tag = "Locker Room"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"arm" = (/obj/structure/chair/sofa/right,/obj/effect/landmark/start/assistant,/turf/open/floor/wood,/area/crew_quarters/fitness) -"arn" = (/obj/machinery/vending/tool,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/storage/tools) -"aro" = (/obj/structure/closet/firecloset,/obj/machinery/camera{c_tag = "Starboard Bow Maintenance - Starboard"; dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"arp" = (/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/disposal) -"arq" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"arr" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/structure/chair{dir = 8},/turf/open/floor/plating,/area/maintenance/solars/port) -"ars" = (/obj/structure/chair/stool,/obj/machinery/firealarm{pixel_y = 26},/obj/effect/landmark/start/bartender,/obj/item/clothing/under/costume/maid,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) -"art" = (/obj/structure/punching_bag,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"aru" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/dorms/blue) -"arv" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian{pixel_x = 1; pixel_y = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) -"arw" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/public/glass{name = "Crew Quarters"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"arx" = (/obj/machinery/button/door{id = "kitchenlock"; name = "Kitchen Lockup"; pixel_x = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"ary" = (/obj/machinery/food_cart,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"arz" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) -"arA" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) -"arB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"arC" = (/obj/structure/sign/warning/fire{desc = "A sign that states the labeled room's number."; dir = 4; icon_state = "roomnum"; name = "Room Number 3"; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) -"arD" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 8; icon_state = "intact"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/airlock/maintenance{name = "Blue Dorms Maintenance"; req_one_access_txt = "12;46"},/turf/open/floor/plating,/area/crew_quarters/dorms/blue) -"arE" = (/turf/closed/wall/r_wall,/area/maintenance/starboard/central) -"arF" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "hot loop to space"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"arG" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"arH" = (/obj/machinery/disposal/bin{name = "Detective's Mailbox"},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/delivery/white,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"arI" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/crew_quarters/fitness) -"arJ" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"arK" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/delivery,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/item/destTagger,/obj/machinery/button/massdriver{id = "serv_out"; pixel_x = 8; pixel_y = -4},/obj/machinery/requests_console{department = "Service Router"; name = "Service Router RC"; pixel_y = 28},/turf/open/floor/plasteel,/area/router/service) -"arL" = (/obj/machinery/conveyor{dir = 1; id = "serv_off"},/turf/open/floor/plating,/area/router/service) -"arM" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/router/service) -"arN" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "gas to sauna"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"arO" = (/obj/machinery/door/firedoor,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"arP" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"arQ" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"arR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/falsewall/reinforced{req_access_txt = "1"},/turf/open/floor/plasteel,/area/router/sec) -"arS" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/crew_quarters/dorms/purple) -"arT" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/brig) -"arU" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/sign/warning/fire{desc = "A sign that states the labeled room's number."; dir = 1; icon_state = "roomnum"; name = "Room Number 2"; pixel_y = -28},/obj/machinery/camera{c_tag = "Dormitories - Purple"; dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) -"arV" = (/obj/machinery/vr_sleeper{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/sign/poster/official/soft_cap_pop_art{pixel_x = -32},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"arW" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/general/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"arX" = (/obj/machinery/computer/med_data{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"arY" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"arZ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) -"asa" = (/obj/machinery/computer/arcade,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"asb" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) -"asc" = (/obj/machinery/disposal/bin,/obj/machinery/firealarm{pixel_y = 26},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"asd" = (/turf/closed/wall/rust,/area/maintenance/starboard/fore) -"ase" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Purple Dorms"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms/purple) -"asf" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Blue Dorms"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/dorms/blue) -"asg" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) -"ash" = (/obj/machinery/light_switch{pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) -"asi" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"asj" = (/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"ask" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Security - Prison Fore"; dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/mob/living/simple_animal/mouse/brown/Tom,/turf/open/floor/plasteel,/area/security/prison) -"asl" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external/glass{name = "Port Bow Solars External Access"; req_access_txt = "10;13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/maintenance/solars/port) -"asm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/hallway/secondary/service"; dir = 8; name = "Service Hall APC"; pixel_x = -24},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"asn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) -"aso" = (/obj/structure/sign/warning/fire{desc = "A sign that states the labeled room's number."; dir = 8; icon_state = "roomnum"; name = "Room Number 4"; pixel_y = -28},/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Dormitories - Blue"; dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) -"asp" = (/obj/structure/chair/comfy/brown,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"asq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/crew_quarters/dorms/blue) -"asr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/fore) -"ass" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/light/small,/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"ast" = (/obj/effect/turf_decal/delivery,/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) -"asu" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/rust,/area/maintenance/disposal) -"asv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"asw" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"asx" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"asy" = (/obj/effect/landmark/start/assistant,/obj/machinery/holopad,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/hallway/secondary/entry) -"asz" = (/obj/structure/toilet{dir = 4},/obj/machinery/camera{c_tag = "Security - Prison Bathroom"; dir = 4},/turf/open/floor/plasteel/freezer,/area/security/prison) -"asA" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/turf/open/floor/plating,/area/router/service) -"asB" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 5},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"asC" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"asD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"asE" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/button/door{id = "servblock"; name = "Router Access Control"; pixel_x = 8; pixel_y = 24; req_one_access_txt = "12;25;26;28;35;46"},/turf/open/floor/plasteel,/area/router/service) -"asF" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/security{name = "Labor Camp Arrivals"},/turf/open/floor/plasteel,/area/security/processing) -"asG" = (/obj/structure/sign/warning/nosmoking/circle,/turf/closed/wall/r_wall,/area/engine/storage{name = "Canister Storage"}) -"asH" = (/obj/machinery/camera{c_tag = "Port Bow Solar Maintenance"; dir = 1},/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/obj/structure/sign/warning/electricshock{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/solars/port) -"asI" = (/obj/effect/turf_decal/delivery,/obj/machinery/portable_atmospherics/canister/toxins,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) -"asJ" = (/turf/closed/wall,/area/crew_quarters/toilet) -"asK" = (/obj/machinery/vr_sleeper{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"asL" = (/turf/closed/wall,/area/security/brig) -"asM" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/storage{name = "Canister Storage"}) -"asN" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"asO" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) -"asP" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"asQ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/router/service) -"asR" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"asS" = (/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"asT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/mob/living/simple_animal/mouse/gray{desc = "A strangely observant rodent."; name = "Remy"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"asU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engineering Router"; req_access_txt = "11"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"asV" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) -"asW" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/security/main) -"asX" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/structure/table/reinforced,/obj/item/tape,/obj/item/radio/off,/turf/open/floor/plasteel/dark,/area/security/brig) -"asY" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/item/clipboard,/turf/open/floor/plasteel/dark,/area/security/brig) -"asZ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/router/service) -"ata" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/main) -"atb" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"atc" = (/turf/closed/wall,/area/security/main) -"atd" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Service Router APC"; pixel_y = 24},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/router/service) -"ate" = (/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/router/service) -"atf" = (/turf/closed/wall/r_wall/rust,/area/maintenance/starboard/central) -"atg" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/dark,/area/router/service) -"ath" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/turf/open/floor/plasteel/dark,/area/router/service) -"ati" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external,/turf/open/floor/plasteel,/area/router/service) -"atj" = (/obj/structure/window/reinforced,/obj/structure/table/reinforced,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/dark,/area/security/brig) -"atk" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/assistant,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/wood,/area/crew_quarters/fitness) -"atl" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/router/service) -"atm" = (/obj/structure/table,/obj/item/kitchen/rollingpin,/obj/item/reagent_containers/food/condiment/enzyme,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"atn" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plating,/area/maintenance/solars/port) -"ato" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"atp" = (/obj/machinery/door/airlock{id_tag = "Dorm2"; name = "Room 2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) -"atq" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/processing) -"atr" = (/obj/machinery/door/airlock{id_tag = "Dorm4"; name = "Room 4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) -"ats" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/maintenance_hatch{name = "Clown's Office"; req_access_txt = "46"},/turf/open/floor/plating,/area/crew_quarters/theatre/clown) -"att" = (/turf/open/floor/plating,/area/maintenance/starboard/central) -"atu" = (/obj/machinery/computer/cargo/request{dir = 4},/turf/open/floor/plating,/area/router/service) -"atv" = (/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port) -"atw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/router/service) -"atx" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/router/service) -"aty" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/router/service) -"atz" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/security/main) -"atA" = (/obj/machinery/vending/cigarette,/turf/open/floor/wood,/area/crew_quarters/fitness) -"atB" = (/obj/machinery/shower{dir = 4},/obj/item/bikehorn/rubberducky,/obj/structure/sign/poster/official/no_erp{pixel_y = 32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"atC" = (/obj/machinery/holopad,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"atD" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router/service) -"atE" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/router/service) -"atF" = (/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"atG" = (/turf/open/floor/plasteel/dark,/area/router/service) -"atH" = (/obj/structure/tank_dispenser/oxygen,/obj/machinery/power/apc{areastring = "/area/security/processing"; name = "Labor Shuttle Dock APC"; pixel_y = -26},/obj/structure/cable,/turf/open/floor/plasteel/dark,/area/security/processing) -"atI" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/warden) -"atJ" = (/turf/closed/wall/rust,/area/crew_quarters/theatre/clown) -"atK" = (/obj/structure/chair{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/wood,/area/crew_quarters/fitness) -"atL" = (/obj/structure/chair{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/wood,/area/crew_quarters/fitness) -"atM" = (/obj/structure/chair{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness) -"atN" = (/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) -"atO" = (/obj/structure/table,/obj/item/storage/bag/tray,/obj/item/clothing/gloves/color/white,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/item/paper/guides/cogstation/cooks,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"atP" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/reagent_containers/food/drinks/drinkingglass,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"atQ" = (/obj/structure/closet/lasertag/red,/obj/structure/sign/poster/official/space_cops{pixel_x = -32},/turf/open/floor/wood,/area/crew_quarters/fitness) -"atR" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/vending/wardrobe/bar_wardrobe,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) -"atS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Bar Backroom"; req_access_txt = "25"},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) -"atT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) -"atU" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/security/brig) -"atV" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"atW" = (/obj/machinery/disposal/bin{name = "Parolee Exit"},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/brig) -"atX" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/stock_parts/cell/high/plus,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/storage/tools) -"atY" = (/obj/machinery/button/door{id = "Dorm2"; name = "Dormitory Door Lock"; normaldoorcontrol = 1; pixel_x = -7; pixel_y = 24; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/landmark/xeno_spawn,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) -"atZ" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/closed/wall,/area/hallway/secondary/entry) -"aua" = (/obj/structure/chair/wood/normal,/obj/machinery/button/door{id = "Dorm4"; name = "Dormitory Door Lock"; normaldoorcontrol = 1; pixel_x = 7; pixel_y = 24; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) -"aub" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) -"auc" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aud" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) -"aue" = (/obj/structure/closet/crate/hydroponics,/obj/item/seeds/random,/turf/open/floor/plating,/area/router/service) -"auf" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/service) -"aug" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/table/glass,/obj/item/storage/bag/plants,/turf/open/floor/plasteel,/area/hydroponics) -"auh" = (/obj/structure/table/wood,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/storage/box/dice,/obj/item/toy/cards/deck,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aui" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Freezer AC Pump"},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) -"auj" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/router/service) -"auk" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/service) -"aul" = (/obj/structure/cable{icon_state = "4-8"},/mob/living/simple_animal/mouse/brown{name = "Chewy"},/turf/open/floor/plating,/area/hallway/secondary/service) -"aum" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/service) -"aun" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/vending/hydronutrients,/turf/open/floor/plasteel,/area/hydroponics) -"auo" = (/obj/machinery/light{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/table/glass,/obj/machinery/reagentgrinder{pixel_y = 6},/turf/open/floor/plasteel,/area/hydroponics) -"aup" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/structure/table/glass,/obj/item/reagent_containers/glass/bucket{pixel_y = 4},/turf/open/floor/plasteel,/area/hydroponics) -"auq" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/router/service) -"aur" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/router/service) -"aus" = (/turf/open/floor/engine,/area/engine/gravity_generator) -"aut" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"auu" = (/obj/effect/landmark/start/botanist,/turf/open/floor/plasteel/dark,/area/router/service) -"auv" = (/obj/structure/bed,/obj/item/bedsheet/purple,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) -"auw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"aux" = (/obj/machinery/light/small,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) -"auy" = (/turf/open/floor/plasteel,/area/hydroponics) -"auz" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/chem_master,/turf/open/floor/plasteel,/area/hydroponics) -"auA" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/beacon,/turf/open/floor/plasteel,/area/hydroponics) -"auB" = (/obj/structure/dresser,/turf/open/floor/carpet/purple,/area/crew_quarters/dorms/purple) -"auC" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"auD" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"auE" = (/obj/structure/bed,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"auF" = (/obj/structure/table/wood,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) -"auG" = (/obj/machinery/light/small,/obj/effect/landmark/event_spawn,/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) -"auH" = (/obj/structure/girder/displaced,/obj/item/reagent_containers/rag,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/fore) -"auI" = (/obj/structure/closet/secure_closet/brig,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"auJ" = (/obj/structure/bed,/obj/item/bedsheet/blue,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/carpet/blue,/area/crew_quarters/dorms/blue) -"auK" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/security/brig) -"auL" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plating,/area/maintenance/solars/port) -"auM" = (/obj/machinery/door/firedoor,/obj/structure/sign/poster/official/bless_this_spess{pixel_x = -32},/obj/machinery/door/airlock/public/glass,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"auN" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"auO" = (/obj/structure/closet/crate/freezer,/turf/open/floor/plating,/area/router/service) -"auP" = (/obj/structure/chair/sofa/right,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/landmark/start/assistant/override,/turf/open/floor/plasteel,/area/security/main) -"auQ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/public/glass,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"auR" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/power/apc{areastring = "/area/engine/secure_construction"; dir = 1; name = "Engineering Construction Area APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"auS" = (/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) -"auT" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"auU" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/left,/area/router/service) -"auV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"auW" = (/obj/structure/chair/sofa/left,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/sign/poster/official/the_owl{pixel_y = 32},/turf/open/floor/plasteel,/area/security/main) -"auX" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/stairs/right,/area/router/service) -"auY" = (/obj/machinery/firealarm{pixel_y = 26},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"auZ" = (/obj/structure/disposalpipe/junction/flip,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore) -"ava" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/router/service) -"avb" = (/turf/closed/wall,/area/hallway/secondary/civilian) -"avc" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"avd" = (/obj/structure/sign/warning{name = "\improper COLD TEMPERATURES"; pixel_x = 32},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"ave" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) -"avf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Starboard Bow Maintenance"; req_one_access_txt = "12;25;26;28;35;46"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/hallway/secondary/civilian) -"avg" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/turnstile{name = "Genpop Entrance Turnstile"; icon_state = "turnstile_map"; dir = 8; req_access_txt = "69"},/turf/open/floor/plasteel,/area/security/prison) -"avh" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/storage/tools) -"avi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance/abandoned{name = "Port Bow Maintainance"; req_one_access_txt = "13"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/fore) -"avj" = (/obj/machinery/photocopier,/turf/open/floor/carpet/red,/area/security/brig) -"avk" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/plant_analyzer,/obj/structure/table/glass,/obj/machinery/plantgenes{pixel_y = 6},/turf/open/floor/plasteel,/area/hydroponics) -"avl" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"avm" = (/turf/closed/wall/r_wall,/area/hallway/secondary/civilian) -"avn" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/sign/poster/official/spiderlings{pixel_x = 32},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"avo" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"avp" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/glass{name = "East Primary Hallway"; req_one_access_txt = "10;12;25;26;28;35;46"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/service) -"avq" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/glass{name = "East Primary Hallway"; req_one_access_txt = "10;12;25;26;28;35;46"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/router/service) -"avr" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-8"},/turf/open/space/basic,/area/solar/starboard/aft) -"avs" = (/turf/closed/wall,/area/router/service) -"avt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"avu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"avv" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plating,/area/space/nearstation) -"avw" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/structure/sign/poster/official/wtf_is_co2{pixel_x = 32},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) -"avx" = (/obj/structure/table,/obj/item/hand_labeler,/obj/item/crowbar/large,/obj/item/crowbar{pixel_x = -3; pixel_y = 3},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/router/service) -"avy" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plating,/area/space/nearstation) -"avz" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/router/service) -"avA" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"avB" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/router/service) -"avC" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4},/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"avD" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/storage/belt/utility,/obj/item/tank/internals/air,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/router/service) -"avE" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "generator to hot loop"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"avF" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/prison) -"avG" = (/turf/closed/wall,/area/security/prison) -"avH" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,/obj/machinery/meter,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"avI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"avJ" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/security/main) -"avK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"avL" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/security/main) -"avM" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/security/main) -"avN" = (/turf/closed/wall,/area/crew_quarters/barbershop) -"avO" = (/obj/structure/table,/obj/structure/bedsheetbin/color,/obj/item/clothing/gloves/color/white,/obj/machinery/camera{c_tag = "Laundry Room"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) -"avP" = (/obj/structure/reagent_dispensers/keg,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"avQ" = (/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"avR" = (/obj/machinery/washing_machine,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) -"avS" = (/obj/machinery/washing_machine,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) -"avT" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"avU" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 6},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"avV" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"avW" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plating,/area/maintenance/solars/port) -"avX" = (/obj/structure/table,/obj/structure/bedsheetbin,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) -"avY" = (/obj/machinery/newscaster/security_unit{pixel_y = 32},/obj/machinery/turretid{name = "AI Chamber turret control"; pixel_x = 5; pixel_y = -24},/obj/machinery/door/window/westleft{name = "AI Core Access"; req_access_txt = "65"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"avZ" = (/obj/effect/landmark/start/cook,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"awa" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible,/obj/machinery/meter,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"awb" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"awc" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore) -"awd" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port) -"awe" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8},/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"awf" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"awg" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Civilian Wing Hallway - Fore"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"awh" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/sign/poster/official/fruit_bowl{pixel_x = 32},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"awi" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"awj" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"awk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/port) -"awl" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/kirbyplants{icon_state = "applebush"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"awm" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/closed/wall/r_wall,/area/maintenance/solars/port) -"awn" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/machinery/ai_slipper{uses = 10},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"awo" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port) -"awp" = (/turf/closed/wall,/area/hydroponics/lobby) -"awq" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plating,/area/space/nearstation) -"awr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/maintenance/solars/port) -"aws" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/engine/storage{name = "Canister Storage"}) -"awt" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/door/firedoor,/obj/item/folder/red,/obj/machinery/door/window/westleft{name = "Security Checkpoint"; req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/checkpoint) -"awu" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plating,/area/maintenance/solars/port) -"awv" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/atmospherics/pipe/heat_exchanging/junction,/obj/structure/table,/obj/item/clothing/gloves/color/white,/obj/item/reagent_containers/spray/cleaner,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) -"aww" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"awx" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hydroponics/lobby) -"awy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Laundry Room Maintenance"; req_one_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/crew_quarters/barbershop) -"awz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) -"awA" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) -"awB" = (/obj/machinery/microwave,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark/side{dir = 4},/area/crew_quarters/bar) -"awC" = (/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) -"awD" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/storage/tools) -"awE" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/storage/tools) -"awF" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) -"awG" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"awH" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/obj/machinery/turnstile{name = "Genpop Entrance Turnstile"; icon_state = "turnstile_map"; dir = 8; req_access_txt = "69"},/turf/open/floor/plasteel,/area/security/prison) -"awI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"awJ" = (/obj/effect/turf_decal/bot,/obj/machinery/flasher/portable,/turf/open/floor/plasteel,/area/security/brig) -"awK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/port) -"awL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"awM" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/crowbar/large,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port) -"awN" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/fore) -"awO" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/port/central"; dir = 1; name = "Central Port Maintenance APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/port/central) -"awP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) -"awQ" = (/obj/structure/window/plasma/reinforced{dir = 8},/obj/structure/window/reinforced/tinted,/obj/structure/table,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar,/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/turf/open/floor/plasteel,/area/security/main) -"awR" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/disposal/bin,/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"awS" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/security/main) -"awT" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 7},/turf/open/floor/plasteel,/area/security/main) -"awU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"awV" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/vending/assist,/turf/open/floor/plasteel,/area/storage/tools) -"awW" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "cold loop to space"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"awX" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"awY" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/button/door{id = "solitarylock"; name = "Solitary Lockdown"; pixel_x = -24; req_access_txt = "2"},/turf/open/floor/plasteel,/area/security/brig) -"awZ" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"axa" = (/obj/machinery/light_switch{pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"axb" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"axc" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/closed/wall/r_wall,/area/maintenance/solars/port) -"axd" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"axe" = (/obj/structure/closet/crate,/obj/item/storage/belt/utility,/obj/item/clothing/glasses/meson,/turf/open/floor/plating,/area/maintenance/fore) -"axf" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/port) -"axg" = (/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/camera{c_tag = "Arcade"; dir = 4},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"axh" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/structure/sign/poster/contraband/random{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/fore) -"axi" = (/obj/structure/noticeboard{pixel_y = 28},/obj/effect/turf_decal/bot,/obj/structure/closet/secure_closet/genpop,/turf/open/floor/plasteel,/area/security/brig) -"axj" = (/obj/machinery/vr_sleeper{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"axk" = (/obj/item/storage/pill_bottle/penis_enlargement,/turf/open/floor/plasteel/freezer,/area/security/prison) -"axl" = (/obj/machinery/shower{dir = 8; pixel_y = -4},/obj/item/soap/homemade,/turf/open/floor/plasteel/freezer,/area/security/prison) -"axm" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/closed/wall,/area/security/prison) -"axn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"axo" = (/obj/structure/table,/obj/item/tape,/obj/item/wrench,/obj/item/radio/off,/turf/open/floor/plasteel,/area/security/brig) -"axp" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port) -"axq" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"axr" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"axs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"axt" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"axu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/security/brig) -"axv" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/clothing/accessory/armband/deputy,/obj/item/encryptionkey/headset_sec,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/clothing/head/cowboyhat/sec,/turf/open/floor/plasteel,/area/security/brig) -"axw" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/security/main) -"axx" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/camera{c_tag = "Fore Maintenance - Aft"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore) -"axy" = (/obj/structure/chair/stool,/obj/effect/landmark/start/botanist,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"axz" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/reagent_dispensers/peppertank{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig) -"axA" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/item/clothing/accessory/armband/science,/obj/item/encryptionkey/headset_sci,/turf/open/floor/plasteel,/area/security/brig) -"axB" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/item/clothing/accessory/armband/medblue,/obj/item/encryptionkey/headset_med,/turf/open/floor/plasteel,/area/security/brig) -"axC" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"axD" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Hydroponics Storage"; req_access_txt = "35"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"axE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/poster/contraband/kudzu{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"axF" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"axG" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"axH" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"axI" = (/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"axJ" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"axK" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"axL" = (/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_y = 32},/obj/item/assembly/prox_sensor,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"axM" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"axN" = (/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/computer/security{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"axO" = (/obj/structure/weightmachine/stacklifter,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"axP" = (/obj/structure/chair{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"axQ" = (/obj/structure/window/reinforced/spawner/east,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"axR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"axS" = (/obj/structure/closet/crate,/obj/item/storage/box/lights/mixed,/obj/item/clothing/mask/gas,/obj/item/cane,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"axT" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/storage/crayons{pixel_y = 8},/turf/open/floor/plasteel,/area/security/brig) -"axU" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"axV" = (/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) -"axW" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"axX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) -"axY" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"axZ" = (/obj/machinery/requests_console{department = "AI"; departmentType = 5; pixel_y = 28},/obj/machinery/door/window/eastright{name = "AI Core Access"; req_access_txt = "65"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"aya" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating/airless,/area/space/nearstation) -"ayb" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"ayc" = (/obj/structure/kitchenspike,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) -"ayd" = (/turf/closed/wall,/area/hallway/primary/port/fore) -"aye" = (/obj/structure/lattice,/obj/structure/grille,/turf/open/space/basic,/area/space/nearstation) -"ayf" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) -"ayg" = (/obj/machinery/vending/wardrobe/hydro_wardrobe,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"ayh" = (/obj/machinery/door/airlock{name = "Bathroom"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/freezer,/area/security/prison) -"ayi" = (/obj/structure/table,/obj/item/clipboard,/obj/item/paper_bin{pixel_x = 2; pixel_y = 4},/obj/item/pen,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"ayj" = (/obj/structure/grille,/turf/open/floor/plating,/area/security/brig) -"ayk" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry) -"ayl" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aym" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/prison) -"ayn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"ayo" = (/obj/structure/window/reinforced/spawner/west,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"ayp" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) -"ayq" = (/obj/effect/landmark/blobstart,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) -"ayr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) -"ays" = (/obj/structure/table,/obj/item/reagent_containers/food/drinks/soda_cans/space_up,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"ayt" = (/obj/structure/closet/crate,/obj/item/reagent_containers/glass/beaker/waterbottle/large/empty,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) -"ayu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/fore) -"ayv" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"ayw" = (/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Service Hallway - Fore"; dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"ayx" = (/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"ayy" = (/turf/open/floor/carpet,/area/chapel/main) -"ayz" = (/obj/structure/chair/pew/right{dir = 4},/turf/open/floor/carpet,/area/chapel/main) -"ayA" = (/obj/structure/window/reinforced,/obj/structure/destructible/cult/tome,/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) -"ayB" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"ayC" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) -"ayD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"ayE" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/hydroponics/lobby) -"ayF" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) -"ayG" = (/obj/structure/chair/comfy/brown{dir = 1},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"ayH" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/mob/living/simple_animal/cockroach,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"ayI" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"ayJ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/closed/wall/r_wall,/area/maintenance/solars/port) -"ayK" = (/obj/structure/flora/tree/jungle/small,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) -"ayL" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"ayM" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) -"ayN" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/fore) -"ayO" = (/obj/structure/window/plasma/reinforced{dir = 8},/obj/structure/window/reinforced/tinted,/obj/structure/table,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/turf/open/floor/plasteel,/area/security/main) -"ayP" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"ayQ" = (/obj/machinery/vr_sleeper{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"ayR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Prison Wing"; req_access_txt = "2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/security/brig) -"ayS" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/brig) -"ayT" = (/obj/machinery/vending/security,/obj/structure/noticeboard{pixel_y = 28},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"ayU" = (/obj/vehicle/ridden/secway,/obj/effect/turf_decal/bot,/obj/item/key/security,/turf/open/floor/plasteel,/area/security/brig) -"ayV" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/storage/tools) -"ayW" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"ayX" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"ayY" = (/obj/machinery/vending/medical,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"ayZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aza" = (/obj/machinery/light/small{dir = 4},/obj/structure/table,/obj/item/clothing/gloves/botanic_leather,/obj/item/hand_labeler,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"azb" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) -"azc" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"azd" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/item/clothing/mask/gas,/obj/machinery/camera{c_tag = "Central Port Maintenace - Port"},/turf/open/floor/plating,/area/maintenance/port/central) -"aze" = (/obj/machinery/power/apc{dir = 1; name = "AI Chamber APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"azf" = (/obj/machinery/newscaster/security_unit{pixel_y = 32},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"azg" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) -"azh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"azi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation Maintenance"; req_access_txt = "63;12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/security/brig) -"azj" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/security/brig) -"azk" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig) -"azl" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/camera{c_tag = "Security - Brig Aft"; dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/security/brig) -"azm" = (/obj/structure/chair/stool/bar,/turf/open/floor/carpet,/area/crew_quarters/bar) -"azn" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/security/brig) -"azo" = (/obj/structure/chair/office/light{dir = 1; pixel_y = 3},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"azp" = (/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) -"azq" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plating,/area/space/nearstation) -"azr" = (/obj/machinery/disposal/bin,/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/turf/open/floor/plasteel,/area/security/checkpoint) -"azs" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"azt" = (/obj/structure/chair/pew/right{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"azu" = (/obj/structure/chair/pew{dir = 4},/turf/open/floor/carpet,/area/chapel/main) -"azv" = (/obj/machinery/door/window/westleft{name = "Holy Driver"; req_one_access_txt = "22"},/obj/machinery/conveyor{dir = 4; id = "Holydriver"},/turf/open/floor/plating,/area/chapel/main) -"azw" = (/obj/machinery/conveyor{dir = 4; id = "Holydriver"},/turf/open/floor/plating,/area/chapel/main) -"azx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"azy" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port) -"azz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"azA" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) -"azB" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"azC" = (/obj/machinery/disposal/bin,/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/barbershop) -"azD" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"azE" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"azF" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/storage/tools) -"azG" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry) -"azH" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/sign/departments/botany{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"azI" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"azJ" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"azK" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/machinery/door/window/westleft{name = "Boxing Ring"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"azL" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"azM" = (/obj/structure/table,/obj/machinery/recharger{pixel_y = 2},/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"azN" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/prison) -"azO" = (/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/blobstart,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"azP" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"azQ" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"azR" = (/obj/structure/closet/secure_closet/bar,/obj/structure/disposalpipe/segment,/obj/item/clothing/under/costume/maid,/obj/item/stack/spacecash/c10,/obj/item/clothing/under/suit/waiter,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) -"azS" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/closet,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/cable_coil/red{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil/red,/obj/item/wrench,/obj/item/screwdriver{pixel_y = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) -"azT" = (/obj/machinery/light,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/storage/tools) -"azU" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"azV" = (/obj/structure/kitchenspike,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) -"azW" = (/obj/effect/landmark/start/botanist,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"azX" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/tools) -"azY" = (/obj/structure/closet/secure_closet/hydroponics,/obj/structure/cable{icon_state = "0-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/power/apc{areastring = "/area/hydroponics/lobby"; dir = 4; name = "Hydroponics Lobby APC"; pixel_x = 24},/obj/item/clothing/suit/beekeeper_suit,/obj/item/melee/flyswatter,/obj/item/clothing/head/beekeeper_head,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"azZ" = (/obj/machinery/mass_driver{dir = 4; id = "chapelgun"; name = "Holy Driver"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating,/area/chapel/main) -"aAa" = (/turf/closed/wall/r_wall,/area/crew_quarters/kitchen) -"aAb" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aAc" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plating,/area/maintenance/solars/port) -"aAd" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/processing) -"aAe" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aAf" = (/obj/structure/disposalpipe/segment,/obj/structure/mineral_door/wood,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop) -"aAg" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction,/obj/machinery/gibber,/obj/machinery/camera{c_tag = "Kitchen Coldroom"; dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) -"aAh" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/easel,/obj/item/canvas/nineteenXnineteen,/obj/item/storage/crayons,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"aAi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/port) -"aAj" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aAk" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/security/main) -"aAl" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"aAm" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/machinery/door/airlock/freezer{name = "Kitchen Coldroom"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) -"aAn" = (/obj/machinery/vending/wardrobe/sec_wardrobe,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/brig) -"aAo" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/sign/poster/official/twelve_gauge{pixel_x = -32},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"aAp" = (/obj/machinery/computer/security/telescreen/entertainment,/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/bar) -"aAq" = (/obj/structure/sink{dir = 8; pixel_x = -12},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aAr" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aAs" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aAt" = (/obj/structure/rack,/obj/item/storage/toolbox/emergency,/obj/machinery/camera{c_tag = "Hydroponics Storage"; dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aAu" = (/obj/structure/closet/crate/hydroponics,/obj/effect/decal/cleanable/dirt,/obj/item/circuitboard/machine/hydroponics,/obj/item/circuitboard/machine/hydroponics,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aAv" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/vending/security,/turf/open/floor/plasteel,/area/security/brig) -"aAw" = (/obj/machinery/door/poddoor{id = "chapelgun"; name = "Chapel Launcher Door"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/chapel/main) -"aAx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore) -"aAy" = (/obj/machinery/atmospherics/components/binary/circulator{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aAz" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"aAA" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/fore) -"aAB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aAC" = (/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"aAD" = (/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) -"aAE" = (/obj/machinery/light_switch{pixel_y = -24},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aAF" = (/obj/structure/noticeboard{pixel_y = 28},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) -"aAG" = (/obj/machinery/light{dir = 1},/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) -"aAH" = (/obj/structure/chair/pew{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/chapel/main) -"aAI" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"aAJ" = (/obj/structure/transit_tube/station/reverse/flipped{dir = 1},/obj/effect/turf_decal/stripes/end{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"aAK" = (/obj/structure/transit_tube/horizontal,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"aAL" = (/obj/machinery/shower{dir = 8},/obj/structure/sign/poster/official/cleanliness{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aAM" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/public/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aAN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aAO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/crew_quarters/toilet) -"aAP" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/brig) -"aAQ" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/checkpoint) -"aAR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Telecomms Access Maintenance"; dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port) -"aAS" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/item/clothing/accessory/armband/engine,/obj/item/encryptionkey/headset_eng,/turf/open/floor/plasteel,/area/security/brig) -"aAT" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aAU" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aAV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"aAW" = (/obj/machinery/chem_master/condimaster{name = "BrewMaster 3000"},/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aAX" = (/turf/open/floor/carpet/red,/area/security/brig) -"aAY" = (/obj/structure/chair,/turf/open/floor/carpet/red,/area/security/brig) -"aAZ" = (/obj/structure/chair,/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/carpet/red,/area/security/brig) -"aBa" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aBb" = (/obj/machinery/light,/turf/open/floor/plasteel/dark,/area/security/brig) -"aBc" = (/obj/structure/closet/secure_closet/hydroponics,/obj/effect/decal/cleanable/dirt,/obj/item/clothing/suit/beekeeper_suit,/obj/item/melee/flyswatter,/obj/item/clothing/head/beekeeper_head,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aBd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aBe" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/brig) -"aBf" = (/obj/structure/closet{name = "Evidence Closet"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/brig) -"aBg" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/junction,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aBh" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aBi" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aBj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/security/brig) -"aBk" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/crew_quarters/barbershop) -"aBl" = (/obj/structure/chair/comfy/brown,/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop) -"aBm" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Dormitories"},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"aBn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aBo" = (/obj/structure/table,/obj/item/storage/pill_bottle/epinephrine,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop) -"aBp" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/computer/pod/old{density = 0; icon = 'icons/obj/airlock_machines.dmi'; icon_state = "airlock_control_standby"; id = "chapelgun"; name = "Mass Driver Controller"; pixel_x = 24},/obj/machinery/conveyor_switch/oneway{id = "Holydriver"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"aBq" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) -"aBr" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop) -"aBs" = (/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"aBt" = (/obj/structure/chair/comfy/brown,/obj/machinery/newscaster{pixel_y = 32},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop) -"aBu" = (/obj/item/flashlight/lantern,/turf/open/floor/carpet,/area/chapel/main) -"aBv" = (/obj/structure/chair/pew/left{dir = 4},/turf/open/floor/carpet,/area/chapel/main) -"aBw" = (/obj/structure/chair/comfy/brown,/obj/machinery/light{dir = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/barbershop) -"aBx" = (/obj/structure/window/plasma/reinforced{dir = 8},/obj/structure/table,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/effect/turf_decal/tile/bar,/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/turf/open/floor/plasteel,/area/security/main) -"aBy" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/kirbyplants{icon_state = "plant-16"},/obj/machinery/camera{c_tag = "Port Bow Hall - Central"; dir = 4; network = list("ss13","medbay")},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aBz" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/fore) -"aBA" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/table,/obj/item/healthanalyzer,/obj/item/storage/hypospraykit/fire{pixel_x = -4},/obj/item/storage/hypospraykit/brute{pixel_x = 4},/obj/structure/sign/poster/official/nt_storm{pixel_x = -32},/turf/open/floor/plasteel,/area/security/brig) -"aBB" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aBC" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light,/turf/open/floor/plasteel,/area/security/main) -"aBD" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aBE" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics) -"aBF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet/red,/area/security/brig) -"aBG" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/crew_quarters/bar) -"aBH" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/fore) -"aBI" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aBJ" = (/obj/effect/turf_decal/delivery,/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aBK" = (/obj/structure/table,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/security/main) -"aBL" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore) -"aBM" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/abandoned_gambling_den"; name = "Arcade APC"; pixel_y = -26},/obj/structure/cable,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) -"aBN" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/fore) -"aBO" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock{name = "Hydroponics Storage"; req_access_txt = "35"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aBP" = (/obj/machinery/light_switch{pixel_x = -24},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/wood,/area/crew_quarters/barbershop) -"aBQ" = (/turf/open/floor/wood,/area/crew_quarters/barbershop) -"aBR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/wood,/area/crew_quarters/barbershop) -"aBS" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"aBT" = (/obj/item/razor,/obj/item/toy/figure/chef{pixel_x = -6},/obj/item/toy/figure/bartender{pixel_x = 4},/obj/structure/table/wood/fancy,/turf/open/floor/carpet,/area/crew_quarters/bar) -"aBU" = (/obj/structure/window/reinforced/tinted,/obj/structure/rack,/obj/item/soap/nanotrasen,/obj/item/reagent_containers/food/drinks/bottle/vodka,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aBV" = (/obj/item/flashlight/lantern,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"aBW" = (/obj/structure/window/reinforced,/obj/item/clothing/head/hardhat/cakehat,/obj/structure/table/wood/fancy,/turf/open/floor/carpet,/area/crew_quarters/bar) -"aBX" = (/obj/structure/table,/obj/machinery/chem_dispenser/drinks,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aBY" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Security Maintenance"; dir = 1; network = list("ss13","medbay")},/turf/open/floor/plating,/area/maintenance/department/security) -"aBZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop) -"aCa" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/main) -"aCb" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/brig) -"aCc" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/clothing/accessory/armband/cargo,/obj/item/encryptionkey/headset_cargo,/turf/open/floor/plasteel,/area/security/brig) -"aCd" = (/obj/machinery/portable_atmospherics/scrubber,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/fifteen_k{areastring = /area/maintenance/solars/port; dir = 1; name = "Port Solars APC"; pixel_y = 26},/turf/open/floor/plating,/area/maintenance/solars/port) -"aCe" = (/obj/effect/spawner/structure/window,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/crew_quarters/bar) -"aCf" = (/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/tcommsat/computer) -"aCg" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/landmark/start/depsec/supply,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aCh" = (/obj/structure/mineral_door/wood{name = "Barbershop"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop) -"aCi" = (/obj/structure/closet/l3closet/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/brig) -"aCj" = (/obj/machinery/door/window/southleft{name = "Showers"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aCk" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/crew_quarters/toilet/fitness) -"aCl" = (/obj/structure/closet/bombcloset/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/security/brig) -"aCm" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aCn" = (/obj/machinery/vending/boozeomat,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aCo" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) -"aCp" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/fitness) -"aCq" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/closed/wall,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"aCr" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/security/brig) -"aCs" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"aCt" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig) -"aCu" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/freezer,/area/security/prison) -"aCv" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) -"aCw" = (/obj/structure/window/reinforced/tinted,/obj/machinery/shower{dir = 8},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aCx" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aCy" = (/obj/structure/table/wood,/obj/item/storage/book/bible,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"aCz" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aCA" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aCB" = (/obj/structure/chair/stool/bar,/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/bar) -"aCC" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/security/prison) -"aCD" = (/obj/item/trash/plate,/obj/item/kitchen/fork,/obj/structure/table/wood/fancy,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aCE" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/button/door{id = "briglockdown"; name = "Brig Lockdown"; pixel_x = 24; req_access_txt = "2"},/obj/effect/turf_decal/arrows/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"aCF" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aCG" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"aCH" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/arrows/red{dir = 8},/obj/effect/turf_decal/arrows/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig) -"aCI" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/door/firedoor,/obj/structure/sign/departments/botany{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aCJ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/chapel/main) -"aCK" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/security/prison) -"aCL" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/book/manual/wiki/security_space_law,/obj/item/paper/guides/cogstation/letter_sec,/turf/open/floor/carpet/red,/area/security/brig) -"aCM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster/contraband/fun_police{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/port/fore) -"aCN" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aCO" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"aCP" = (/obj/structure/chair/sofa/left,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/landmark/start/botanist,/obj/machinery/camera{c_tag = "Hydroponics Lobby"},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aCQ" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/harebell,/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) -"aCR" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/table/glass,/obj/item/modular_computer/laptop/preset/civilian{pixel_x = 1; pixel_y = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aCS" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aCT" = (/obj/machinery/disposal/bin{name = "Hydroponics Mailbox"},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/delivery/white,/obj/machinery/requests_console{department = "Hydroponics"; name = "Hydroponics RC"; pixel_y = 28},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aCU" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plating,/area/space/nearstation) -"aCV" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/tools) -"aCW" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aCX" = (/obj/effect/turf_decal/bot,/obj/effect/decal/cleanable/dirt,/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison) -"aCY" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/biogenerator,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aCZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/electricshock,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aDa" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/crew_quarters/barbershop) -"aDb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/checkpoint) -"aDc" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Barbershop"; dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop) -"aDd" = (/obj/structure/chair/office/dark,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop) -"aDe" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/prison) -"aDf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/wood,/area/crew_quarters/barbershop) -"aDg" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Central Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/central) -"aDh" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/public/glass{name = "Port Bow Primary Hallway"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aDi" = (/obj/structure/closet/secure_closet/evidence,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/main) -"aDj" = (/obj/structure/closet/wardrobe/green,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aDk" = (/obj/structure/toilet{dir = 4},/obj/machinery/door/window/eastright{name = "Bathroom Stall"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aDl" = (/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aDm" = (/obj/machinery/computer/security{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/checkpoint) -"aDn" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/bridge) -"aDo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop) -"aDp" = (/obj/effect/spawner/structure/window,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/crew_quarters/barbershop) -"aDq" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aDr" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Civilian Wing Hallway"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aDs" = (/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/brig) -"aDt" = (/obj/structure/closet{name = "Evidence Closet 1"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"aDu" = (/obj/structure/closet{name = "Evidence Closet 2"},/obj/machinery/light,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"aDv" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aDw" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aDx" = (/obj/structure/closet/crate,/obj/item/gun/ballistic/shotgun/toy/unrestricted,/obj/item/gun/ballistic/shotgun/toy/unrestricted,/obj/item/toy/gun,/obj/item/toy/sword,/obj/item/toy/sword,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"aDy" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aDz" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/sign/departments/restroom{pixel_y = 32},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aDA" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aDB" = (/obj/structure/closet{name = "Evidence Closet 3"},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"aDC" = (/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aDD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"aDE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/port/fore) -"aDF" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/checkpoint) -"aDG" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aDH" = (/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aDI" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) -"aDJ" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aDK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aDL" = (/obj/structure/closet{name = "Evidence Closet 4"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"aDM" = (/turf/closed/wall,/area/maintenance/central) -"aDN" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/central) -"aDO" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/solars/port) -"aDP" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/security/main) -"aDQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aDR" = (/turf/open/floor/plating,/area/maintenance/central) -"aDS" = (/turf/closed/wall/r_wall,/area/crew_quarters/barbershop) -"aDT" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port) -"aDU" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/port/fore) -"aDV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/solars/port) -"aDW" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/obj/machinery/turnstile{dir = 4; name = "Genpop Exit Turnstile"; req_access_txt = "70"},/turf/open/floor/plasteel,/area/security/prison) -"aDX" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"aDY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/turf/open/floor/plasteel,/area/security/prison) -"aDZ" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/wood,/area/crew_quarters/barbershop) -"aEa" = (/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation) -"aEb" = (/obj/structure/transit_tube/crossing/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation) -"aEc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Security Office"; req_access_txt = "63"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/brig) -"aEd" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/crew_quarters/barbershop) -"aEe" = (/obj/structure/transit_tube/horizontal,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge) -"aEf" = (/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior - Port Bow"; dir = 1; network = list("tcomms")},/turf/open/space/basic,/area/space) -"aEg" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/hallway/secondary/service) -"aEh" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/maintenance{name = "Fore Maintenance"; req_one_access_txt = "12;46"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/hallway/primary/port/fore) -"aEi" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"aEj" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet,/area/chapel/main) -"aEk" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"aEl" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aEm" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/solars/port) -"aEn" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aEo" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/sign/poster/official/fashion{pixel_x = -32},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aEp" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/solars/port) -"aEq" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aEr" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/lighter,/obj/item/clothing/glasses/sunglasses{pixel_y = 4},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aEs" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port) -"aEt" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/junction{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aEu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aEv" = (/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aEw" = (/obj/structure/chair,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) -"aEx" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aEy" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/brig) -"aEz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aEA" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/computer/security/telescreen/entertainment{pixel_x = -32},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aEB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aEC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aED" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/security_officer,/turf/open/floor/carpet/red,/area/security/brig) -"aEE" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison) -"aEF" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/science/circuit) -"aEG" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aEH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aEI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet,/area/chapel/main) -"aEJ" = (/obj/item/kirbyplants{icon_state = "plant-08"},/turf/open/floor/wood,/area/crew_quarters/barbershop) -"aEK" = (/obj/structure/table,/obj/item/razor,/turf/open/floor/wood,/area/crew_quarters/barbershop) -"aEL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aEM" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/grown/poppy,/turf/open/floor/carpet,/area/chapel/main) -"aEN" = (/obj/structure/table,/obj/machinery/light,/obj/item/razor,/turf/open/floor/wood,/area/crew_quarters/barbershop) -"aEO" = (/obj/structure/table,/obj/item/clothing/accessory/pocketprotector/cosmetology,/turf/open/floor/wood,/area/crew_quarters/barbershop) -"aEP" = (/obj/item/kirbyplants,/turf/open/floor/wood,/area/crew_quarters/barbershop) -"aEQ" = (/turf/closed/wall/r_wall,/area/maintenance/central) -"aER" = (/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/bot,/obj/structure/sign/warning/nosmoking{pixel_x = -32},/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aES" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison) -"aET" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/poddoor/preopen{id = "briglockdown"; name = "Brig Lockdown"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/prison) -"aEU" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore) -"aEV" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/central) -"aEW" = (/obj/structure/table,/obj/machinery/computer/libraryconsole/bookmanagement,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"aEX" = (/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 1},/obj/structure/sign/poster/official/safety_internals{pixel_y = 32},/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aEY" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/bot,/obj/machinery/firealarm{pixel_y = 26},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aEZ" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Emergency Storage APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aFa" = (/obj/structure/rack,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 10},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aFb" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aFc" = (/obj/structure/table,/obj/item/clothing/suit/toggle/owlwings,/obj/item/clothing/under/costume/owl,/obj/item/clothing/mask/gas/owl_mask,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) -"aFd" = (/obj/machinery/space_heater,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aFe" = (/obj/machinery/photocopier,/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) -"aFf" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=serv"; location = "sec1"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aFg" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aFh" = (/obj/structure/chair/pew/right{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/chapel/main) -"aFi" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=market"; location = "sec2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aFj" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hos) -"aFk" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable,/turf/open/floor/plating,/area/security/checkpoint) -"aFl" = (/obj/structure/chair/sofa/right,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/light{dir = 1},/obj/item/reagent_containers/glass/bottle/diethylamine,/obj/structure/sign/poster/official/hydro_ad{pixel_x = -32},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aFm" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/heads/hos) -"aFn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"aFo" = (/obj/machinery/door/window/southleft{name = "Weightroom"},/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"aFp" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Bar"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aFq" = (/obj/structure/table/wood,/obj/item/candle{pixel_x = 4},/obj/item/candle{pixel_y = 8},/turf/open/floor/carpet,/area/chapel/main) -"aFr" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aFs" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aFt" = (/obj/structure/table/glass,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aFu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/fore) -"aFv" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/hallway/secondary/entry) -"aFw" = (/obj/structure/table,/obj/item/multitool,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/camera{c_tag = "Central Maintenance - Power Monitoring"; network = list("ss13","rd")},/turf/open/floor/plating,/area/maintenance/central) -"aFx" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/folder/blue,/obj/machinery/door/window/westleft{name = "Hydroponics Desk"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aFy" = (/obj/machinery/computer/monitor,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/maintenance/central) -"aFz" = (/obj/structure/table,/obj/item/multitool{pixel_x = 8; pixel_y = 2},/obj/item/stack/cable_coil/random,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/central) -"aFA" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/landmark/start/botanist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aFB" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aFC" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aFD" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=AftH"; location = "Hydroponics"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aFE" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/techstorage/tcomms,/turf/open/floor/circuit,/area/bridge) -"aFF" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aFG" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/security/prison) -"aFH" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aFI" = (/obj/effect/turf_decal/bot,/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "Primary Tool Storage"},/turf/open/floor/plasteel,/area/storage/tools) -"aFJ" = (/obj/structure/closet/crate/hydroponics,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/watertank,/obj/item/grenade/chem_grenade/antiweed,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aFK" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/storage/box/beakers{pixel_y = 4},/obj/item/reagent_containers/dropper,/obj/structure/disposalpipe/segment{dir = 9},/obj/item/pen/blue{pixel_x = -4; pixel_y = -2},/obj/item/pen/red{pixel_x = 4; pixel_y = 4},/obj/structure/table/glass,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aFL" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/chem_master,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aFM" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/barbershop) -"aFN" = (/obj/structure/flora/junglebush/b,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) -"aFO" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aFP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Security Office"; req_access_txt = "63"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/main) -"aFQ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aFR" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aFS" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aFT" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) -"aFU" = (/obj/machinery/atmospherics/components/binary/circulator/cold{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aFV" = (/obj/structure/window/reinforced,/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/table/wood/fancy,/turf/open/floor/carpet,/area/crew_quarters/bar) -"aFW" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aFX" = (/obj/machinery/computer/security/hos{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) -"aFY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet,/area/chapel/main) -"aFZ" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/closed/wall/r_wall,/area/security/prison) -"aGa" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/tcommsat/computer) -"aGb" = (/obj/machinery/suit_storage_unit/hos,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) -"aGc" = (/obj/item/coin/iron,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/maintenance/port/fore) -"aGd" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/central) -"aGe" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/central) -"aGf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aGg" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aGh" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/landmark/start/security_officer,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"aGi" = (/obj/machinery/porta_turret/ai{dir = 1; req_access = list(16)},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"aGj" = (/obj/structure/rack,/obj/effect/turf_decal/bot,/obj/item/storage/toolbox/emergency{pixel_y = 4},/obj/item/analyzer{pixel_y = -4},/obj/item/flashlight{pixel_y = 4},/obj/item/flashlight{pixel_y = 4},/obj/item/extinguisher,/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aGk" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aGl" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/structure/window/reinforced,/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/clipboard,/obj/item/pen,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aGm" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/machinery/door/window/southright{name = "Hydroponics Desk"; req_access_txt = "35"},/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aGn" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/bridge) -"aGo" = (/obj/structure/rack,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/screwdriver,/obj/item/wrench,/obj/item/clothing/gloves/color/fyellow,/obj/item/multitool,/obj/item/multitool,/obj/item/wrench,/turf/open/floor/plasteel,/area/security/brig) -"aGp" = (/mob/living/simple_animal/mouse/brown,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) -"aGq" = (/turf/closed/wall/r_wall,/area/bridge) -"aGr" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aGs" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/bridge) -"aGt" = (/obj/machinery/computer/card/minor/hos{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) -"aGu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) -"aGv" = (/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) -"aGw" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock{name = "Hydroponics Lobby"; req_access_txt = "35"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"aGx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aGy" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/solars/port) -"aGz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/cable,/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/bridge"; name = "Bridge APC"; pixel_y = -24},/turf/open/floor/plating,/area/maintenance/solars/port) -"aGA" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) -"aGB" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) -"aGC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aGD" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/crew_quarters/toilet"; dir = 8; name = "Dormitory Toilets APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore) -"aGE" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/central) -"aGF" = (/obj/structure/table,/obj/effect/turf_decal/bot,/obj/item/clothing/glasses/meson,/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aGG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aGH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medical Booth"; req_access_txt = "5"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/medical{name = "Medical Booth"}) -"aGI" = (/obj/structure/table,/obj/effect/turf_decal/bot,/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 6},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 5},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 4},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 3},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 2},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = 1},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4},/obj/item/reagent_containers/pill/patch/silver_sulf{pixel_x = -4; pixel_y = -1},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 6},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 5},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 4},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 3},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 2},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = 1},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4},/obj/item/reagent_containers/pill/patch/styptic{pixel_x = 4; pixel_y = -1},/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aGJ" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aGK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Head of Security's APC"; pixel_y = 24},/obj/machinery/camera{c_tag = "Security - Head of Security's Office"; pixel_x = 22},/obj/structure/chair/comfy/brown{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) -"aGL" = (/obj/structure/table/wood,/obj/item/storage/firstaid/regular,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"aGM" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/structure/sign/warning/securearea{pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"aGN" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"aGO" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/turf/open/floor/plasteel,/area/hydroponics) -"aGP" = (/obj/machinery/light_switch{pixel_x = -24},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aGQ" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aGR" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/food/snacks/store/cake/chocolate,/obj/machinery/door/poddoor/preopen{id = "kitchenlock"; name = "Kitchen Lockup"},/turf/open/floor/plasteel/dark,/area/crew_quarters/kitchen) -"aGS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aGT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison) -"aGU" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aGV" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/table,/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"aGW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/closed/wall/r_wall,/area/bridge) -"aGX" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = 6; pixel_y = 3},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -6; pixel_y = 2},/obj/item/reagent_containers/food/drinks/bottle/vodka,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge) -"aGY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -30},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"aGZ" = (/turf/open/floor/plasteel/stairs/medium,/area/hallway/secondary/entry) -"aHa" = (/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/crew_quarters/locker"; dir = 8; name = "Locker Room APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore) -"aHb" = (/obj/structure/chair,/obj/machinery/firealarm{pixel_y = 26},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) -"aHc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_y = -32},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"aHd" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aHe" = (/obj/structure/sign/poster/official/bless_this_spess{pixel_y = -32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) -"aHf" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"aHg" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/prison) -"aHh" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aHi" = (/obj/structure/chair/stool,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) -"aHj" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/tcommsat/computer) -"aHk" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aHl" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aHm" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aHn" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/maintenance/central) -"aHo" = (/obj/structure/rack,/obj/item/circuitboard/machine/telecomms/relay,/obj/item/circuitboard/machine/telecomms/server,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 5},/turf/open/floor/plasteel,/area/tcommsat/computer) -"aHp" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore) -"aHq" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/machinery/porta_turret/ai{dir = 1; req_access = list(16)},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"aHr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/sign/poster/contraband/clown{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/fore) -"aHs" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/port/fore) -"aHt" = (/turf/closed/wall/r_wall,/area/hallway/primary/port/fore) -"aHu" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aHv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aHw" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aHx" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/closed/wall,/area/security/detectives_office) -"aHy" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/closed/wall/r_wall,/area/security/detectives_office) -"aHz" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/security/detectives_office) -"aHA" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/detectives_office) -"aHB" = (/obj/structure/rack,/obj/effect/turf_decal/bot,/obj/item/storage/toolbox/emergency{pixel_y = 4},/obj/item/wrench,/obj/item/wrench{pixel_x = 2; pixel_y = 2},/obj/item/light/tube,/obj/item/light/tube{pixel_x = -2; pixel_y = 2},/obj/item/extinguisher,/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aHC" = (/obj/machinery/vending/cola/random,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aHD" = (/obj/machinery/modular_computer/console/preset/engineering,/turf/open/floor/plasteel/dark,/area/bridge) -"aHE" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plating,/area/tcommsat/computer) -"aHF" = (/turf/open/floor/plasteel/dark,/area/bridge) -"aHG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/central) -"aHH" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aHI" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/bridge) -"aHJ" = (/obj/machinery/light,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"aHK" = (/obj/structure/musician/piano,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"aHL" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/stack/medical/gauze,/obj/item/reagent_containers/blood,/obj/item/stack/medical/suture,/obj/item/stack/medical/mesh,/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"aHM" = (/turf/open/floor/plasteel,/area/bridge) -"aHN" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Security - Interrogation Room"; pixel_x = 22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) -"aHO" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aHP" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/crew_quarters/heads/hos) -"aHQ" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aHR" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/trunk,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Security Office APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/security/main) -"aHS" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"aHT" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison) -"aHU" = (/obj/effect/turf_decal/delivery,/obj/structure/mineral_door/woodrustic{name = "Nature Preserve"},/turf/open/floor/plasteel,/area/hydroponics/garden{name = "Nature Preserve"}) -"aHV" = (/obj/structure/flora/junglebush/large,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) -"aHW" = (/obj/structure/chair/comfy/brown,/obj/effect/landmark/start/head_of_security,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) -"aHX" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aHY" = (/turf/closed/wall/r_wall,/area/crew_quarters/cryopod) -"aHZ" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/door/window/eastleft{name = "Security Office Desk"; req_one_access_txt = "63"},/obj/item/folder/red,/obj/item/stamp/denied{pixel_x = 4; pixel_y = 4},/obj/item/stamp,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"aIa" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/central) -"aIb" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/junction/flip,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aIc" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/central) -"aId" = (/obj/structure/disposaloutlet{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aIe" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aIf" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"aIg" = (/obj/structure/chair/office/dark{dir = 1},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"aIh" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aIi" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aIj" = (/obj/structure/table/glass,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aIk" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aIl" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) -"aIm" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/machinery/requests_console{department = "Kitchen"; departmentType = 2; name = "Kitchen RC"; pixel_x = 30},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"aIn" = (/obj/structure/grille,/turf/open/floor/plating,/area/security/prison) -"aIo" = (/obj/effect/decal/cleanable/oil,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/solars/port) -"aIp" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aIq" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"aIr" = (/obj/structure/table/reinforced,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/item/folder/red,/obj/item/stamp/hos,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) -"aIs" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aIt" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aIu" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aIv" = (/obj/machinery/cryopod{dir = 8},/turf/open/floor/circuit/green,/area/crew_quarters/cryopod) -"aIw" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aIx" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aIy" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aIz" = (/obj/machinery/cryopod{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"aIA" = (/obj/machinery/computer/med_data{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"aIB" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aIC" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/main) -"aID" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/main) -"aIE" = (/turf/open/floor/carpet/royalblue,/area/bridge) -"aIF" = (/obj/structure/table,/obj/machinery/light{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/recharger,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/main) -"aIG" = (/obj/structure/table,/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/paper_bin,/obj/item/pen,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/main) -"aIH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/carpet/royalblue,/area/bridge) -"aII" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet/royalblue,/area/bridge) -"aIJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Fore Maintenance"; req_one_access_txt = "12;46"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/hallway/primary/port/fore) -"aIK" = (/obj/structure/table/wood,/obj/item/camera,/obj/item/folder,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aIL" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/bridge) -"aIM" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"aIN" = (/obj/structure/bed/roller,/obj/machinery/iv_drip,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"aIO" = (/obj/structure/sign/directions/medical{dir = 8; pixel_y = -24},/obj/structure/sign/directions/evac{dir = 1; pixel_y = -32},/obj/structure/sign/directions/supply{dir = 8; pixel_y = -40},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aIP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"aIQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/bridge) -"aIR" = (/obj/structure/chair/stool,/obj/effect/landmark/start/botanist,/turf/open/floor/plasteel,/area/hydroponics) -"aIS" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/ai,/obj/item/radio/intercom{freerange = 1; frequency = 1447; name = "Private Channel"; pixel_x = 27; pixel_y = -7},/obj/item/radio/intercom{freerange = 1; name = "Common Channel"; pixel_x = 27; pixel_y = 5},/obj/machinery/button/door{id = "AIShutter"; layer = 3.6; name = "AI Core Shutter Control"; pixel_x = 24; pixel_y = -24},/obj/item/radio/intercom{freerange = 1; listening = 0; name = "Custom Channel"; pixel_x = -24; pixel_y = -8},/obj/machinery/button/door{id = "AIChamberShutter"; layer = 3.6; name = "AI Chamber Shutter Control"; pixel_x = -24; pixel_y = -24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"aIT" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/bridge) -"aIU" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aIV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation Monitoring"; req_access_txt = "63"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) -"aIW" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aIX" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"aIY" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aIZ" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aJa" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aJb" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aJc" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aJd" = (/turf/closed/wall,/area/chapel/office) -"aJe" = (/obj/machinery/computer/crew{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"aJf" = (/obj/machinery/camera{c_tag = "Chapel - Aft"; dir = 1},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"aJg" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) -"aJh" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"aJi" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/dark,/area/chapel/office) -"aJj" = (/obj/structure/chair{dir = 4},/obj/structure/cable,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/aft"; dir = 8; name = "Chapel APC"; pixel_x = -26},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"aJk" = (/obj/structure/table/wood,/obj/item/candle,/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"aJl" = (/obj/structure/bodycontainer/crematorium{id = "foo"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/office) -"aJm" = (/obj/machinery/light,/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) -"aJn" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"aJo" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"aJp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera/motion{c_tag = "AI"; network = list("minisat")},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"aJq" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/table/glass,/obj/item/storage/box/beakers{pixel_y = 4},/obj/item/clothing/glasses/science,/turf/open/floor/plasteel,/area/hydroponics) -"aJr" = (/obj/structure/sign/directions/command{dir = 8; pixel_y = -32},/obj/structure/sign/directions/security{dir = 8; pixel_y = -24},/obj/structure/sign/directions/science{dir = 8; pixel_y = -40},/obj/machinery/light,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aJs" = (/obj/structure/noticeboard{name = "Hydroponics Requests Board"; pixel_y = 28},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aJt" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/toy/figure/syndie,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/prison) -"aJu" = (/obj/structure/chair/comfy/brown,/turf/open/floor/carpet/royalblue,/area/bridge) -"aJv" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/main) -"aJw" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/brig) -"aJx" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aJy" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/right,/area/security/brig) -"aJz" = (/obj/structure/chair/comfy/brown,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge) -"aJA" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Port Bow Hall - Dorms Access"; network = list("ss13","rd")},/obj/structure/sign/poster/official/random{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aJB" = (/obj/machinery/computer/security/mining{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"aJC" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aJD" = (/obj/structure/rack,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/item/storage/belt/medical,/obj/item/tank/internals/emergency_oxygen,/obj/item/clothing/suit/space/eva/paramedic,/obj/item/clothing/head/helmet/space/eva/paramedic,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"aJE" = (/obj/structure/closet/secure_closet/medical2,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"aJF" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/fore) -"aJG" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/bridge) -"aJH" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/storage/tools) -"aJI" = (/obj/structure/closet/crate/hydroponics,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/cable,/obj/item/shovel/spade,/obj/item/wrench,/obj/item/cultivator,/obj/item/crowbar,/obj/item/wirecutters,/obj/item/reagent_containers/glass/bucket,/obj/item/hatchet,/obj/machinery/power/apc/highcap/five_k{areastring = "/area/hydroponics"; name = "Hydroponics APC"; pixel_y = -28},/turf/open/floor/plasteel,/area/hydroponics) -"aJJ" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/storage/tools) -"aJK" = (/obj/structure/filingcabinet,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/bridge) -"aJL" = (/turf/open/floor/circuit,/area/bridge) -"aJM" = (/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/circuit,/area/bridge) -"aJN" = (/obj/machinery/camera{c_tag = "Security - Prison Aft"; dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/prison) -"aJO" = (/obj/structure/chair/stool,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/prison) -"aJP" = (/obj/structure/chair/comfy/teal,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/sign/departments/botany{pixel_y = 32},/obj/machinery/camera{c_tag = "Civilian Wing Hallway - Starboard"; dir = 8; pixel_y = -22},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aJQ" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aJR" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) -"aJS" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"aJT" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aJU" = (/obj/machinery/vending/cigarette,/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"aJV" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"aJW" = (/obj/machinery/cryopod{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/circuit/green,/area/crew_quarters/cryopod) -"aJX" = (/obj/machinery/light{dir = 4},/obj/machinery/modular_computer/console/preset/civilian{dir = 8},/turf/open/floor/circuit,/area/bridge) -"aJY" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stack/sheet/metal/fifty,/obj/item/storage/box/lights/mixed,/obj/item/stack/sheet/metal/fifty{pixel_x = -3; pixel_y = -7},/turf/open/floor/plasteel,/area/storage/tools) -"aJZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/main) -"aKa" = (/obj/structure/chair/stool,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/prison) -"aKb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/civilian) -"aKc" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aKd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation"; req_access_txt = "63"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/security/brig) -"aKe" = (/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) -"aKf" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/storage/emergency/generic) -"aKg" = (/turf/open/floor/plasteel/stairs/right,/area/hallway/secondary/entry) -"aKh" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet/red,/area/security/brig) -"aKi" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/security/main) -"aKj" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"aKk" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/effect/landmark/start/detective,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aKl" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aKm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Emergency Storage"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aKn" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) -"aKo" = (/obj/effect/turf_decal/delivery,/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/security/brig) -"aKp" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"aKq" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Chapel"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/chapel/main) -"aKr" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/public/glass{name = "Emergency Storage"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/emergency/generic) -"aKs" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/reagent_containers/food/drinks/drinkingglass,/obj/item/reagent_containers/rag,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"aKt" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aKu" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/storage/emergency/generic) -"aKv" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/bridge) -"aKw" = (/obj/structure/table,/obj/item/storage/box/dice,/obj/item/toy/cards/deck,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/security/prison) -"aKx" = (/obj/machinery/computer/security{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"aKy" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/rnd/production/techfab/department/security,/turf/open/floor/plasteel,/area/security/brig) -"aKz" = (/turf/closed/wall,/area/storage/emergency/generic) -"aKA" = (/obj/structure/table/wood,/obj/machinery/button/door{id = "bridge blast"; name = "Bridge Blast Door Control"; pixel_x = -6; pixel_y = -3; req_access_txt = "19"},/turf/open/floor/carpet/royalblue,/area/bridge) -"aKB" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"aKC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Prison Wing"; req_access_txt = "2"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aKD" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aKE" = (/obj/structure/table/wood,/obj/item/storage/fancy/donut_box,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/carpet/royalblue,/area/bridge) -"aKF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Telecommunications Control Room"; req_access_txt = "19;61"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"aKG" = (/obj/structure/table/wood,/obj/item/storage/toolbox/emergency,/obj/item/crowbar/red,/turf/open/floor/carpet/royalblue,/area/bridge) -"aKH" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/stripes/white/full,/obj/machinery/camera{c_tag = "Bridge - Fore"; network = list("ss13","rd")},/turf/open/floor/plasteel/dark,/area/bridge) -"aKI" = (/obj/structure/closet/cabinet,/obj/item/screwdriver,/obj/item/storage/crayons,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"aKJ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aKK" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/vending/snack/blue,/turf/open/floor/plasteel,/area/bridge) -"aKL" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/bridge) -"aKM" = (/obj/machinery/camera{c_tag = "Chapel - Starboard"; dir = 8; pixel_y = -22},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"aKN" = (/obj/structure/chair/pew/left{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"aKO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/stairs/left,/area/security/brig) -"aKP" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/bridge) -"aKQ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/chapel/office) -"aKR" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/port/fore) -"aKS" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/bridge) -"aKT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/starboard/central) -"aKU" = (/obj/structure/bodycontainer/morgue,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) -"aKV" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) -"aKW" = (/obj/structure/reagent_dispensers/water_cooler,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aKX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Chapel Morgue"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel/dark,/area/chapel/office) -"aKY" = (/obj/structure/chair/sofa/left,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/status_display{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge) -"aKZ" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"aLa" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/door/poddoor/preopen{id = "hos"},/turf/open/floor/plating,/area/crew_quarters/heads/hos) -"aLb" = (/obj/item/toy/prize/honk,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fore) -"aLc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aLd" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aLe" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aLf" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"aLg" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aLh" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aLi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Central Maintenance"; req_one_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/central) -"aLj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aLk" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/brig) -"aLl" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/autodrobe,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aLm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/bridge) -"aLn" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/junction/flip,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aLo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aLp" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/chapel/office) -"aLq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aLr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aLs" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"aLt" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aLu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Visitation Maintainance"; req_one_access_txt = "63"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/security/main) -"aLv" = (/obj/machinery/computer/cryopod{dir = 8; pixel_x = 26},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"aLw" = (/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/kirbyplants{icon_state = "plant-06"},/turf/open/floor/plasteel,/area/security/brig) -"aLx" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aLy" = (/obj/machinery/modular_computer/console/preset/command{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"aLz" = (/obj/machinery/newscaster{pixel_y = -28},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aLA" = (/obj/item/candle{pixel_x = -4; pixel_y = -4},/obj/item/candle{pixel_x = -8; pixel_y = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/dark,/area/chapel/office) -"aLB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aLC" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aLD" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"aLE" = (/obj/machinery/computer/communications{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"aLF" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aLG" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"aLH" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/tcommsat/computer) -"aLI" = (/obj/structure/table/wood,/obj/item/storage/box/PDAs,/obj/item/storage/box/ids{pixel_x = 3; pixel_y = 3},/turf/open/floor/carpet/royalblue,/area/bridge) -"aLJ" = (/obj/structure/chair{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/brig) -"aLK" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/bridge) -"aLL" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/brig) -"aLM" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) -"aLN" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/morgue{name = "Confession Booth"},/turf/open/floor/plasteel/dark,/area/chapel/main) -"aLO" = (/obj/item/toy/talking/owl,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) -"aLP" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = -26},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"aLQ" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/vending/coffee,/turf/open/floor/plasteel,/area/bridge) -"aLR" = (/obj/structure/table,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/storage/box/bodybags{pixel_y = 4},/obj/item/stack/packageWrap,/obj/item/hand_labeler,/turf/open/floor/plasteel/dark,/area/chapel/office) -"aLS" = (/obj/structure/disposaloutlet{dir = 8; name = "Corpse Outlet"},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/delivery/red,/turf/open/floor/plasteel/dark,/area/chapel/office) -"aLT" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aLU" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/assist,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aLV" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/camera{c_tag = "Central Maintenance - Aft"; network = list("ss13","rd")},/turf/open/floor/plating,/area/maintenance/central) -"aLW" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/security/brig) -"aLX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/security/main) -"aLY" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/main) -"aLZ" = (/mob/living/simple_animal/chicken{desc = "At least it isn't a court kangaroo."; name = "amusing cluck"; real_name = "amusing cluck"},/turf/open/floor/carpet,/area/security/courtroom) -"aMa" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"aMb" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aMc" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 20},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aMd" = (/obj/machinery/vending/wardrobe/chap_wardrobe,/obj/machinery/camera{c_tag = "Chapel Office"; dir = 1},/turf/open/floor/plasteel/dark,/area/chapel/office) -"aMe" = (/obj/machinery/door/window/northleft{name = "Game Room"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"aMf" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aMg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/central) -"aMh" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/item/reagent_containers/food/drinks/bottle/champagne,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Security's Desk"; departmentType = 5; name = "Head of Security RC"; pixel_y = -32},/obj/machinery/keycard_auth{pixel_x = -24},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) -"aMi" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/bridge) -"aMj" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aMk" = (/obj/structure/closet/crate/coffin,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/department/chapel) -"aMl" = (/obj/effect/landmark/start/bartender,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aMm" = (/obj/machinery/computer/med_data,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"aMn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/sign/warning{name = "\improper WARNING: MOVING MACHINERY"},/turf/closed/wall,/area/maintenance/department/chapel) -"aMo" = (/obj/structure/disposalpipe/junction/yjunction,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aMp" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aMq" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aMr" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Civilian Wing Hallway - Port"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aMs" = (/turf/closed/wall,/area/maintenance/department/chapel) -"aMt" = (/obj/machinery/atmospherics/components/unary/tank/air,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/chapel) -"aMu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel{dir = 4; icon_state = "chapel"},/area/chapel/main) -"aMv" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel{dir = 8; icon_state = "chapel"},/area/chapel/main) -"aMw" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aMx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"aMy" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"aMz" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 10},/turf/closed/wall/r_wall,/area/engine/storage{name = "Canister Storage"}) -"aMA" = (/turf/closed/wall,/area/janitor) -"aMB" = (/turf/closed/wall/r_wall,/area/janitor) -"aMC" = (/obj/structure/table/wood,/obj/item/kitchen/fork,/obj/item/reagent_containers/food/snacks/salad/herbsalad,/obj/item/candle{pixel_x = 8; pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"aMD" = (/turf/closed/wall/rust,/area/maintenance/disposal) -"aME" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aMF" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"aMG" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aMH" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aMI" = (/turf/closed/wall/r_wall,/area/maintenance/disposal) -"aMJ" = (/obj/structure/chair{dir = 4},/obj/machinery/newscaster{pixel_x = -30},/obj/effect/landmark/start/assistant,/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"aMK" = (/obj/vehicle/ridden/wheelchair,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"aML" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/chapel/office) -"aMM" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/sign/poster/official/help_others{pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aMN" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/main) -"aMO" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aMP" = (/obj/structure/table/glass,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -6; pixel_y = 2},/obj/item/reagent_containers/food/drinks/bottle/wine,/turf/open/floor/plasteel,/area/security/brig) -"aMQ" = (/obj/machinery/computer/security{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"aMR" = (/obj/effect/landmark/start/chaplain,/obj/structure/chair/comfy/brown{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet,/area/chapel/main) -"aMS" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aMT" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aMU" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/fountain,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet,/area/chapel/main) -"aMV" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"aMW" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aMX" = (/obj/structure/chair/comfy/brown{buildstackamount = 0; dir = 1},/turf/open/floor/carpet/royalblue,/area/bridge) -"aMY" = (/obj/structure/closet,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) -"aMZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"aNa" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"aNb" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"aNc" = (/obj/structure/rack,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/item/mop,/obj/item/storage/box/mousetraps,/obj/item/storage/box/mousetraps,/obj/item/reagent_containers/spray/cleaner,/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plasteel,/area/janitor) -"aNd" = (/obj/structure/table/glass,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/paper_bin,/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) -"aNe" = (/obj/structure/closet/crate,/obj/item/reagent_containers/food/snacks/spaghetti,/obj/item/reagent_containers/food/snacks/spaghetti,/turf/open/floor/plating,/area/hallway/secondary/service) -"aNf" = (/obj/structure/table/glass,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/clipboard,/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) -"aNg" = (/obj/machinery/computer/cargo/request{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"aNh" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"aNi" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/bridge) -"aNj" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/table,/obj/item/book/manual/wiki/security_space_law,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/security/brig) -"aNk" = (/obj/structure/table/glass,/obj/structure/noticeboard{pixel_y = 28},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/pen{pixel_y = 8},/obj/item/pen,/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) -"aNl" = (/obj/structure/table/wood,/obj/item/trash/plate,/obj/item/reagent_containers/food/condiment/pack/ketchup{pixel_x = -2; pixel_y = 6},/obj/item/reagent_containers/food/condiment/pack/mustard{pixel_x = 6; pixel_y = 3},/obj/item/candle{pixel_x = -8; pixel_y = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"aNm" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aNn" = (/obj/structure/table,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/reagent_containers/food/drinks/shaker,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aNo" = (/obj/structure/disposalpipe/segment,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "AIShutter"; name = "AI Core Shutters"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) -"aNp" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aNq" = (/obj/machinery/door/window/northright{name = "Chapel Office"; req_access_txt = "22"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/chapel/office) -"aNr" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"aNs" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aNt" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aNu" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/bar) -"aNv" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aNw" = (/obj/machinery/atmospherics/components/binary/valve,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/chapel) -"aNx" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/securearea,/turf/open/floor/plating,/area/engine/storage{name = "Canister Storage"}) -"aNy" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"aNz" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"aNA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "2"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/security/main) -"aNB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Port Bow Primary Hallway"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aNC" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/camera/motion{c_tag = "Telecomms Control Room"; network = list("tcomms"); pixel_x = 22},/obj/machinery/power/apc/highcap/fifteen_k{areastring = "/area/tcommsat/server"; dir = 1; name = "Telecomms Server APC"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/server) -"aND" = (/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"aNE" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aNF" = (/obj/machinery/computer/secure_data{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"aNG" = (/obj/structure/window/reinforced{dir = 1; pixel_y = 2},/obj/structure/table,/obj/item/taperecorder,/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/security/brig) -"aNH" = (/obj/machinery/door/airlock/external/glass{name = "Exterior Engineering Access"; req_access_txt = "11;13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"aNI" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aNJ" = (/obj/structure/table,/obj/item/flashlight/lamp,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/brig) -"aNK" = (/obj/structure/sign/nanotrasen{pixel_x = -32},/turf/open/floor/plasteel,/area/security/courtroom) -"aNL" = (/turf/open/floor/plasteel,/area/security/courtroom) -"aNM" = (/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -32},/turf/open/floor/plasteel,/area/security/brig) -"aNN" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/security/courtroom) -"aNO" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) -"aNP" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aNQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/securearea,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/engine/storage{name = "Canister Storage"}) -"aNR" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop) -"aNS" = (/obj/structure/chair,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) -"aNT" = (/turf/closed/wall/r_wall,/area/teleporter) -"aNU" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aNV" = (/obj/structure/table,/obj/item/locator,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/brig) -"aNW" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/maintenance/disposal) -"aNX" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/instrument/guitar,/obj/machinery/camera{c_tag = "Bar - Port"; dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aNY" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=sec2"; location = "bar"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aNZ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/solars/port) -"aOa" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "E.V.A. Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/eva) -"aOb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "E.V.A. Maintenance"; req_one_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/eva) -"aOc" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"aOd" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"aOe" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) -"aOf" = (/obj/effect/turf_decal/tile/neutral,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aOg" = (/obj/structure/chair/comfy/teal{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aOh" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"aOi" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/chapel/office) -"aOj" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aOk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/effect/turf_decal/delivery,/obj/structure/window/reinforced/spawner,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aOl" = (/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aOm" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light_switch{pixel_y = -24},/obj/structure/table/wood,/obj/item/toy/windupToolbox,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aOn" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/brig) -"aOo" = (/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/hallway/primary/port/fore"; dir = 4; name = "Port Bow Primary Hallway APC"; pixel_x = 24},/turf/open/floor/plating,/area/maintenance/department/security) -"aOp" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 31},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/bridge) -"aOq" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/effect/turf_decal/delivery,/obj/item/extinguisher,/obj/structure/window/reinforced/spawner,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aOr" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/sign/warning/securearea{pixel_x = -32},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark/side{dir = 1},/area/bridge) -"aOs" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/kirbyplants,/turf/open/floor/plasteel/dark/side{dir = 1},/area/bridge) -"aOt" = (/obj/structure/chair/stool,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/main) -"aOu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/chapel/main) -"aOv" = (/obj/structure/table/wood,/obj/item/clipboard,/obj/item/gavelblock,/obj/item/gavelhammer,/obj/machinery/camera{c_tag = "Courtroom"; network = list("ss13","rd")},/turf/open/floor/carpet,/area/security/courtroom) -"aOw" = (/obj/structure/table/wood,/obj/item/clipboard,/obj/item/pen,/turf/open/floor/plasteel,/area/security/courtroom) -"aOx" = (/obj/structure/table/reinforced,/obj/item/grenade/chem_grenade/smart_metal_foam{pixel_x = 4},/obj/item/radio,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aOy" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/vending/cigarette,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aOz" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/camera{c_tag = "Port Bow Hall"; dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aOA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/department/chapel) -"aOB" = (/turf/closed/wall/r_wall,/area/security/courtroom) -"aOC" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"aOD" = (/obj/machinery/door/airlock{name = "Catering"; req_one_access_txt = "25;28"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"aOE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"aOF" = (/obj/structure/closet/crate/freezer/surplus_limbs,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"aOG" = (/obj/structure/chair/comfy/teal{dir = 1},/obj/machinery/light,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aOH" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/port/fore) -"aOI" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/obj/machinery/flasher{id = "ID"; pixel_x = 8; pixel_y = 24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"aOJ" = (/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool) -"aOK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/solars/port) -"aOL" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/closed/wall,/area/security/brig) -"aOM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"aON" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aOO" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"aOP" = (/obj/machinery/light{dir = 1},/turf/open/floor/engine,/area/engine/gravity_generator) -"aOQ" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "cold loop to generator"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aOR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/window/reinforced/spawner/east,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aOS" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aOT" = (/turf/closed/wall,/area/crew_quarters/fitness/cogpool) -"aOU" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool) -"aOV" = (/turf/open/floor/plasteel/stairs,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aOW" = (/obj/structure/closet/secure_closet/security/sec,/obj/effect/turf_decal/bot,/obj/item/clothing/accessory/armband/hydro,/obj/item/encryptionkey/headset_service,/obj/item/clothing/under/misc/vice_officer,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aOX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Pool"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/white/side,/area/crew_quarters/fitness/cogpool) -"aOY" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/window/reinforced/spawner/west,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aOZ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/bridge) -"aPa" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Pool"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/side,/area/crew_quarters/fitness/cogpool) -"aPb" = (/obj/structure/grille,/turf/open/floor/plating,/area/hallway/primary/central) -"aPc" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aPd" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aPe" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/disposalpipe/junction{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"aPf" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"aPg" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating/airless,/area/space/nearstation) -"aPh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/meter,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aPi" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/mirror{pixel_x = 24},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aPj" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aPk" = (/obj/effect/landmark/start/depsec/science,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aPl" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aPm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aPn" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/landmark/start/depsec/medical,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aPo" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom) -"aPp" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/bridge) -"aPq" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom) -"aPr" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/central) -"aPs" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/main) -"aPt" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) -"aPu" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/bridge) -"aPv" = (/obj/machinery/door/airlock/security/glass{name = "Equipment Room"; req_access_txt = "1"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aPw" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/camera{c_tag = "Central Hall - Courtroom Access"; network = list("ss13","rd")},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/central) -"aPx" = (/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aPy" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aPz" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/security/courtroom) -"aPA" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aPB" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/paper/guides/jobs/security/courtroom,/obj/item/pen,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet,/area/security/courtroom) -"aPC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aPD" = (/obj/machinery/door/airlock/security/glass{name = "Equipment Room"; req_access_txt = "1"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"aPE" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 8},/obj/item/toy/talking/AI{name = "Nanotrasen-brand toy AI"; pixel_y = 6},/obj/item/clothing/glasses/meson,/obj/machinery/status_display{pixel_x = -32},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"aPF" = (/turf/closed/wall/r_wall,/area/crew_quarters/locker) -"aPG" = (/obj/structure/disposalpipe/sorting/mail/flip{sortType = 21},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aPH" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet,/area/security/courtroom) -"aPI" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/department/eva) -"aPJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=bar"; location = "serv"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aPK" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/eva) -"aPL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aPM" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) -"aPN" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/space/nearstation) -"aPO" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 8},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aPP" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/machinery/meter,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aPQ" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aPR" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating/airless,/area/crew_quarters/fitness/cogpool) -"aPS" = (/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aPT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating/airless,/area/space/nearstation) -"aPU" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"aPV" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"aPW" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"aPX" = (/obj/structure/table,/obj/effect/turf_decal/bot,/obj/item/storage/fancy/donut_box,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aPY" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aPZ" = (/obj/structure/window/plasma/reinforced{dir = 4},/obj/structure/window/reinforced/tinted,/obj/structure/table,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"aQa" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) -"aQb" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aQc" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"aQd" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"aQe" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aQf" = (/obj/structure/table,/obj/structure/bedsheetbin,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"aQg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"aQh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge) -"aQi" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"aQj" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) -"aQk" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aQl" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig) -"aQm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/red,/area/security/brig) -"aQn" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) -"aQo" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/security/courtroom) -"aQp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating/airless,/area/space/nearstation) -"aQq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/space/nearstation) -"aQr" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/space/nearstation) -"aQs" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aQt" = (/obj/machinery/pool/controller,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aQu" = (/obj/structure/table,/obj/item/toy/beach_ball{pixel_y = 12},/obj/item/clothing/glasses/sunglasses{pixel_y = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aQv" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) -"aQw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/main) -"aQx" = (/obj/machinery/camera{c_tag = "Engine Room - Port Bow"},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"aQy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/chapel/main) -"aQz" = (/obj/structure/chair/comfy/teal,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aQA" = (/obj/structure/chair/stool,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"aQB" = (/obj/structure/table,/obj/item/clothing/glasses/sunglasses{pixel_y = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aQC" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"aQD" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aQE" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aQF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/circuit/green,/area/crew_quarters/cryopod) -"aQG" = (/obj/structure/closet/emcloset,/turf/open/floor/plating,/area/maintenance/port/central) -"aQH" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aQI" = (/obj/structure/chair/comfy/teal,/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aQJ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation) -"aQK" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/port/central) -"aQL" = (/turf/closed/wall,/area/maintenance/port/central) -"aQM" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/brig) -"aQN" = (/obj/structure/chair/comfy/brown,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge) -"aQO" = (/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aQP" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/kirbyplants{icon_state = "plant-02"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aQQ" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aQR" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aQS" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aQT" = (/obj/machinery/door/airlock/engineering{name = "Thermo-Electric Generator"; req_one_access_txt = "10;24"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aQU" = (/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/plasteel/dark,/area/teleporter) -"aQV" = (/obj/structure/extinguisher_cabinet{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"aQW" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) -"aQX" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aQY" = (/obj/structure/window/plasma/reinforced{dir = 4},/obj/structure/window/reinforced/tinted,/obj/structure/table,/obj/item/toy/beach_ball/holoball/dodgeball,/obj/item/toy/beach_ball/holoball/dodgeball,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"aQZ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Service Hallway"; req_one_access_txt = "25;26;28;35"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"aRa" = (/obj/structure/table/wood,/obj/item/lighter,/obj/item/multitool{pixel_x = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge) -"aRb" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/primary/central) -"aRc" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/crew_quarters/fitness/cogpool) -"aRd" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aRe" = (/obj/structure/table/wood,/obj/item/storage/secure/briefcase,/obj/item/assembly/flash,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet/royalblue,/area/bridge) -"aRf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aRg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aRh" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/maintenance/department/eva) -"aRi" = (/obj/machinery/light,/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aRj" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/machinery/sleep_console{dir = 8},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"aRk" = (/obj/structure/disposalpipe/junction/yjunction,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aRl" = (/obj/structure/table/wood,/obj/item/restraints/handcuffs,/obj/item/laser_pointer/blue,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge) -"aRm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/courtroom) -"aRn" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aRo" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) -"aRp" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aRq" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/maintenance/department/eva) -"aRr" = (/mob/living/simple_animal/chicken{name = "Kentucky"; real_name = "Kentucky"},/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) -"aRs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aRt" = (/obj/effect/turf_decal/tile/neutral,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aRu" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/turf/open/space/basic,/area/space/nearstation) -"aRv" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = -32},/turf/open/space/basic,/area/space/nearstation) -"aRw" = (/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) -"aRx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"aRy" = (/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer) -"aRz" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"aRA" = (/obj/structure/table/optable,/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/reagent_containers/blood/random,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"aRB" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aRC" = (/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"aRD" = (/turf/closed/wall/r_wall/rust,/area/engine/gravity_generator) -"aRE" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"aRF" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/engine/storage_shared{name = "Electrical Substation"}) -"aRG" = (/obj/machinery/power/generator,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aRH" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/blobstart,/obj/machinery/camera{c_tag = "Central Port Maintenance - Starboard"; dir = 8; pixel_y = -22},/turf/open/floor/plating,/area/maintenance/port/central) -"aRI" = (/obj/structure/rack,/obj/item/extinguisher,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/port/central) -"aRJ" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/hydroponics/garden{name = "Nature Preserve"}) -"aRK" = (/obj/structure/sign/departments/holy{pixel_y = -32},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aRL" = (/mob/living/simple_animal/crab/kreb,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) -"aRM" = (/turf/open/floor/carpet,/area/crew_quarters/bar) -"aRN" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aRO" = (/obj/structure/disposalpipe/junction/yjunction,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aRP" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aRQ" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aRR" = (/obj/machinery/portable_atmospherics/pump,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"aRS" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/kirbyplants{icon_state = "plant-10"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aRT" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aRU" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/main) -"aRV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"aRW" = (/turf/open/floor/plating,/area/maintenance/port/central) -"aRX" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/space/nearstation) -"aRY" = (/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"aRZ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/turf/open/space/basic,/area/space/nearstation) -"aSa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge) -"aSb" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aSc" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/central) -"aSd" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) -"aSe" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Chapel"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/chapel/main) -"aSf" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aSg" = (/obj/machinery/power/apc{name = "Security Maintainance APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/security) -"aSh" = (/obj/structure/table,/obj/item/storage/fancy/donut_box,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/red,/area/security/brig) -"aSi" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge) -"aSj" = (/obj/structure/target_stake,/obj/item/target/syndicate,/turf/open/floor/plasteel,/area/science/circuit) -"aSk" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aSl" = (/obj/machinery/computer/teleporter{dir = 1},/turf/open/floor/plasteel/dark,/area/teleporter) -"aSm" = (/obj/machinery/teleport/station,/turf/open/floor/plasteel/dark,/area/teleporter) -"aSn" = (/obj/machinery/teleport/hub,/turf/open/floor/plasteel/dark,/area/teleporter) -"aSo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aSp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aSq" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/space/nearstation) -"aSr" = (/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"aSs" = (/obj/machinery/light{dir = 1; light_color = "#d1dfff"},/obj/effect/turf_decal/delivery,/obj/machinery/camera{c_tag = "Bridge Access"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/bridge) -"aSt" = (/turf/closed/wall/r_wall,/area/maintenance/department/eva) -"aSu" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/space/nearstation) -"aSv" = (/turf/closed/wall,/area/space/nearstation) -"aSw" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation) -"aSx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aSy" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "2-4"},/turf/open/space/basic,/area/space/nearstation) -"aSz" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aSA" = (/obj/structure/closet/secure_closet/medical2,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"aSB" = (/obj/machinery/door/airlock/command{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge) -"aSC" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"aSD" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aSE" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aSF" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/surgical_drapes,/obj/item/scalpel,/obj/item/circular_saw{pixel_y = 16},/obj/item/hemostat,/obj/item/retractor,/obj/item/surgicaldrill,/obj/item/cautery,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"aSG" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/closed/wall/r_wall,/area/hydroponics/garden{name = "Nature Preserve"}) -"aSH" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/hydroponics/garden{name = "Nature Preserve"}) -"aSI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aSJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Security Office"; req_access_txt = "63"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/main) -"aSK" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"aSL" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"aSM" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/space/nearstation) -"aSN" = (/obj/structure/table,/obj/machinery/computer/secure_data/laptop{dir = 8; pixel_x = -2; pixel_y = 2},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet/red,/area/security/brig) -"aSO" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aSP" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aSQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/brig) -"aSR" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/storage/tools) -"aSS" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "Chapel"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aST" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"aSU" = (/obj/structure/reagent_dispensers/beerkeg,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = -26},/obj/machinery/requests_console{department = "Bar"; departmentType = 2; name = "Bar RC"; pixel_y = -30},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) -"aSV" = (/obj/item/toy/talking/AI,/obj/structure/grille/broken,/turf/open/floor/plating,/area/hallway/primary/central) -"aSW" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge) -"aSX" = (/obj/machinery/washing_machine,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"aSY" = (/obj/machinery/vending/medical,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"aSZ" = (/obj/structure/chair/stool,/obj/machinery/light,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"aTa" = (/obj/structure/window/plasma/reinforced{dir = 4},/obj/structure/table,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison) -"aTb" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Central Hall - Starboard"; pixel_x = 22},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aTc" = (/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"aTd" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"},/turf/closed/wall/r_wall,/area/space/nearstation) -"aTe" = (/obj/effect/turf_decal/delivery,/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aTf" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/bridge) -"aTg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/security/brig) -"aTh" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external/glass{name = "Telecommunications External Access"; req_access_txt = "61"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/tcommsat/computer) -"aTi" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aTj" = (/obj/machinery/pool/filter{pixel_y = 16},/turf/open/pool,/area/crew_quarters/fitness/cogpool) -"aTk" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation) -"aTl" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"aTm" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"aTn" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/department/eva"; dir = 8; name = "EVA Maintenance APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/department/eva) -"aTo" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/detectives_office) -"aTp" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/landmark/start/security_officer,/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel,/area/security/brig) -"aTq" = (/obj/structure/chair{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"aTr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/detectives_office) -"aTs" = (/turf/closed/wall,/area/maintenance/department/eva) -"aTt" = (/obj/structure/closet/secure_closet/detective,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aTu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Bridge Access"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge) -"aTv" = (/turf/open/pool,/area/crew_quarters/fitness/cogpool) -"aTw" = (/obj/structure/pool/ladder{dir = 2; pixel_y = 24},/turf/open/pool,/area/crew_quarters/fitness/cogpool) -"aTx" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = -32},/turf/open/space/basic,/area/space/nearstation) -"aTy" = (/obj/structure/lattice/catwalk,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = -32},/turf/open/space/basic,/area/space/nearstation) -"aTz" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aTA" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aTB" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel{icon_state = "chapel"},/area/chapel/main) -"aTC" = (/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aTD" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/courtroom) -"aTE" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/circuit) -"aTF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet/red,/area/security/brig) -"aTG" = (/turf/closed/wall,/area/router/public) -"aTH" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"aTI" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/airlock/public/glass{name = "Public Router"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/router/public) -"aTJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aTK" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/airlock/public/glass{name = "Public Router"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/public) -"aTL" = (/obj/machinery/cryopod{dir = 4},/obj/machinery/camera{c_tag = "Cryogenics"; dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/circuit/green,/area/crew_quarters/cryopod) -"aTM" = (/turf/closed/wall/r_wall,/area/router/public) -"aTN" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = -26},/obj/item/kirbyplants{icon_state = "plant-14"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aTO" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/security/courtroom) -"aTP" = (/obj/machinery/status_display/ai,/turf/closed/wall/r_wall,/area/security/courtroom) -"aTQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Thermo-Electric Generator"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aTR" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/stamp,/obj/item/stamp/denied{pixel_x = 4; pixel_y = 4},/obj/item/pen/red,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/red,/area/security/brig) -"aTS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/central) -"aTT" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/central) -"aTU" = (/obj/machinery/holopad,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aTV" = (/turf/closed/wall,/area/gateway) -"aTW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"aTX" = (/obj/machinery/light{dir = 1; light_color = "#c1caff"},/turf/open/floor/plasteel/white,/area/science/circuit) -"aTY" = (/obj/structure/chair,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/security/courtroom) -"aTZ" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "hot loop to space"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"aUa" = (/obj/machinery/light_switch{pixel_x = 24},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aUb" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"aUc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/central) -"aUd" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aUe" = (/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aUf" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"aUg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"aUh" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/department/eva) -"aUi" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/gateway) -"aUj" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/destTagger,/obj/machinery/requests_console{department = "Public Router"; name = "Public Router RC"; pixel_x = -32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/router/public) -"aUk" = (/turf/closed/wall/r_wall,/area/gateway) -"aUl" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/router/public) -"aUm" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/router/public) -"aUn" = (/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/bot,/obj/machinery/computer/cargo/request,/turf/open/floor/plasteel,/area/router/public) -"aUo" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/gateway) -"aUp" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/closet/crate/science,/turf/open/floor/plasteel,/area/gateway) -"aUq" = (/turf/closed/wall/r_wall,/area/crew_quarters/lounge/jazz) -"aUr" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 10},/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"aUs" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) -"aUt" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"aUu" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/rack,/turf/open/floor/plasteel,/area/gateway) -"aUv" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/security_officer,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet/red,/area/security/brig) -"aUw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Jazz Lounge"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) -"aUx" = (/obj/machinery/door/window/northright{name = "Game Room"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"aUy" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/obj/effect/decal/cleanable/dirt,/obj/structure/sign/poster/official/do_not_question{pixel_y = 32},/turf/open/floor/plasteel,/area/security/prison) -"aUz" = (/obj/machinery/computer/telecomms/server{dir = 4; network = "tcommsat"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/circuit,/area/bridge) -"aUA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aUB" = (/obj/structure/table/wood,/obj/item/flashlight/lamp,/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop) -"aUC" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/courtroom) -"aUD" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom) -"aUE" = (/obj/machinery/light,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom) -"aUF" = (/obj/machinery/computer/bounty{dir = 1},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop) -"aUG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/courtroom) -"aUH" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light/small,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/port/central) -"aUI" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/central) -"aUJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aUK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/warning/electricshock{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/central) -"aUL" = (/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom) -"aUM" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/junction,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aUN" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aUO" = (/obj/machinery/firealarm{pixel_y = 26},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/teleporter"; dir = 4; name = "Teleporter Room APC"; pixel_x = 26},/turf/open/floor/plasteel/dark,/area/teleporter) -"aUP" = (/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/eva) -"aUQ" = (/obj/structure/table,/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/plating,/area/maintenance/department/eva) -"aUR" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 8; icon_state = "intact"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/bridge) -"aUS" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"aUT" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aUU" = (/obj/machinery/pool/drain,/turf/open/pool,/area/crew_quarters/fitness/cogpool) -"aUV" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/security/courtroom) -"aUW" = (/obj/structure/pool/Lboard,/turf/open/pool,/area/crew_quarters/fitness/cogpool) -"aUX" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plating,/area/maintenance/port/central) -"aUY" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/port/central) -"aUZ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"aVa" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aVb" = (/obj/structure/pool/Rboard,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aVc" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/item/kirbyplants{icon_state = "applebush"},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aVd" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aVe" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/port/central) -"aVf" = (/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aVg" = (/obj/machinery/computer/cryopod{pixel_y = 28},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/circuit/green,/area/crew_quarters/cryopod) -"aVh" = (/obj/effect/turf_decal/bot,/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/gateway) -"aVi" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/router/public) -"aVj" = (/obj/machinery/vending/cola/random,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom) -"aVk" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 8},/area/gateway) -"aVl" = (/obj/machinery/vending/snack/random,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom) -"aVm" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/department/eva) -"aVn" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/router/public) -"aVo" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/router/public) -"aVp" = (/obj/structure/cable{icon_state = "2-8"},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/obj/machinery/camera{c_tag = "Public Router"; dir = 8; pixel_y = -22},/obj/machinery/button/massdriver{id = "public_out"; pixel_x = 24; pixel_y = -6},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/button/door{id = "pubblock"; name = "Router Access Control"; pixel_x = 24; pixel_y = 24},/turf/open/floor/plasteel,/area/router/public) -"aVq" = (/obj/structure/table,/turf/open/floor/plasteel/white,/area/gateway) -"aVr" = (/obj/structure/table,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/storage/box/cups,/obj/structure/sign/poster/official/here_for_your_safety{pixel_x = 32},/turf/open/floor/plasteel,/area/security/main) -"aVs" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/lounge/jazz) -"aVt" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/space/basic,/area/space/nearstation) -"aVu" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/dark/side,/area/security/courtroom) -"aVv" = (/turf/open/floor/plating,/area/maintenance/department/eva) -"aVw" = (/obj/structure/chair{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/red,/area/security/brig) -"aVx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) -"aVy" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"aVz" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet/red,/area/security/brig) -"aVA" = (/obj/machinery/cryopod{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/circuit/green,/area/crew_quarters/cryopod) -"aVB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) -"aVC" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/central) -"aVD" = (/obj/machinery/vending/clothing,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"aVE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Dormitory Toilets"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"aVF" = (/turf/open/floor/plasteel/white,/area/science/circuit) -"aVG" = (/obj/machinery/ore_silo,/obj/effect/turf_decal/bot_white,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{areastring = "/area/ai_monitored/nuke_storage"; dir = 4; name = "Vault APC"; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aVH" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/hallway/secondary/civilian"; dir = 8; name = "Civilian Wing Hallway APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aVI" = (/obj/structure/table,/obj/item/storage/box/zipties,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/carpet/red,/area/security/brig) -"aVJ" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom) -"aVK" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/space/nearstation) -"aVL" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom) -"aVM" = (/obj/structure/chair/stool,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/eva) -"aVN" = (/obj/machinery/vending,/turf/open/floor/plating,/area/maintenance/department/eva) -"aVO" = (/obj/structure/table,/obj/item/tape,/obj/item/taperecorder{pixel_x = -4},/obj/item/radio/off,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/red,/area/security/brig) -"aVP" = (/obj/structure/window/reinforced,/obj/structure/displaycase/captain,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain) -"aVQ" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/security) -"aVR" = (/obj/structure/window/reinforced,/obj/structure/filingcabinet,/obj/machinery/firealarm{dir = 8; pixel_x = 26},/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain) -"aVS" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/port/central) -"aVT" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: WASTE EJECTION"; pixel_x = -32},/turf/open/space/basic,/area/space/nearstation) -"aVU" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aVV" = (/obj/structure/bed,/obj/item/bedsheet/red,/obj/structure/cable{icon_state = "2-8"},/mob/living/simple_animal/bot/secbot/beepsky{desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey, and with a sturdier reinforced chassis, too. "; health = 45; maxHealth = 45; name = "Officer Beepsky"},/turf/open/floor/plating,/area/maintenance/department/security) -"aVW" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel,/area/gateway) -"aVX" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/clothing/mask/surgical,/obj/item/clothing/suit/apron/surgical,/obj/item/clothing/gloves/color/latex,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"aVY" = (/obj/structure/chair{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) -"aVZ" = (/obj/machinery/computer/security/wooden_tv,/turf/open/floor/plating,/area/maintenance/department/security) -"aWa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/security) -"aWb" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/port/central) -"aWc" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/port/central) -"aWd" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/department/eva) -"aWe" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet/red,/area/security/brig) -"aWf" = (/obj/effect/turf_decal/tile/red,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aWg" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) -"aWh" = (/obj/effect/landmark/start/lawyer,/obj/structure/chair{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) -"aWi" = (/obj/machinery/cryopod{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/disposal"; dir = 8; name = "Cryogenics APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/circuit/green,/area/crew_quarters/cryopod) -"aWj" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"aWk" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/plasteel/dark/side,/area/security/courtroom) -"aWl" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/photocopier,/turf/open/floor/plasteel/dark/side,/area/security/courtroom) -"aWm" = (/turf/open/floor/plasteel,/area/gateway) -"aWn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aWo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/cryopod) -"aWp" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/computer/gateway_control{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 4},/area/gateway) -"aWq" = (/obj/structure/rack,/obj/machinery/light/small{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/extinguisher,/obj/item/crowbar,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/eva) -"aWr" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Central Maintenance"; req_one_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/hallway/primary/port/fore) -"aWs" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aWt" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/central) -"aWu" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/central) -"aWv" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aWw" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aWx" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/security/detectives_office) -"aWy" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aWz" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Power Monitoring"; req_access_txt = "10"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/central) -"aWA" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/central) -"aWB" = (/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"aWC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Defendent's Chair"; req_one_access_txt = "63"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aWD" = (/obj/structure/window/reinforced/spawner/east,/obj/item/cigbutt,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/router/public) -"aWE" = (/obj/structure/sign/warning{name = "\improper WARNING: MOVING MACHINERY"},/turf/closed/wall/r_wall,/area/janitor) -"aWF" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/janitor) -"aWG" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/clothing/shoes/magboots,/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) -"aWH" = (/obj/machinery/disposal/bin{name = "Corpse Delivery"},/obj/machinery/light,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/delivery/red,/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"aWI" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) -"aWJ" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"aWK" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light_switch{pixel_y = 24},/obj/item/storage/box/lights/mixed,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aWL" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor/auto{dir = 1; id = "public"},/turf/open/floor/plating,/area/router/public) -"aWM" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aWN" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/conveyor/auto{id = "public"},/turf/open/floor/plating,/area/router/public) -"aWO" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/ai_monitored/storage/eva) -"aWP" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) -"aWQ" = (/obj/structure/closet/crate/rcd,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) -"aWR" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = 32},/turf/open/space/basic,/area/space/nearstation) -"aWS" = (/obj/structure/table,/obj/item/storage/box/flashes{pixel_x = 8},/obj/item/storage/box/handcuffs{pixel_x = -8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/carpet/red,/area/security/brig) -"aWT" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/window/reinforced/spawner/west,/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/router/public"; dir = 4; name = "Public Router APC"; pixel_x = 24},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/router/public) -"aWU" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) -"aWV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) -"aWW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/central) -"aWX" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/medical"; dir = 8; name = "Medical Booth APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aWY" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{frequency = 1359; name = "Station Intercom (Security)"; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aWZ" = (/turf/closed/wall/r_wall,/area/ai_monitored/nuke_storage) -"aXa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/central) -"aXb" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/central) -"aXc" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aXd" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/central) -"aXe" = (/obj/machinery/bookbinder,/turf/open/floor/wood,/area/library) -"aXf" = (/obj/machinery/photocopier,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/item/paper/fluff/cogstation/eva,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"aXg" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aXh" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 6},/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) -"aXi" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aXj" = (/obj/structure/transit_tube/station/reverse,/obj/effect/turf_decal/stripes/end{dir = 4},/obj/machinery/camera{c_tag = "Transit Tube Access"; pixel_x = 22},/obj/structure/transit_tube_pod{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/bridge) -"aXk" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Port Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aXl" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Port Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aXm" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/closed/wall/r_wall,/area/tcommsat/computer) -"aXn" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aXo" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aXp" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/reagent_dispensers/foamtank,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"aXq" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aXr" = (/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aXs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plating,/area/tcommsat/computer) -"aXt" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/securearea,/turf/open/floor/plating,/area/gateway) -"aXu" = (/turf/closed/wall,/area/security/courtroom/jury) -"aXv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Bar"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"aXw" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/kirbyplants{icon_state = "plant-08"},/turf/open/floor/plasteel/dark/side,/area/security/courtroom) -"aXx" = (/obj/structure/grille,/turf/closed/wall/r_wall,/area/engine/atmos) -"aXy" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva) -"aXz" = (/obj/structure/tank_dispenser/oxygen,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) -"aXA" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/security/courtroom/jury) -"aXB" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/courtroom) -"aXC" = (/obj/machinery/computer/bank_machine,/obj/effect/turf_decal/bot_white,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aXD" = (/obj/effect/turf_decal/bot_white/right,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/structure/closet/crate/silvercrate,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aXE" = (/obj/effect/turf_decal/bot_white,/obj/structure/closet/crate/goldcrate,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aXF" = (/obj/machinery/atmospherics/components/binary/valve/digital{name = "gas to hot loop"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) -"aXG" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark/side,/area/security/courtroom) -"aXH" = (/obj/structure/sign/warning/securearea,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"aXI" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aXJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aXK" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aXL" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/item/paper/fluff/jobs/security/beepsky_mom,/turf/open/floor/plating,/area/maintenance/department/security) -"aXM" = (/turf/closed/wall,/area/maintenance/department/security) -"aXN" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva) -"aXO" = (/obj/structure/chair,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/security/brig) -"aXP" = (/obj/machinery/door/airlock/maintenance{name = "Pool Maintenance"; req_one_access_txt = "12"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool) -"aXQ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/medical{name = "Medical Booth"}) -"aXR" = (/turf/closed/wall,/area/security/courtroom) -"aXS" = (/obj/structure/chair/comfy/brown{buildstackamount = 0; dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/royalblue,/area/bridge) -"aXT" = (/obj/structure/chair/comfy/brown{buildstackamount = 0; dir = 1},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge) -"aXU" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) -"aXV" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/assembly/timer{pixel_x = 6; pixel_y = -2},/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random{pixel_x = -2; pixel_y = -2},/obj/item/stack/cable_coil/random{pixel_x = 2; pixel_y = 2},/obj/item/multitool,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) -"aXW" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"aXX" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva) -"aXY" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plating,/area/maintenance/department/eva) -"aXZ" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/department/eva) -"aYa" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/tcommsat/computer) -"aYb" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aYc" = (/obj/effect/landmark/start/assistant,/turf/open/floor/wood,/area/library) -"aYd" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/maintenance/department/eva) -"aYe" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aYf" = (/obj/structure/table,/obj/machinery/cell_charger,/turf/open/floor/plasteel/white,/area/gateway) -"aYg" = (/obj/effect/turf_decal/bot_white/right,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aYh" = (/obj/structure/table,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/radio/off,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/bridge) -"aYi" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aYj" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aYk" = (/turf/open/floor/circuit/green,/area/ai_monitored/nuke_storage) -"aYl" = (/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aYm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aYn" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/storage/box/smart_metal_foam,/obj/item/wrench,/obj/item/radio/off,/obj/item/radio/off,/obj/item/radio/off,/obj/item/assembly/prox_sensor,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aYo" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/junction/yjunction{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Security"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"aYp" = (/obj/structure/fans/tiny/invisible,/turf/open/space/basic,/area/space) -"aYq" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security) -"aYr" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "1"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security) -"aYs" = (/obj/structure/rack,/obj/item/tank/jetpack/carbondioxide,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aYt" = (/turf/open/floor/plating,/area/maintenance/department/security) -"aYu" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/holopad,/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) -"aYv" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/analyzer,/obj/item/storage/toolbox/electrical,/obj/item/gps,/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) -"aYw" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aYx" = (/obj/machinery/portable_atmospherics/canister/air,/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plating,/area/maintenance/department/eva) -"aYy" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/item/kirbyplants{icon_state = "plant-22"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/side,/area/bridge) -"aYz" = (/obj/effect/turf_decal/bot_white,/obj/effect/landmark/start/ai/secondary,/obj/machinery/camera{c_tag = "Vault"; dir = 4; network = list("vault")},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aYA" = (/obj/machinery/nuclearbomb/selfdestruct,/obj/effect/turf_decal/box/white,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aYB" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/courtroom) -"aYC" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/security/detectives_office"; dir = 1; name = "Detective's Office APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/starboard/central) -"aYD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aYE" = (/obj/structure/closet/crate/trashcart,/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/junction,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aYF" = (/obj/structure/table/wood,/obj/item/storage/box/evidence,/obj/item/hand_labeler,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"aYG" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light,/obj/structure/disposalpipe/junction/flip{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"aYH" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aYI" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/photocopier,/obj/structure/extinguisher_cabinet{pixel_y = -32},/obj/item/paper/fluff/cogstation/secsolars,/turf/open/floor/plasteel,/area/security/main) -"aYJ" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/courtroom) -"aYK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Civilian Wing Hallway"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"aYL" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"aYM" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aYN" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) -"aYO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/courtroom) -"aYP" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aYQ" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"aYR" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) -"aYS" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/security/brig) -"aYT" = (/turf/closed/wall/r_wall,/area/security/checkpoint/customs) -"aYU" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation) -"aYV" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"aYW" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/northright{name = "Customs Desk"; req_access_txt = "57"},/obj/machinery/door/poddoor/shutters/preopen{id = "HoPFore"; name = "HoP Fore Desk Shutters"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"aYX" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/flashlight/lamp,/obj/structure/window/reinforced/spawner/north,/obj/machinery/door/poddoor/shutters/preopen{id = "HoPFore"; name = "HoP Fore Desk Shutters"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"aYY" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Port Central Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/security/courtroom) -"aYZ" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) -"aZa" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aZb" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/eva) -"aZc" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aZd" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "E.V.A. Maintenance"; req_access_txt = "18"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/ai_monitored/storage/eva) -"aZe" = (/obj/structure/sign/warning/biohazard{pixel_y = 32},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/department/chapel) -"aZf" = (/obj/effect/turf_decal/bot_white/left,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aZg" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"aZh" = (/obj/structure/closet/crate,/obj/machinery/light,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/window/reinforced/spawner/east,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/router/public) -"aZi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/office) -"aZj" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/caution{pixel_x = 6; pixel_y = 3},/obj/item/caution{pixel_x = 6; pixel_y = 3},/obj/item/caution{pixel_x = 6; pixel_y = 3},/obj/item/caution{pixel_x = 6; pixel_y = 3},/obj/item/extinguisher{pixel_x = -4; pixel_y = 4},/obj/item/extinguisher{pixel_x = -4; pixel_y = 4},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aZk" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/mass_driver{id = "public_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/public) -"aZl" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/window/reinforced/spawner/west,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/router/public) -"aZm" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) -"aZn" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera/motion{c_tag = "EVA"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) -"aZo" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/eva) -"aZp" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation) -"aZq" = (/obj/structure/chair{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/bridge) -"aZr" = (/obj/structure/filingcabinet,/obj/item/folder/documents,/obj/effect/turf_decal/bot_white,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aZs" = (/obj/structure/safe,/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/lazarus_injector,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/item/stack/spacecash/c1000,/obj/effect/turf_decal/bot_white/left,/obj/item/stack/sheet/mineral/diamond,/obj/item/clothing/under/costume/soviet,/obj/item/clothing/suit/armor/vest/russian_coat,/obj/item/clothing/head/helmet/rus_helmet,/obj/machinery/light,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aZt" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"aZu" = (/obj/machinery/blackbox_recorder,/obj/effect/turf_decal/bot_white,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"aZv" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"aZw" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 8},/obj/item/flashlight,/obj/item/flashlight,/obj/item/weldingtool,/obj/item/flashlight,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aZx" = (/obj/machinery/space_heater,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) -"aZy" = (/turf/closed/wall,/area/lawoffice) -"aZz" = (/obj/structure/lattice,/obj/machinery/camera{c_tag = "Routing Depot - Fore Exterior"; dir = 4},/turf/open/space/basic,/area/maintenance/department/eva) -"aZA" = (/obj/machinery/computer/card{dir = 8},/obj/item/paper/guides/cogstation/job_changes,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"aZB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"aZC" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/paper_bin,/obj/item/pen,/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel/dark,/area/lawoffice) -"aZD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Chapel Maintenance APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/department/chapel) -"aZE" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/hallway/primary/central"; dir = 8; name = "Central Primary Hallway APC"; pixel_x = -26},/turf/open/floor/plating,/area/maintenance/port/central) -"aZF" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aZG" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = 32},/turf/open/space/basic,/area/space/nearstation) -"aZH" = (/obj/structure/disposalpipe/junction,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aZI" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/door/window/northleft{name = "Law Office Counter"; req_access_txt = "38"},/turf/open/floor/plasteel/dark,/area/lawoffice) -"aZJ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"aZK" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/storage/toolbox/electrical,/obj/item/weldingtool,/obj/item/multitool{pixel_x = -6; pixel_y = -2},/obj/item/assembly/signaler{pixel_x = 6; pixel_y = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/storage/tools) -"aZL" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/sign/poster/official/cohiba_robusto_ad{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"aZM" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet,/area/security/courtroom) -"aZN" = (/obj/machinery/computer/station_alert{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/lawoffice) -"aZO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security) -"aZP" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/aiModule/reset/purge{pixel_y = 6},/obj/item/aiModule/reset{pixel_x = -2; pixel_y = 4},/obj/item/aiModule/core/full/custom{pixel_x = -4},/obj/machinery/status_display{pixel_x = 32},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"aZQ" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/plasteel{pixel_x = 3; pixel_y = -3},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"aZR" = (/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva) -"aZS" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva) -"aZT" = (/obj/structure/closet/secure_closet/hos,/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/storage/box/deputy,/obj/item/paper/guides/cogstation/letter_hos,/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) -"aZU" = (/obj/structure/chair,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) -"aZV" = (/obj/structure/chair,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) -"aZW" = (/obj/structure/chair,/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) -"aZX" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) -"aZY" = (/obj/machinery/airalarm{pixel_y = 24},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) -"aZZ" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva) -"baa" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) -"bab" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/space/nearstation) -"bac" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/stack/rods/fifty,/obj/item/stack/rods/fifty,/obj/item/storage/toolbox/emergency,/obj/item/stack/sheet/rglass,/obj/item/stack/sheet/rglass,/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) -"bad" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/white/full,/turf/open/floor/plasteel/dark,/area/lawoffice) -"bae" = (/turf/open/floor/plasteel/dark,/area/lawoffice) -"baf" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/camera{c_tag = "Central Plaza - Starboard"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bag" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/storage/belt/utility,/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) -"bah" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plating,/area/lawoffice) -"bai" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) -"baj" = (/obj/structure/table/glass,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -6; pixel_y = 2},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = 6; pixel_y = 3},/obj/item/reagent_containers/glass/beaker/waterbottle,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) -"bak" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/lawoffice) -"bal" = (/obj/structure/lattice,/obj/structure/grille,/turf/closed/wall/r_wall,/area/space/nearstation) -"bam" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/turf/open/space/basic,/area/space/nearstation) -"ban" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"bao" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) -"bap" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/gloves/color/black,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/obj/item/clothing/suit/hazardvest,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"baq" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bar" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/turf/open/floor/carpet,/area/crew_quarters/bar) -"bas" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/bar) -"bat" = (/obj/structure/chair/stool/bar,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/carpet,/area/crew_quarters/bar) -"bau" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/junction/flip{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) -"bav" = (/obj/structure/chair/sofa/right,/obj/machinery/firealarm{pixel_y = 26},/obj/item/clipboard,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) -"baw" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/lawoffice) -"bax" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/library) -"bay" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/wood,/area/library) -"baz" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/book/manual/wiki/security_space_law,/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel/dark,/area/lawoffice) -"baA" = (/obj/structure/filingcabinet/chestdrawer,/obj/item/folder/blue,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"baB" = (/obj/structure/rack,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/department/security) -"baC" = (/obj/machinery/vending/cart,/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"baD" = (/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"baE" = (/obj/structure/bookcase/random/reference,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/library) -"baF" = (/obj/structure/chair/office/dark{dir = 1},/obj/effect/landmark/start/head_of_personnel,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"baG" = (/obj/machinery/computer/secure_data{dir = 8},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"baH" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/crowbar,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/security) -"baI" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"baJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"baK" = (/obj/structure/table/reinforced,/obj/machinery/light,/obj/item/kitchen/fork,/obj/item/reagent_containers/food/snacks/pastatomato,/obj/machinery/newscaster/security_unit{pixel_y = -30},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) -"baL" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"baM" = (/obj/structure/rack,/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/crowbar/large,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/department/security) -"baN" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"baO" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"baP" = (/obj/structure/closet/secure_closet/captains,/obj/item/reagent_containers/food/drinks/flask/gold,/obj/item/clothing/under/rank/captain/suit,/obj/item/clothing/under/rank/captain/suit/skirt,/obj/machinery/airalarm{pixel_y = 24},/obj/item/clothing/head/centhat{name = "\improper green captain's hat"},/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain) -"baQ" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"baR" = (/obj/structure/chair/sofa/left,/obj/effect/landmark/start/lawyer,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) -"baS" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) -"baT" = (/obj/machinery/iv_drip,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"baU" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"baV" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) -"baW" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/aiModule/core/full/asimov{pixel_x = 2; pixel_y = 10},/obj/effect/spawner/lootdrop/aimodule_neutral{pixel_x = 1; pixel_y = 8},/obj/effect/spawner/lootdrop/aimodule_harmless{pixel_y = 6},/obj/item/aiModule/core/freeformcore{pixel_x = -1; pixel_y = 2},/obj/item/aiModule/supplied/freeform{pixel_x = -2},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"baX" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/displaycase,/turf/open/floor/wood,/area/library) -"baY" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) -"baZ" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Port Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bba" = (/obj/effect/landmark/start/assistant,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/circuit/green,/area/crew_quarters/cryopod) -"bbb" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/carpet/royalblue,/area/bridge) -"bbc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/royalblue,/area/bridge) -"bbd" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/bridge) -"bbe" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/bridge) -"bbf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/heads/hop) -"bbg" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/courtroom) -"bbh" = (/turf/closed/wall,/area/hallway/primary/aft) -"bbi" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"bbj" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/teleporter) -"bbk" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/requests_console{announcementConsole = 1; department = "Telecomms Admin"; departmentType = 5; name = "Telecomms RC"; pixel_y = 30},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"bbl" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bbm" = (/obj/structure/chair/stool,/obj/effect/landmark/start/lawyer,/turf/open/floor/plasteel/dark,/area/lawoffice) -"bbn" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/closet/emcloset,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bbo" = (/obj/structure/closet/crate,/obj/item/book/manual/wiki/security_space_law,/obj/item/book/manual/wiki/security_space_law,/turf/open/floor/plasteel/dark,/area/lawoffice) -"bbp" = (/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/carpet,/area/security/courtroom) -"bbq" = (/obj/effect/landmark/start/librarian,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) -"bbr" = (/obj/structure/filingcabinet/employment,/turf/open/floor/plasteel/dark,/area/lawoffice) -"bbs" = (/obj/structure/table/wood,/obj/item/camera,/obj/item/pen/red,/turf/open/floor/plasteel/dark,/area/lawoffice) -"bbt" = (/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bbu" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plating,/area/space/nearstation) -"bbv" = (/turf/open/space,/area/space) -"bbw" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"bbx" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bby" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/office) -"bbz" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bbA" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bbB" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bbC" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/effect/landmark/start/medical_doctor,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bbD" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/bridge) -"bbE" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bbF" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bbG" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/bridge) -"bbH" = (/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"bbI" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bbJ" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bbK" = (/obj/machinery/light,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bbL" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bbM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"bbN" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bbO" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bbP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "HoP Office Maintenance"; req_access_txt = "57"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/security/checkpoint/customs) -"bbQ" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/fitness/cogpool"; dir = 4; name = "Pool APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/central) -"bbR" = (/obj/structure/closet/crate/hydroponics,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/reagent_containers/food/snacks/grown/wheat,/obj/item/reagent_containers/food/snacks/grown/corn,/obj/item/reagent_containers/food/snacks/grown/cocoapod,/obj/item/reagent_containers/food/snacks/grown/chili,/obj/item/reagent_containers/food/snacks/grown/soybeans,/obj/item/reagent_containers/food/snacks/grown/tomato,/obj/item/reagent_containers/food/snacks/grown/cherries,/obj/structure/sign/poster/contraband/have_a_puff{pixel_y = -32},/turf/open/floor/plasteel,/area/hydroponics) -"bbS" = (/obj/machinery/space_heater,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/gateway) -"bbT" = (/turf/closed/wall/r_wall,/area/quartermaster/sorting) -"bbU" = (/turf/open/floor/plating,/area/quartermaster/sorting) -"bbV" = (/turf/closed/wall/r_wall,/area/quartermaster/warehouse) -"bbW" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/noticeboard{dir = 4; pixel_x = -27},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bbX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bbY" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bbZ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bca" = (/turf/open/floor/engine/vacuum,/area/engine/atmos) -"bcb" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bcc" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/space/nearstation) -"bcd" = (/obj/item/kirbyplants{icon_state = "plant-14"},/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"bce" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 1; id = "public"},/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "cargoblock"; name = "Public Router"},/turf/open/floor/plating,/area/router/public) -"bcf" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bcg" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "cargoblock"; name = "Public Router"},/turf/open/floor/plating,/area/router/public) -"bch" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"bci" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"bcj" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting) -"bck" = (/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"bcl" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bcm" = (/obj/machinery/computer/cargo/request,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"bcn" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bco" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/morgue{name = "Confession Booth (Chaplain)"; req_access_txt = "22"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) -"bcp" = (/obj/machinery/libraryscanner,/obj/machinery/light,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) -"bcq" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"bcr" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) -"bcs" = (/obj/machinery/pdapainter,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"bct" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) -"bcu" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/camera{c_tag = "Aft Maintenance - Air Hookup"},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"bcv" = (/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"bcw" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/mixing) -"bcx" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/head_of_personnel,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"bcy" = (/turf/closed/wall/r_wall,/area/science/mixing) -"bcz" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/plasteel/dark,/area/lawoffice) -"bcA" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"bcB" = (/obj/structure/reagent_dispensers/watertank,/obj/item/extinguisher,/turf/open/floor/plasteel,/area/gateway) -"bcC" = (/obj/machinery/power/apc{name = "Research Division Storage APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/gateway) -"bcD" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"bcE" = (/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"bcF" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"bcG" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 5},/turf/open/space/basic,/area/space/nearstation) -"bcH" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/side,/area/security/courtroom) -"bcI" = (/turf/closed/wall/r_wall,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"bcJ" = (/obj/machinery/button/door{id = "HoPAft"; name = "Aft Shutters"; pixel_x = -24; pixel_y = -24; req_access_txt = "57"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"bcK" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/public/glass{name = "Cryogenics"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/circuit/green,/area/crew_quarters/cryopod) -"bcL" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) -"bcM" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"bcN" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=bridge2"; location = "court"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/security/courtroom) -"bcO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/space/nearstation) -"bcP" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) -"bcQ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom) -"bcR" = (/turf/closed/wall,/area/hallway/primary/central) -"bcS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Courtroom"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/security/courtroom) -"bcT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/aft) -"bcU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Jury Room Maintainance"; req_one_access_txt = "12"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/security/courtroom/jury) -"bcV" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/sorting) -"bcW" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/requests_console{department = "Bar"; departmentType = 2; name = "Bar RC"; pixel_y = -30},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bcX" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/hallway/primary/central) -"bcY" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer) -"bcZ" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer) -"bda" = (/obj/structure/table,/obj/item/hand_tele,/obj/machinery/camera{c_tag = "Teleporter Room"; dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/teleporter) -"bdb" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/central) -"bdc" = (/turf/open/floor/engine/vacuum,/area/science/mixing) -"bdd" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/camera{c_tag = "Pool"; dir = 1},/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/toy/poolnoodle/red,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"bde" = (/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/mixing) -"bdf" = (/turf/open/floor/plasteel,/area/science/mixing) -"bdg" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/central) -"bdh" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/toy/poolnoodle/blue,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"bdi" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer) -"bdj" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/central) -"bdk" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"bdl" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/closet/athletic_mixed,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/toy/poolnoodle/yellow,/turf/open/floor/plasteel/white,/area/crew_quarters/fitness/cogpool) -"bdm" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) -"bdn" = (/obj/structure/chair{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"bdo" = (/obj/structure/sign/warning/biohazard{pixel_x = -32},/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 17},/turf/open/floor/plasteel/dark,/area/chapel/office) -"bdp" = (/obj/structure/chair/stool,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) -"bdq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) -"bdr" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/central) -"bds" = (/obj/structure/chair/stool,/obj/effect/landmark/start/chaplain,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) -"bdt" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bdu" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/hallway/primary/aft) -"bdv" = (/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bdw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/spawner/structure/window/reinforced/tinted,/turf/open/floor/plating,/area/chapel/office) -"bdx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom) -"bdy" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark/side{dir = 1},/area/hallway/primary/central) -"bdz" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"bdA" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel) -"bdB" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb,/obj/item/toy/eightball,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"bdC" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bdD" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bdE" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 8; icon_state = "intact"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge) -"bdF" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bdG" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bdH" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bdI" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bdJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Telecommunications Control Room Maintenance"; req_access_txt = "61"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/bridge) -"bdK" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/office) -"bdL" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"bdM" = (/turf/open/floor/plasteel,/area/quartermaster/office) -"bdN" = (/obj/machinery/vending/snack/random,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bdO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Pool External Maintenance"; req_access_txt = "12"},/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool) -"bdP" = (/turf/closed/wall/mineral/wood,/area/crew_quarters/fitness/cogpool) -"bdQ" = (/obj/machinery/door/airlock/command{name = "Bridge"; req_access_txt = "19"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"bdR" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 10},/turf/open/space/basic,/area/space/nearstation) -"bdS" = (/obj/machinery/light,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/bridge) -"bdT" = (/obj/effect/turf_decal/bot,/obj/structure/table/reinforced,/obj/item/storage/toolbox/emergency,/obj/item/hand_labeler,/obj/item/hand_labeler,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bdU" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bdV" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office) -"bdW" = (/obj/structure/mineral_door/woodrustic{name = "Sauna"},/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool) -"bdX" = (/obj/structure/table/wood,/obj/item/storage/box/donkpockets,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"bdY" = (/obj/structure/sign/warning/fire,/turf/closed/wall/mineral/wood,/area/crew_quarters/fitness/cogpool) -"bdZ" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/quartermaster/sorting) -"bea" = (/obj/structure/disposalpipe/junction,/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/poster/official/report_crimes{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"beb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/courtroom/jury) -"bec" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/science/mixing) -"bed" = (/obj/machinery/suit_storage_unit/rd,/turf/open/floor/plasteel,/area/science/mixing) -"bee" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/science/mixing) -"bef" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plating/airless,/area/science/test_area) -"beg" = (/obj/effect/turf_decal/bot_white,/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"beh" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating/airless,/area/science/test_area) -"bei" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"bej" = (/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bek" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/mixing) -"bel" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bem" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "hot loop to generator"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"ben" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"beo" = (/turf/open/floor/plasteel/white,/area/gateway) -"bep" = (/obj/structure/table/wood,/obj/item/tape,/obj/item/taperecorder{pixel_x = -4},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/hor"; dir = 8; name = "Research Director's Office APC"; pixel_x = -24},/obj/item/reagent_containers/food/snacks/muffin/berry,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"beq" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "generator to cold loop"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"ber" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bes" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/closed/wall/r_wall,/area/space/nearstation) -"bet" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) -"beu" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) -"bev" = (/obj/structure/cable{icon_state = "4-8"},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"bew" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/port/central) -"bex" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom) -"bey" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/closed/wall/r_wall/rust,/area/space/nearstation) -"bez" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/office) -"beA" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/chapel/main) -"beB" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/quartermaster/office) -"beC" = (/obj/structure/rack,/obj/item/storage/toolbox/mechanical,/obj/item/radio/off,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/tcommsat/computer) -"beD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/closed/wall/r_wall,/area/space/nearstation) -"beE" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/fans/tiny,/obj/structure/plasticflaps,/turf/open/floor/plating,/area/maintenance/disposal) -"beF" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"beG" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/lawyer,/obj/structure/chair/stool,/turf/open/floor/plasteel/dark,/area/lawoffice) -"beH" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"beI" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"beJ" = (/turf/open/floor/plasteel,/area/hallway/primary/central) -"beK" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer) -"beL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom) -"beM" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"beN" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/hallway/primary/central) -"beO" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) -"beP" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) -"beQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/security/detectives_office) -"beR" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hallway/primary/central) -"beS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) -"beT" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"beU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"beV" = (/obj/machinery/button/door{id = "executionspaceblast"; name = "Vent to Space"; pixel_x = 25; pixel_y = -5; req_access_txt = "7"},/obj/machinery/button/ignition{id = "executionburn"; pixel_x = 24; pixel_y = 5},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/maintenance/port/fore) -"beW" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"beX" = (/obj/structure/closet/crate,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"beY" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/noticeboard{pixel_y = 28},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"beZ" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bfa" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/port/fore) -"bfb" = (/obj/machinery/computer/card/minor/qm,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/keycard_auth{pixel_x = -24},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bfc" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/coffee,/turf/open/floor/plasteel,/area/quartermaster/office) -"bfd" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bfe" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/quartermaster/office) -"bff" = (/turf/closed/wall/r_wall,/area/quartermaster/qm) -"bfg" = (/obj/structure/closet,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) -"bfh" = (/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"}) -"bfi" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bfj" = (/mob/living/simple_animal/butterfly,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) -"bfk" = (/mob/living/simple_animal/kiwi,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) -"bfl" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bfm" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security) -"bfn" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "cold loop to space"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"bfo" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/science/mixing) -"bfp" = (/obj/machinery/atmospherics/components/unary/vent_scrubber{dir = 4},/obj/machinery/sparker/toxmix{pixel_x = 25},/turf/open/floor/engine/vacuum,/area/science/mixing) -"bfq" = (/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 5; id = "laborcamp_home"; name = "fore bay 1"; roundstart_template = /datum/map_template/shuttle/labour/cog; width = 9},/turf/open/space/basic,/area/space) -"bfr" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel/white,/area/science/circuit) -"bfs" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "QM #1"},/mob/living/simple_animal/bot/mulebot{beacon_freq = 1400; home_destination = "QM #1"; suffix = "#1"},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bft" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side,/area/hallway/primary/central) -"bfu" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/dark/side{dir = 8},/area/gateway) -"bfv" = (/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool) -"bfw" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/turf/open/floor/plasteel,/area/security/brig) -"bfx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/gateway) -"bfy" = (/obj/machinery/light/small{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/components/unary/thermomachine/heater/on,/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool) -"bfz" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/chapel/office) -"bfA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Bridge Access"; req_access_txt = "19"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/bridge) -"bfB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Chapel Morgue"; req_access_txt = "22;27"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/chapel/office) -"bfC" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/qm) -"bfD" = (/obj/structure/grille,/turf/open/floor/plating,/area/quartermaster/sorting) -"bfE" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 5; id = "mail"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/quartermaster/sorting) -"bfF" = (/obj/machinery/space_heater,/obj/structure/sign/poster/official/no_erp{pixel_y = 32},/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool) -"bfG" = (/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/turf/open/floor/plating,/area/quartermaster/warehouse) -"bfH" = (/obj/machinery/light{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/button/crematorium{id = "foo"; pixel_x = 8; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/chapel/office) -"bfI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/fifteen_k{areastring = "/area/engine/storage_shared"; dir = 1; name = "Electrical Substation APC"; pixel_y = 26},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"}) -"bfJ" = (/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool) -"bfK" = (/obj/structure/table/wood,/obj/item/storage/fancy/candle_box{pixel_x = -11; pixel_y = 5},/obj/item/reagent_containers/food/drinks/bottle/holywater,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/paper/fluff/cogstation/letter_chap{pixel_x = 10; pixel_y = 2},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office) -"bfL" = (/obj/structure/table/wood,/obj/item/modular_computer/laptop/preset/civilian,/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office) -"bfM" = (/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/structure/bedsheetbin/towel,/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool) -"bfN" = (/obj/effect/decal/cleanable/cobweb,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bfO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Jazz Lounge"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) -"bfP" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"bfQ" = (/obj/machinery/light/small,/obj/item/candle,/obj/item/trash/candle,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/office) -"bfR" = (/obj/effect/turf_decal/loading_area{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) -"bfS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"bfT" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/chapel/office) -"bfU" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/turf/open/floor/plating,/area/quartermaster/sorting) -"bfV" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/main) -"bfW" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"bfX" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/structure/cable{icon_state = "2-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/department/chapel) -"bfY" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=4"; dir = 4; freq = 1400; location = "QM #2"},/mob/living/simple_animal/bot/mulebot{home_destination = "QM #2"; suffix = "#2"},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bfZ" = (/obj/effect/turf_decal/delivery,/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bga" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bgb" = (/obj/structure/disposalpipe/sorting/mail{sortType = 30},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"bgc" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/sign/directions/command{dir = 8; pixel_x = -32; pixel_y = -32},/turf/open/floor/plasteel/dark/corner{dir = 8},/area/hallway/primary/central) -"bgd" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central) -"bge" = (/turf/closed/wall/r_wall,/area/storage/primary) -"bgf" = (/turf/closed/wall,/area/quartermaster/warehouse) -"bgg" = (/obj/machinery/light{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bgh" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 6},/turf/open/space/basic,/area/space/nearstation) -"bgi" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space/basic,/area/space) -"bgj" = (/obj/structure/table,/obj/item/weldingtool/mini,/obj/item/light/tube,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plating,/area/maintenance/department/chapel) -"bgk" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "mail"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/quartermaster/sorting) -"bgl" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/clothing/gloves/color/yellow,/obj/item/multitool,/turf/open/floor/plasteel,/area/storage/primary) -"bgm" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) -"bgn" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel,/area/storage/primary) -"bgo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/chapel/main) -"bgp" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"bgq" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"bgr" = (/obj/structure/table/wood,/obj/item/clothing/head/helmet/skull,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"bgs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/office) -"bgt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"bgu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgv" = (/obj/effect/landmark/xeno_spawn,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bgw" = (/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"bgx" = (/obj/structure/table/glass,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgy" = (/obj/structure/closet,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/security/courtroom/jury"; dir = 4; name = "Jury Room APC"; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/security/courtroom/jury) -"bgz" = (/obj/structure/chair,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgA" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgB" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/lightreplacer,/obj/item/lightreplacer,/obj/item/stack/rods/fifty,/obj/item/stack/rods/fifty,/turf/open/floor/plasteel,/area/storage/primary) -"bgC" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/light{dir = 1; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/science/mixing) -"bgD" = (/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/item/target,/obj/structure/window/reinforced,/turf/open/floor/plating/airless,/area/science/test_area) -"bgE" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Port Central Maintenance"; req_one_access_txt = "12"},/turf/open/floor/plating,/area/hallway/primary/central) -"bgG" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central) -"bgH" = (/obj/machinery/pipedispenser,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bgI" = (/obj/machinery/pipedispenser/disposal,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bgJ" = (/obj/machinery/portable_atmospherics/pump,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool) -"bgK" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bgL" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bgM" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"bgN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Port Central Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/hallway/primary/central) -"bgO" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/delivery,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/machinery/light{dir = 8},/obj/item/wrench,/obj/item/pipe_dispenser,/mob/living/simple_animal/sloth/paperwork,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bgP" = (/obj/item/analyzer,/obj/item/caution,/turf/open/floor/plating,/area/maintenance/disposal) -"bgQ" = (/turf/closed/wall,/area/quartermaster/qm) -"bgR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/meter,/turf/closed/wall/mineral/wood,/area/crew_quarters/fitness/cogpool) -"bgS" = (/obj/machinery/computer/bounty,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bgT" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/storage) -"bgU" = (/obj/machinery/computer/cargo,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bgV" = (/turf/closed/wall/r_wall,/area/quartermaster/storage) -"bgW" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/hor) -"bgX" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/crew_quarters/heads/hor) -"bgY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/status_display,/turf/closed/wall/r_wall,/area/hallway/primary/central) -"bgZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"bha" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool) -"bhb" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"bhc" = (/obj/structure/chair/stool,/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool) -"bhd" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/office) -"bhe" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel) -"bhf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/quartermaster/office) -"bhg" = (/obj/structure/chair/stool,/obj/machinery/camera{c_tag = "Pool - Sauna"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 8},/turf/open/floor/wood,/area/crew_quarters/fitness/cogpool) -"bhh" = (/obj/machinery/status_display,/turf/closed/wall/r_wall,/area/security/courtroom) -"bhi" = (/obj/effect/decal/cleanable/dirt,/obj/item/clothing/head/cone,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel) -"bhj" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bhk" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bhl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/closed/wall/mineral/wood,/area/crew_quarters/fitness/cogpool) -"bhm" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"bhn" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"bho" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/turf/open/floor/plasteel,/area/storage/primary) -"bhp" = (/obj/machinery/light/small{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bhq" = (/obj/structure/chair/sofa/right,/obj/item/instrument/recorder,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) -"bhr" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bhs" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"bht" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/obj/structure/window/reinforced/spawner,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) -"bhu" = (/obj/effect/turf_decal/bot,/obj/machinery/recharge_station,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bhv" = (/obj/structure/chair/sofa/left,/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) -"bhw" = (/obj/effect/decal/cleanable/dirt,/obj/structure/sign/poster/contraband/cc64k_ad{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel) -"bhx" = (/obj/machinery/vending/coffee,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/wood,/area/medical/medbay/lobby) -"bhy" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/conveyor/auto{id = "sec"},/obj/machinery/door/poddoor{name = "Security Router"},/turf/open/floor/plating,/area/router/sec) -"bhz" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom) -"bhA" = (/obj/item/stack/cable_coil/red,/obj/item/multitool,/obj/item/wrench,/obj/item/stack/sheet/metal/five{pixel_x = 6; pixel_y = -6},/obj/item/paper/fluff/cogstation/letter_arrd,/turf/open/floor/plating,/area/maintenance/disposal) -"bhB" = (/obj/structure/table/wood,/obj/item/stack/packageWrap,/obj/item/paper/fluff/cogstation/bsrb,/obj/item/paper/fluff/cogstation/survey{pixel_x = -4; pixel_y = 2},/turf/open/floor/carpet/royalblue,/area/bridge) -"bhC" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel) -"bhD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Chapel Air Hookup"; req_one_access_txt = "12;22"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) -"bhE" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) -"bhF" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel) -"bhG" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/department/chapel) -"bhH" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/department/chapel) -"bhI" = (/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"bhJ" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/turf/open/floor/plasteel,/area/engine/atmos) -"bhK" = (/turf/open/floor/plasteel,/area/quartermaster/storage) -"bhL" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock/maintenance_hatch{name = "Waste Disposal"; req_one_access_txt = "12;50"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) -"bhM" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/office) -"bhN" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/obj/item/kirbyplants/dead,/turf/open/floor/plasteel,/area/security/main) -"bhO" = (/obj/structure/chair/sofa/right,/obj/machinery/light_switch{pixel_y = 24},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) -"bhP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"bhQ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"bhR" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"bhS" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Port Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bhT" = (/obj/structure/sign/departments/engineering,/turf/closed/wall,/area/hallway/primary/aft) -"bhU" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/janitor) -"bhV" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen,/obj/item/pen/blue{pixel_x = 4; pixel_y = 4},/obj/item/pen/red{pixel_x = -4; pixel_y = -4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"bhW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom) -"bhX" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) -"bhY" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bhZ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"bia" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bib" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bic" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = -28},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bid" = (/obj/structure/chair/sofa/left,/mob/living/simple_animal/pet/cat/Proc,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) -"bie" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bif" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"big" = (/turf/closed/wall,/area/science/circuit) -"bih" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 1; id = "mail"},/turf/open/floor/plating,/area/quartermaster/sorting) -"bii" = (/obj/structure/table/glass,/obj/item/storage/box/matches,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bij" = (/obj/effect/turf_decal/stripes/end{dir = 8},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/quartermaster/storage) -"bik" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"bil" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/machinery/conveyor{dir = 6; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"bim" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/button/massdriver{id = "router_in"; name = "mass driver button (Router)"; pixel_x = 24; pixel_y = -8},/turf/open/floor/plating,/area/maintenance/disposal) -"bin" = (/obj/machinery/computer/mecha{dir = 4},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bio" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) -"bip" = (/obj/effect/landmark/start/quartermaster,/turf/open/floor/plasteel,/area/quartermaster/qm) -"biq" = (/obj/structure/closet/secure_closet/hop,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/item/clothing/under/rank/civilian/head_of_personnel/suit,/obj/item/clothing/under/rank/civilian/head_of_personnel/suit/skirt{name = "head of personnel's suitskirt"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) -"bir" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/quartermaster/office) -"bis" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/machinery/light,/turf/open/floor/plasteel,/area/quartermaster/office) -"bit" = (/obj/machinery/light,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"biu" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"biv" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/quartermaster/office) -"biw" = (/obj/machinery/computer/cargo{dir = 8},/obj/effect/turf_decal/bot,/obj/machinery/button/door{id = "QMLoadDoor"; layer = 4; name = "Cargo Loading Doors"; pixel_x = 24; pixel_y = 6},/obj/machinery/button/door{id = "QMUnloadDoor"; layer = 4; name = "Cargo Unloading Doors"; pixel_x = 24; pixel_y = -6},/obj/machinery/camera{c_tag = "Supply - Cargo Bay"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bix" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Courtroom"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/courtroom) -"biy" = (/obj/machinery/vending/clothing,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office) -"biz" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) -"biA" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) -"biB" = (/obj/structure/table/wood,/obj/machinery/computer/security/telescreen/rd,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) -"biC" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"biD" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) -"biE" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"biF" = (/obj/structure/cable{icon_state = "4-8"},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -28},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"biG" = (/obj/structure/displaycase/labcage,/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/camera{c_tag = "Research Director's Office - Starboard"; network = list("ss13","rd")},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) -"biH" = (/obj/machinery/light/small,/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"biI" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/item/kirbyplants{icon_state = "plant-20"; pixel_y = 3},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"biJ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"biK" = (/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/science/mixing) -"biL" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/closed/wall,/area/crew_quarters/heads/chief) -"biM" = (/obj/machinery/vending/assist,/obj/effect/turf_decal/bot,/obj/structure/sign/poster/official/foam_force_ad{pixel_x = 32},/turf/open/floor/plasteel,/area/quartermaster/office) -"biN" = (/obj/machinery/conveyor{dir = 4; id = "recycler"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal) -"biO" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) -"biP" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/gateway) -"biQ" = (/turf/closed/wall,/area/crew_quarters/heads/chief) -"biR" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "CEPrivacy"; name = "CE Privacy Shutters"},/turf/open/floor/plating,/area/crew_quarters/heads/chief) -"biS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) -"biT" = (/obj/machinery/pipedispenser,/turf/open/floor/plasteel,/area/science/mixing) -"biU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/aft) -"biV" = (/turf/closed/wall,/area/storage/primary) -"biW" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"biX" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"biY" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal) -"biZ" = (/turf/closed/wall/r_wall,/area/quartermaster/office) -"bja" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bjb" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/storage/toolbox/mechanical,/obj/item/wrench,/obj/item/t_scanner,/turf/open/floor/plasteel,/area/storage/primary) -"bjc" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stack/sheet/plasteel/twenty,/turf/open/floor/plasteel,/area/storage/primary) -"bjd" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bje" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bjf" = (/obj/machinery/pipedispenser/disposal/transit_tube,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bjg" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bjh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "E.V.A. Maintenance"; req_one_access_txt = "12"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/hallway/primary/central) -"bji" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bjj" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bjk" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/eva) -"bjl" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/r_wall,/area/quartermaster/office) -"bjm" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bjn" = (/turf/closed/wall/r_wall,/area/security/checkpoint/supply) -"bjo" = (/obj/machinery/rnd/production/techfab/department/cargo,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bjp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/eva) -"bjq" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/conveyor{id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"bjr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/quartermaster/storage) -"bjs" = (/obj/machinery/computer/robotics{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bjt" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bju" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/item/radio/intercom{frequency = 1359; name = "Station Intercom (Security)"; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"bjv" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/security/courtroom/jury) -"bjw" = (/obj/item/storage/secure/safe{pixel_x = 4; pixel_y = 32},/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/central) -"bjx" = (/obj/structure/table/optable,/obj/effect/turf_decal/bot,/obj/item/defibrillator/loaded,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bjy" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bjz" = (/obj/structure/grille/broken,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"bjA" = (/obj/machinery/camera{c_tag = "EVA Maintenace - Fore"; network = list("ss13","rd")},/turf/open/floor/plating,/area/maintenance/department/eva) -"bjB" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/turf/open/floor/plating,/area/security/brig) -"bjC" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Jury Room"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/courtroom/jury) -"bjD" = (/turf/closed/wall/r_wall,/area/security/courtroom/jury) -"bjE" = (/obj/structure/table,/obj/structure/extinguisher_cabinet{pixel_y = 29},/obj/item/cigbutt/cigarbutt{pixel_x = 5; pixel_y = -1},/obj/item/phone{pixel_x = -3; pixel_y = 3},/obj/machinery/camera{c_tag = "Atmospherics - Control Room"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/paper/guides/cogstation/letter_atmos,/turf/open/floor/plasteel/dark/corner{dir = 1},/area/engine/atmos) -"bjF" = (/obj/machinery/power/apc{areastring = "/area/maintenance/aft"; dir = 8; name = "Head of Personnel APC"; pixel_x = -24},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable,/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop) -"bjG" = (/obj/structure/rack,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bjH" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/department/eva) -"bjI" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bjJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"bjK" = (/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/turf/open/floor/plasteel,/area/storage/primary) -"bjL" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/tank/internals/air,/obj/item/flashlight,/obj/item/reagent_containers/spray/cleaner,/obj/machinery/camera{c_tag = "Pool Maintenance"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool) -"bjM" = (/obj/machinery/door/airlock/public/glass{name = "Atmospherics Storage"; req_one_access_txt = "24;31"},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bjN" = (/obj/machinery/vending/autodrobe,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office) -"bjO" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/item/instrument/piano_synth,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) -"bjP" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) -"bjQ" = (/obj/structure/chair/stool,/obj/effect/landmark/start/assistant/override,/turf/open/floor/plasteel,/area/quartermaster/office) -"bjR" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bjS" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/bot,/obj/structure/sign/poster/official/cohiba_robusto_ad{pixel_x = 32},/turf/open/floor/plasteel,/area/quartermaster/office) -"bjT" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"bjU" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bjV" = (/obj/structure/closet{name = "Evidence Closet 5"},/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/brig) -"bjW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bjX" = (/obj/structure/rack,/obj/machinery/button/door{id = "marketdoor"; pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bjY" = (/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) -"bjZ" = (/obj/structure/window/reinforced,/obj/machinery/shower{name = "emergency shower"; pixel_y = 12},/obj/effect/turf_decal/delivery,/obj/machinery/door/window/westright{name = "Emergency Shower"},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/storage/primary) -"bka" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) -"bkb" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 9; id = "mail"},/turf/open/floor/plating,/area/quartermaster/sorting) -"bkc" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light,/obj/machinery/conveyor_switch/oneway{id = "DeliveryConveyer"},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bkd" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 8; id = "mail"},/turf/open/floor/plating,/area/quartermaster/sorting) -"bke" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=sec1"; location = "bridge2"},/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bkf" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"bkg" = (/obj/structure/disposalpipe/segment,/obj/machinery/mineral/stacking_unit_console{machinedir = 2},/turf/closed/wall,/area/maintenance/disposal) -"bkh" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bki" = (/obj/machinery/light,/obj/structure/disposalpipe/segment,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"bkj" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/machinery/conveyor_switch/oneway{id = "mail"},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bkk" = (/obj/machinery/autolathe,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bkl" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/tank/internals/air,/obj/item/flashlight,/obj/item/storage/belt/utility,/obj/item/extinguisher,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bkm" = (/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Supply - Delivery Office Fore"; network = list("ss13","rd")},/obj/structure/closet/emcloset,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bkn" = (/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bko" = (/turf/open/floor/plasteel,/area/science/circuit) -"bkp" = (/obj/machinery/conveyor_switch/oneway{id = "QMLoad"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bkq" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/conveyor/inverted{dir = 9; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"bkr" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/door/poddoor{id = "QMLoadDoor"; name = "Cargo Loading Door"},/turf/open/floor/plating,/area/quartermaster/storage) -"bks" = (/obj/structure/plasticflaps,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/turf/open/floor/plating,/area/quartermaster/storage) -"bkt" = (/obj/effect/turf_decal/stripes/end{dir = 4},/obj/machinery/conveyor{dir = 4; id = "QMLoad"},/obj/machinery/door/poddoor{id = "QMLoadDoor"; name = "Cargo Loading Door"},/turf/open/floor/plating,/area/quartermaster/storage) -"bku" = (/obj/structure/closet,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bkv" = (/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) -"bkw" = (/obj/structure/bookcase/random/fiction,/obj/effect/spawner/lootdrop/gambling,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) -"bkx" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/hallway/primary/central) -"bky" = (/obj/structure/chair{dir = 4},/obj/effect/landmark/start/research_director,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) -"bkz" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"bkA" = (/obj/machinery/light_switch{pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Bridge - Starboard Quarter"; dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/bridge) -"bkB" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bkC" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain) -"bkD" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "CEPrivacy"; name = "CE Privacy Shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/crew_quarters/heads/chief) -"bkE" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/maintenance/disposal) -"bkF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/security) -"bkG" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/crate/engineering,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/item/rcl/pre_loaded,/obj/item/stock_parts/cell/high/plus,/obj/item/clothing/glasses/meson,/obj/item/cartridge/atmos,/obj/item/cartridge/engineering,/obj/item/cartridge/engineering,/obj/item/cartridge/engineering,/obj/machinery/camera{c_tag = "Chief Engineer's Office"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bkH" = (/obj/machinery/computer/atmos_control{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/checker,/area/engine/atmos) -"bkI" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/storage/primary) -"bkJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"bkK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/departments/security{pixel_x = -32},/obj/item/cigbutt,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"bkL" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal) -"bkM" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bkN" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/maintenance/disposal) -"bkO" = (/obj/machinery/vending/kink,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office) -"bkP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bkQ" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"bkR" = (/obj/machinery/camera{c_tag = "EVA Maintenance - Aft"; dir = 1},/turf/open/floor/plating,/area/maintenance/department/eva) -"bkS" = (/obj/machinery/vending/sustenance,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office) -"bkT" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"bkU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bkV" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/eva) -"bkW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "Pool Exterior Access"; req_access_txt = "13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool) -"bkX" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/sorting) -"bkY" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/closet/crate/engineering,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bkZ" = (/turf/open/floor/engine/n2,/area/engine/atmos) -"bla" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"blb" = (/obj/effect/turf_decal/tile/brown{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"blc" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bld" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/storage) -"ble" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/door/airlock/external{name = "Cargo Freighter Dock"; req_access_txt = "31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"blf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel's Office"; req_access_txt = "57"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/hop) -"blg" = (/obj/effect/turf_decal/caution/stand_clear,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/quartermaster/storage) -"blh" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/airlock/external{name = "Cargo Freighter Dock"; req_access_txt = "31"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bli" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/central) -"blj" = (/obj/structure/sign/warning/docking,/turf/closed/wall/r_wall,/area/space/nearstation) -"blk" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/landmark/start/assistant,/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bll" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"blm" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bln" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"blo" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"blp" = (/turf/closed/wall/r_wall,/area/hallway/secondary/exit) -"blq" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/vending/wardrobe/engi_wardrobe,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/storage/primary) -"blr" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bls" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/sign/poster/official/ion_rifle{pixel_x = -32},/turf/open/floor/plasteel,/area/security/brig) -"blt" = (/obj/machinery/computer/card/minor/ce{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"blu" = (/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"blv" = (/obj/machinery/computer/operating,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"blw" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"blx" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/storage/backpack/duffelbag/med/surgery,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bly" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) -"blz" = (/obj/machinery/computer/atmos_control{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/engine/atmos) -"blA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) -"blB" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/central) -"blC" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"blD" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool) -"blE" = (/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"blF" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/hallway/primary/central) -"blG" = (/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/engine,/area/science/mixing) -"blH" = (/obj/structure/chair,/obj/machinery/button/massdriver{id = "toxinsdriver"; pixel_y = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/mixing) -"blI" = (/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/engine,/area/science/mixing) -"blJ" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (Common)"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"blK" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "marketdoor"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"blL" = (/turf/open/floor/engine/o2,/area/engine/atmos) -"blM" = (/turf/open/floor/engine/air,/area/engine/atmos) -"blN" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"blO" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"blP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/rust,/area/maintenance/department/chapel) -"blQ" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/window/northleft{name = "Delivery Office"; req_one_access_txt = "31;48"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"blR" = (/obj/machinery/computer/bounty{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"blS" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/structure/chair,/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"blT" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/closed/wall/r_wall,/area/science/mixing) -"blU" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/closet/cardboard,/turf/open/floor/plating,/area/maintenance/aft) -"blV" = (/obj/machinery/computer/cargo{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"blW" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = -24},/obj/item/storage/toolbox/mechanical,/obj/item/clothing/gloves/color/fyellow,/obj/item/crowbar,/turf/open/floor/plasteel,/area/quartermaster/storage) -"blX" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"blY" = (/obj/structure/disposalpipe/junction/yjunction{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/security/brig) -"blZ" = (/obj/machinery/conveyor_switch/oneway{dir = 8; id = "QMUnload"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bma" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/effect/landmark/start/assistant/override,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/turf/open/floor/plasteel,/area/quartermaster/office) -"bmb" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/crew_quarters/heads/hor) -"bmc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Security's Office"; req_one_access_txt = "58"},/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/hos) -"bmd" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/research_director,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) -"bme" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/secondary/exit) -"bmf" = (/obj/structure/sign/departments/evac,/turf/closed/wall/r_wall,/area/hallway/secondary/exit) -"bmg" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bmh" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bmi" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bmj" = (/obj/machinery/vending/wardrobe/cap_wardrobe,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain) -"bmk" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass,/obj/item/dice/d6,/obj/machinery/camera{c_tag = "Jazz Lounge"; dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) -"bml" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bmm" = (/obj/machinery/portable_atmospherics/scrubber/huge,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"bmn" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bmo" = (/turf/closed/wall/rust,/area/maintenance/department/chapel) -"bmp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/fore) -"bmq" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=court"; location = "bridge1"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bmr" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bms" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/barthpot,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) -"bmt" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) -"bmu" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/chapel/office) -"bmv" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"bmw" = (/obj/machinery/suit_storage_unit/ce,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bmx" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) -"bmy" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bmz" = (/obj/structure/closet/firecloset,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/storage/primary) -"bmA" = (/obj/item/stack/tile/plasteel{pixel_x = 10; pixel_y = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plating{icon_state = "panelscorched"},/area/hallway/secondary/civilian) -"bmB" = (/obj/machinery/light_switch{pixel_x = 24},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"bmC" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bmD" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bmE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/gateway) -"bmF" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "0-4"},/turf/closed/wall,/area/crew_quarters/fitness/cogpool) -"bmG" = (/turf/open/floor/engine,/area/gateway) -"bmH" = (/obj/machinery/computer/upload/borg{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"bmI" = (/obj/machinery/light{dir = 1},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/chapel/office"; dir = 4; name = "Chapel Office APC"; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/chapel/office) -"bmJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool) -"bmK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool) -"bmL" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bmM" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/window/reinforced/spawner,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) -"bmN" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{name = "Waste Disposal Maintenance"; req_one_access_txt = "12;50"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) -"bmO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/crew_quarters/lounge/jazz) -"bmP" = (/obj/machinery/light/small{dir = 8},/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/departments/engineering{pixel_x = -32},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bmQ" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/camera{c_tag = "Engineering Foyer - Starboard"; dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"bmR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Teleport Access"; req_one_access_txt = "17;19"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/dark,/area/teleporter) -"bmS" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/disposal) -"bmT" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) -"bmU" = (/obj/structure/table/wood,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/item/instrument/saxophone,/obj/item/reagent_containers/food/drinks/bottle/vermouth,/obj/item/clothing/glasses/sunglasses,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) -"bmV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) -"bmW" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/disposal) -"bmX" = (/obj/structure/table,/obj/item/folder/yellow{pixel_y = 4},/obj/item/pen{pixel_y = 4},/obj/item/clothing/gloves/color/latex{pixel_y = 4},/obj/item/clothing/mask/surgical{pixel_y = 4},/obj/item/healthanalyzer,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/item/paper/guides/cogstation/cdn_chap,/turf/open/floor/plasteel/dark,/area/chapel/office) -"bmY" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/maintenance/disposal) -"bmZ" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bna" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bnb" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) -"bnc" = (/obj/structure/sign/directions/command{dir = 1; pixel_x = -32; pixel_y = 32},/obj/structure/sign/directions/security{dir = 1; pixel_x = -32; pixel_y = 40},/obj/structure/sign/directions/science{pixel_x = -32; pixel_y = 24},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bnd" = (/obj/structure/table/wood,/obj/item/storage/photo_album,/obj/item/storage/box/matches,/obj/item/storage/fancy/cigarettes/cigpack_robust,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) -"bne" = (/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal) -"bnf" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) -"bng" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor{dir = 4; id = "recycler"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/disposal) -"bnh" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/door/poddoor{id = "DeliveryDoor"; name = "Delivery Door"},/obj/effect/turf_decal/caution/stand_clear{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bni" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/light{dir = 8},/obj/item/clipboard,/obj/item/stamp,/obj/item/stamp/denied{pixel_x = 4; pixel_y = 4},/obj/item/pen/red,/obj/item/pen/blue{pixel_x = -5; pixel_y = -3},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bnj" = (/obj/structure/sign/warning/securearea{desc = "A warning sign which reads 'BOMB RANGE"; name = "BOMB RANGE"},/turf/closed/wall,/area/science/test_area) -"bnk" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/science/mixing) -"bnl" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/central) -"bnm" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/mixing) -"bnn" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/door/window/southleft{name = "Cargo Desk"; req_access_txt = "31"},/obj/item/folder,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bno" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) -"bnp" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) -"bnq" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/engine/break_room) -"bnr" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bns" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/maintenance/department/eva) -"bnt" = (/obj/machinery/camera{c_tag = "Electrical Substation"; dir = 1},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"}) -"bnu" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"bnv" = (/obj/effect/turf_decal/plaque{icon_state = "L1"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bnw" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) -"bnx" = (/obj/effect/turf_decal/plaque{icon_state = "L3"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bny" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/item/paper_bin,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/pen,/obj/item/wirecutters,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bnz" = (/obj/effect/turf_decal/plaque{icon_state = "L5"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bnA" = (/obj/effect/turf_decal/plaque{icon_state = "L7"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bnB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) -"bnC" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Cargo Freighter Dock"; req_access_txt = "31"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bnD" = (/obj/effect/turf_decal/plaque{icon_state = "L9"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bnE" = (/obj/effect/decal/cleanable/dirt,/obj/item/crowbar,/obj/structure/disposalpipe/junction/flip,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"bnF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"bnG" = (/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/open/floor/plasteel,/area/bridge) -"bnH" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/fore) -"bnI" = (/obj/structure/bed,/obj/effect/landmark/start/head_of_personnel,/obj/item/bedsheet/hop,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) -"bnJ" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bnK" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/dark,/area/teleporter) -"bnL" = (/obj/item/beacon,/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel/dark,/area/teleporter) -"bnM" = (/obj/effect/turf_decal/delivery,/obj/item/grown/bananapeel,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) -"bnN" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bnO" = (/obj/machinery/status_display,/turf/closed/wall/r_wall,/area/hallway/secondary/exit) -"bnP" = (/obj/effect/turf_decal/plaque{icon_state = "L11"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bnQ" = (/obj/machinery/atmospherics/components/binary/valve/digital/on,/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"bnR" = (/obj/effect/turf_decal/plaque{icon_state = "L13"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bnS" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/crew_quarters/fitness/cogpool) -"bnT" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool) -"bnU" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/tank/internals/air,/obj/item/wrench,/obj/item/flashlight,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/eva) -"bnV" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/ai_monitored/nuke_storage) -"bnW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) -"bnX" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/closet/secure_closet/security/cargo,/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"bnY" = (/obj/structure/flora/ausbushes/sunnybush,/turf/open/floor/grass,/area/hallway/secondary/exit) -"bnZ" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/pen/blue,/obj/machinery/camera{c_tag = "Customs - Fore"; dir = 4},/obj/structure/window/reinforced/spawner/north,/obj/machinery/door/poddoor/shutters/preopen{id = "HoPFore"; name = "HoP Fore Desk Shutters"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"boa" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 5},/turf/closed/wall,/area/crew_quarters/heads/chief) -"bob" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/turf/closed/wall,/area/crew_quarters/heads/chief) -"boc" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 10},/turf/closed/wall,/area/crew_quarters/heads/chief) -"bod" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{name = "Primary Tool Storage Desk"; req_access_txt = "11"},/obj/item/folder/yellow,/turf/open/floor/plasteel,/area/storage/primary) -"boe" = (/obj/machinery/door/airlock/vault{name = "Vault Door"; req_access_txt = "53"},/obj/effect/mapping_helpers/airlock/locked,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/ai_monitored/nuke_storage) -"bof" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external/glass{name = "Pool Exterior Access"; req_access_txt = "13"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/space/basic,/area/crew_quarters/fitness/cogpool) -"bog" = (/obj/machinery/light{dir = 1},/turf/open/floor/grass,/area/hallway/secondary/exit) -"boh" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/disposal) -"boi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool) -"boj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bok" = (/obj/structure/table/wood,/obj/item/paicard,/obj/item/toy/sword,/obj/item/toy/figure/assistant,/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) -"bol" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/dark,/area/teleporter) -"bom" = (/obj/structure/flora/ausbushes/leafybush,/turf/open/floor/grass,/area/hallway/secondary/exit) -"bon" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"boo" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central) -"bop" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/door/window/eastleft{name = "Operating Theatre"; req_access_txt = "45"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"boq" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bor" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bos" = (/obj/structure/table,/obj/item/stack/sheet/cardboard/fifty,/obj/item/stack/wrapping_paper,/obj/item/stack/sheet/metal,/obj/item/stack/sheet/glass,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bot" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bou" = (/obj/effect/turf_decal/plaque{icon_state = "L2"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bov" = (/obj/effect/turf_decal/loading_area{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bow" = (/obj/effect/turf_decal/stripes/end{dir = 8},/obj/machinery/conveyor{dir = 8; id = "QMUnload"},/turf/open/floor/plating,/area/quartermaster/storage) -"box" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"boy" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) -"boz" = (/obj/machinery/vending/cigarette,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) -"boA" = (/turf/closed/wall,/area/security/detectives_office) -"boB" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 8; id = "QMUnload"},/turf/open/floor/plating,/area/quartermaster/storage) -"boC" = (/obj/machinery/light/small{dir = 4},/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/sign/departments/cargo{pixel_x = 32},/turf/open/floor/plating,/area/quartermaster/warehouse) -"boD" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 8; id = "QMUnload"},/obj/machinery/door/poddoor{id = "QMUnloadDoor"; name = "Cargo Unloading Door"},/turf/open/floor/plating,/area/quartermaster/storage) -"boE" = (/obj/structure/plasticflaps,/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 8; id = "QMUnload"},/turf/open/floor/plating,/area/quartermaster/storage) -"boF" = (/obj/effect/turf_decal/stripes/end{dir = 4},/obj/machinery/conveyor{dir = 8; id = "QMUnload"},/obj/machinery/door/poddoor{id = "QMUnloadDoor"; name = "Cargo Unloading Door"},/turf/open/floor/plating,/area/quartermaster/storage) -"boG" = (/obj/machinery/space_heater,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/weldingtool,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/structure/sign/departments/engineering{pixel_x = -32},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"boH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"boI" = (/turf/closed/wall/r_wall,/area/quartermaster/miningoffice) -"boJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/machinery/computer/security/telescreen/toxins{dir = 8; pixel_x = 24},/turf/open/floor/plasteel,/area/science/mixing) -"boK" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/miningoffice) -"boL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing) -"boM" = (/obj/machinery/mineral/ore_redemption{input_dir = 4; output_dir = 8},/obj/effect/turf_decal/bot,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"boN" = (/obj/effect/turf_decal/delivery,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"boO" = (/obj/effect/turf_decal/tile/bar{dir = 1},/obj/item/storage/box/drinkingglasses{pixel_y = 4},/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark/side{dir = 4},/area/crew_quarters/bar) -"boP" = (/obj/structure/tank_dispenser/oxygen,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"boQ" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/science/mixing) -"boR" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/science/mixing) -"boS" = (/obj/structure/sign/mining,/turf/closed/wall/r_wall,/area/quartermaster/miningoffice) -"boT" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"boU" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"boV" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) -"boW" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"boX" = (/obj/item/beacon,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) -"boY" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"boZ" = (/obj/effect/landmark/event_spawn,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) -"bpa" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/door/window/westleft{name = "Treatment Center"; req_access_txt = "5"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bpb" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bpc" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"bpd" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bpe" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/door/window/eastright{name = "Operating Theatre"; req_access_txt = "45"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bpf" = (/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bpg" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bph" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bpi" = (/obj/structure/flora/junglebush/b,/turf/open/floor/grass,/area/hallway/secondary/exit) -"bpj" = (/obj/structure/flora/junglebush,/turf/open/floor/grass,/area/hallway/secondary/exit) -"bpk" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bpl" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/autolathe/secure{name = "public autolathe"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office) -"bpm" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/aft) -"bpn" = (/obj/effect/turf_decal/plaque{icon_state = "L4"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bpo" = (/obj/machinery/holopad,/turf/open/floor/carpet/red,/area/security/brig) -"bpp" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bpq" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/engine/air,/area/engine/atmos) -"bpr" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) -"bps" = (/obj/machinery/power/apc{areastring = "/area/crew_quarters/lounge/jazz"; name = "Jazz Lounge APC"; pixel_y = -26},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) -"bpt" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) -"bpu" = (/obj/structure/chair{dir = 8},/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bpv" = (/turf/closed/wall/r_wall,/area/engine/break_room) -"bpw" = (/obj/effect/turf_decal/plaque{icon_state = "L6"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bpx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bpy" = (/obj/effect/turf_decal/plaque{icon_state = "L8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/landmark/observer_start,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bpz" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"bpA" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bpB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/hallway/primary/aft) -"bpC" = (/obj/effect/turf_decal/plaque{icon_state = "L10"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bpD" = (/turf/open/floor/plating,/area/maintenance/aft) -"bpE" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/aft) -"bpF" = (/obj/effect/turf_decal/plaque{icon_state = "L12"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bpG" = (/obj/effect/turf_decal/plaque{icon_state = "L14"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bpH" = (/obj/machinery/jukebox,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) -"bpI" = (/obj/effect/turf_decal/delivery,/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) -"bpJ" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/lounge/jazz) -"bpK" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) -"bpL" = (/obj/structure/cable{icon_state = "1-4"},/turf/closed/wall/r_wall,/area/engine/engine_smes{name = "Power Monitoring"}) -"bpM" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/science/mixing) -"bpN" = (/obj/structure/grille,/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"}) -"bpO" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/aft) -"bpP" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bpQ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bpR" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/mixing) -"bpS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -32},/turf/open/floor/carpet/red,/area/security/brig) -"bpT" = (/obj/structure/window/reinforced/spawner,/turf/open/floor/grass,/area/hallway/secondary/exit) -"bpU" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) -"bpV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/atmos{name = "Aft Air Hookup"; req_access_txt = "12;24"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"bpW" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/security/brig) -"bpX" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/sign/poster/official/obey{pixel_x = -32},/turf/open/floor/plasteel,/area/security/brig) -"bpY" = (/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bpZ" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) -"bqa" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"bqb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/civilian) -"bqc" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/medbay/lobby) -"bqd" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bqe" = (/obj/structure/sign/departments/medbay/alt,/turf/closed/wall,/area/medical/medbay/lobby) -"bqf" = (/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal) -"bqg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/disposal) -"bqh" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop) -"bqi" = (/obj/machinery/button/door{id = "HoPFore"; name = "Fore Shutters"; pixel_x = -24; pixel_y = 24; req_access_txt = "57"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"bqj" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bqk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"bql" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/hallway/secondary/civilian) -"bqm" = (/turf/closed/wall,/area/medical/medbay/lobby) -"bqn" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bqo" = (/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bqp" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) -"bqq" = (/obj/machinery/chem_master,/obj/effect/turf_decal/stripes/line,/obj/machinery/camera{c_tag = "Medbay - Chemistry Lab"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/medical/chemistry) -"bqr" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bqs" = (/obj/structure/closet/emcloset,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bqt" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/clothing/gloves/color/latex,/obj/item/clothing/suit/apron/surgical,/obj/item/clothing/mask/surgical,/obj/item/healthanalyzer,/obj/item/clothing/neck/stethoscope,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bqu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance_hatch{name = "Waste Disposal Maintenance"; req_one_access_txt = "12;50"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) -"bqv" = (/obj/structure/window/reinforced/spawner/east,/turf/open/floor/wood,/area/medical/medbay/lobby) -"bqw" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "EngiLockdown"; name = "Engineering Emergency Lockdown"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/camera{c_tag = "Engineering - Entrance"; dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) -"bqx" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bqy" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/camera{c_tag = "Supply - Mining Office"; dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bqz" = (/turf/closed/wall,/area/medical/chemistry) -"bqA" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bqB" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/public/glass{name = "Library Access"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/library) -"bqC" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bqD" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bqE" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bqF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "E.V.A. Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/primary/central) -"bqG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva) -"bqH" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal) -"bqI" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/mixing) -"bqJ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4},/obj/machinery/airlock_sensor/incinerator_toxmix{pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/engine,/area/science/mixing) -"bqK" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bqL" = (/obj/structure/chair{dir = 4},/obj/machinery/light_switch{pixel_x = -24},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) -"bqM" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/storage/box/dice,/obj/item/toy/cards/deck,/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) -"bqN" = (/obj/structure/table/glass,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bqO" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bqP" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bqQ" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/dark/corner,/area/hallway/secondary/entry) -"bqR" = (/obj/machinery/computer/operating{dir = 1},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bqS" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bqT" = (/obj/machinery/computer/crew,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"bqU" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) -"bqV" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bqW" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva) -"bqX" = (/turf/closed/wall/mineral/titanium/nosmooth,/area/ai_monitored/turret_protected/ai_upload_foyer) -"bqY" = (/obj/structure/sign/directions/medical{pixel_x = -32; pixel_y = -24},/obj/structure/sign/directions/evac{pixel_x = -32; pixel_y = -32},/obj/structure/sign/directions/supply{pixel_x = -32; pixel_y = -40},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bqZ" = (/obj/machinery/mineral/equipment_vendor,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bra" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/maintenance/disposal) -"brb" = (/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/dark,/area/science/server{name = "Computer Core"}) -"brc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva) -"brd" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bre" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/central) -"brf" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/starboard/central) -"brg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"brh" = (/obj/structure/sign/departments/custodian{pixel_x = 32},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"bri" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/hallway/secondary/civilian) -"brj" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/maintenance{name = "Central Starboard Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/civilian) -"brk" = (/obj/machinery/light{dir = 1},/obj/machinery/vending/cola/random,/turf/open/floor/wood,/area/medical/medbay/lobby) -"brl" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/item/paper_bin,/obj/item/reagent_containers/glass/bottle/epinephrine,/obj/item/reagent_containers/dropper,/obj/item/stamp/denied{pixel_x = -8; pixel_y = -2},/obj/item/stamp{pixel_x = -8; pixel_y = 2},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"brm" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"brn" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/hydroponics) -"bro" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plating,/area/maintenance/department/eva) -"brp" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/table/glass,/obj/machinery/smartfridge/disks,/turf/open/floor/plasteel,/area/hydroponics) -"brq" = (/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"brr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/warning{name = "\improper WARNING: MOVING MACHINERY"; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal) -"brs" = (/turf/open/floor/plating/airless,/area/space/nearstation) -"brt" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/chapel/office) -"bru" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"brv" = (/obj/machinery/disposal/bin,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) -"brw" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/gateway) -"brx" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/storage/tools) -"bry" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"brz" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/power/apc{areastring = "/area/science/research"; name = "Research Sector APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"brA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/poster/official/pda_ad600{pixel_y = -32},/turf/open/floor/plasteel/dark,/area/crew_quarters/lounge/jazz) -"brB" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"brC" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/storage/tools) -"brD" = (/obj/structure/table,/obj/machinery/door/window/eastright{name = "Auxiliary Tool Storage Desk"; req_access_txt = "12"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/folder,/turf/open/floor/plasteel,/area/storage/tools) -"brE" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"brF" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "chem1"; name = "chem lab shutters"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/chemistry) -"brG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) -"brH" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/chemistry) -"brI" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Central Hall - Aft"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"brJ" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"brK" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/chem_dispenser,/obj/machinery/airalarm{pixel_y = 24},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/medical/chemistry) -"brL" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating/airless,/area/space/nearstation) -"brM" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Merchant Plaza"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"brN" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) -"brO" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/obj/effect/landmark/start/medical_doctor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"brP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/maintenance/disposal) -"brQ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"brR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Construction Area"; req_access_txt = "31"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"brS" = (/obj/machinery/suit_storage_unit/open,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"brT" = (/obj/machinery/suit_storage_unit/open,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"brU" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/medbay/lobby) -"brV" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"brW" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock{name = "Chapel Maintenance"; req_one_access_txt = "12;22;26;27;50"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"brX" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) -"brY" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/camera{c_tag = "Waste Disposal - Aft"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) -"brZ" = (/obj/item/kirbyplants{icon_state = "plant-02"},/turf/open/floor/wood,/area/medical/medbay/lobby) -"bsa" = (/obj/structure/table/glass,/obj/item/scalpel,/obj/item/storage/box/cups,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/wood,/area/medical/medbay/lobby) -"bsb" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/port/central) -"bsc" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/table/glass,/obj/item/reagent_containers/glass/bottle/ammonia,/obj/item/toy/figure/botanist{pixel_x = 8},/turf/open/floor/plasteel,/area/hydroponics) -"bsd" = (/obj/structure/closet/crate/hydroponics,/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/clothing/accessory/armband/hydro{pixel_y = 4},/obj/item/clothing/accessory/armband/hydro{pixel_y = 4},/obj/item/clothing/accessory/armband/hydro{pixel_y = 4},/obj/item/clothing/suit/hooded/wintercoat/hydro{pixel_y = 4},/turf/open/floor/plasteel,/area/hydroponics) -"bse" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/chapel/office) -"bsf" = (/obj/machinery/airalarm{dir = 8; pixel_x = 24},/obj/structure/bed/dogbed/ian,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/sign/poster/official/love_ian{pixel_y = 32},/mob/living/simple_animal/pet/dog/corgi/Ian,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) -"bsg" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) -"bsh" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "Recycler Exterior Access"; req_one_access_txt = "13;50"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) -"bsi" = (/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) -"bsj" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/green,/obj/machinery/seed_extractor,/turf/open/floor/plasteel,/area/hydroponics) -"bsk" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hydroponics) -"bsl" = (/obj/machinery/status_display,/turf/closed/wall/r_wall,/area/ai_monitored/storage/eva) -"bsm" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel,/area/hydroponics) -"bsn" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/table/glass,/obj/machinery/plantgenes{pixel_y = 6},/turf/open/floor/plasteel,/area/hydroponics) -"bso" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/storage/tools) -"bsp" = (/turf/open/floor/wood,/area/medical/medbay/lobby) -"bsq" = (/obj/structure/table,/obj/machinery/door/window/southleft{name = "Auxiliary Tool Storage Desk"; req_access_txt = "12"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/book/manual/wiki/engineering_hacking,/turf/open/floor/plasteel,/area/storage/tools) -"bsr" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/structure/table,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty{pixel_x = -6; pixel_y = 2},/turf/open/floor/plasteel,/area/storage/tools) -"bss" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/item/hand_labeler{pixel_y = 8},/obj/item/storage/firstaid/regular,/obj/item/book/manual/wiki/medicine{pixel_x = -6},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"bst" = (/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"bsu" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) -"bsv" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/vacuum/external,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal) -"bsw" = (/turf/open/floor/plasteel/stairs/left,/area/hydroponics) -"bsx" = (/obj/structure/lattice,/turf/closed/wall/r_wall,/area/crew_quarters/fitness/cogpool) -"bsy" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal) -"bsz" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"bsA" = (/turf/open/floor/plasteel/stairs/right,/area/hydroponics) -"bsB" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/hydroponics) -"bsC" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/camera{c_tag = "Hydroponics - Aft"},/turf/open/floor/plasteel,/area/hydroponics) -"bsD" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/space/basic,/area/space/nearstation) -"bsE" = (/obj/structure/reagent_dispensers/watertank/high,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/item/reagent_containers/glass/bucket,/turf/open/floor/grass,/area/hydroponics) -"bsF" = (/obj/machinery/vending/hydronutrients,/turf/open/floor/grass,/area/hydroponics) -"bsG" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/obj/structure/sign/poster/contraband/borg_fancy_2{pixel_y = 32},/turf/open/floor/plasteel,/area/maintenance/aft) -"bsH" = (/obj/structure/table/glass,/obj/item/storage/box/syringes{pixel_y = 4},/turf/open/floor/grass,/area/hydroponics) -"bsI" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 8},/turf/open/space/basic,/area/space/nearstation) -"bsJ" = (/obj/structure/table/glass,/obj/item/reagent_containers/spray/plantbgone{pixel_x = 12; pixel_y = 8},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 2; pixel_y = 9},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 6; pixel_y = 4},/turf/open/floor/grass,/area/hydroponics) -"bsK" = (/obj/machinery/hydroponics/constructable,/obj/machinery/light,/turf/open/floor/grass,/area/hydroponics) -"bsL" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/reagentgrinder{pixel_y = 8},/obj/item/storage/box/syringes,/obj/item/storage/box/beakers{pixel_x = -2; pixel_y = -2},/turf/open/floor/plasteel,/area/medical/chemistry) -"bsM" = (/turf/closed/wall,/area/science/robotics/lab) -"bsN" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 1},/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/cable_coil/random,/obj/item/grenade/chem_grenade,/obj/item/grenade/chem_grenade,/obj/item/grenade/chem_grenade,/obj/item/screwdriver{pixel_x = -2; pixel_y = 6},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/medical/chemistry) -"bsO" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/hallway/secondary/civilian) -"bsP" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/white/full,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/medical/chemistry) -"bsQ" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/medical/chemistry) -"bsR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bsS" = (/obj/machinery/door/window/northleft{name = "Chapel Office"; req_access_txt = "22"},/turf/open/floor/plasteel/dark,/area/chapel/office) -"bsT" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 10},/turf/open/space/basic,/area/space/nearstation) -"bsU" = (/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bsV" = (/turf/closed/wall,/area/maintenance/aft) -"bsW" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start/chaplain,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office) -"bsX" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"bsY" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plating,/area/maintenance/aft) -"bsZ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/aft) -"bta" = (/turf/closed/wall/r_wall,/area/storage/tech) -"btb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/computer/secure_data,/obj/machinery/requests_console{department = "Detective"; departmentType = 5; name = "Detective's Office RC"; pixel_y = 30},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"btc" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Custodial Closet APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/janitor) -"btd" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bte" = (/obj/structure/sign/warning/vacuum/external,/turf/closed/wall/r_wall,/area/quartermaster/miningoffice) -"btf" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/wood,/area/medical/medbay/lobby) -"btg" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel) -"bth" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/medical/medbay/lobby) -"bti" = (/obj/machinery/door/window/eastleft{name = "Waiting Room"},/turf/open/floor/wood,/area/medical/medbay/lobby) -"btj" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"btk" = (/obj/structure/sign/poster/official/nanomichi_ad{pixel_x = 32},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"btl" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"btm" = (/obj/machinery/disposal/bin{name = "Chapel Mailbox"},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/delivery/white,/obj/machinery/requests_console{department = "Chapel"; departmentType = 2; name = "Chapel RC"; pixel_x = -32},/turf/open/floor/plasteel/dark,/area/chapel/office) -"btn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab) -"bto" = (/turf/open/floor/plasteel,/area/science/robotics/lab) -"btp" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"btq" = (/obj/machinery/vending/cigarette,/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"btr" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) -"bts" = (/obj/effect/decal/cleanable/dirt,/obj/structure/light_construct/small{icon_state = "bulb-construct-stage1"; dir = 1},/turf/open/floor/plasteel,/area/maintenance/aft) -"btt" = (/obj/structure/chair{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Civilian Wing Hallway - Aft"; dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/civilian) -"btu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/hallway/secondary/civilian) -"btv" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/aft) -"btw" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/plating/airless,/area/router) -"btx" = (/obj/machinery/space_heater,/turf/open/floor/plating,/area/maintenance/aft) -"bty" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"btz" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"btA" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"btB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft) -"btC" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"btD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"btE" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Tech Storage"; req_access_txt = "23"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/storage/tech) -"btF" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"btG" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/central) -"btH" = (/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"btI" = (/obj/structure/closet/secure_closet/brig{name = "Detainee Locker"},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"btJ" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/closed/wall/r_wall,/area/hallway/secondary/civilian) -"btK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Aft Maintenance"; req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/exit) -"btL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"btM" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/fountain,/obj/machinery/newscaster{pixel_x = 30},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office) -"btN" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/rack,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/stack/cable_coil/random,/obj/item/weldingtool,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"btO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"btP" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/starboard/central) -"btQ" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/AI,/turf/open/floor/plating,/area/storage/tech) -"btR" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/department/eva) -"btS" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"btT" = (/turf/closed/wall/r_wall,/area/router) -"btU" = (/obj/structure/chair/comfy/brown{dir = 4},/obj/machinery/light{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/wood,/area/medical/medbay/lobby) -"btV" = (/obj/structure/sign/warning/securearea,/turf/closed/wall/r_wall,/area/storage/tech) -"btW" = (/obj/structure/table,/obj/machinery/light,/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/plasteel,/area/quartermaster/office) -"btX" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"btY" = (/obj/machinery/door/window/eastright{name = "Waiting Room"},/turf/open/floor/wood,/area/medical/medbay/lobby) -"btZ" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/turf/open/floor/plating,/area/router) -"bua" = (/turf/closed/wall/r_wall,/area/science/robotics/mechbay) -"bub" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"buc" = (/obj/structure/bed,/obj/item/clothing/glasses/sunglasses/blindfold,/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"bud" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/conveyor{id = "router_off"},/turf/open/floor/plating,/area/router) -"bue" = (/turf/closed/wall/r_wall,/area/router/eva) -"buf" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/obj/structure/plasticflaps,/obj/machinery/door/window/northleft{name = "Showers"; req_one_access_txt = "29;47"},/turf/open/floor/plasteel,/area/science/lab) -"bug" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/chapel/office) -"buh" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/closed/wall,/area/maintenance/disposal) -"bui" = (/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"buj" = (/obj/structure/closet/crate,/turf/open/floor/plating,/area/maintenance/aft) -"buk" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Routing Depot"; req_one_access_txt = "10;31"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) -"bul" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/aft) -"bum" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/aft) -"bun" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) -"buo" = (/obj/structure/chair{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bup" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) -"buq" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/router) -"bur" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/department/chapel) -"bus" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/mass_driver{dir = 1; id = "public_in"; name = "Router Driver"},/turf/open/floor/plating,/area/router) -"but" = (/turf/closed/wall/mineral/titanium/nosmooth,/area/hallway/primary/central) -"buu" = (/obj/structure/table,/turf/open/floor/plating,/area/maintenance/department/chapel) -"buv" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) -"buw" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bux" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) -"buy" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"buz" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/cargo_technician,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"buA" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/medical/medbay/lobby) -"buB" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{name = "Ferry Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"buC" = (/obj/structure/table/reinforced,/obj/item/integrated_circuit_printer,/obj/item/integrated_electronics/wirer,/turf/open/floor/plasteel/white,/area/science/circuit) -"buD" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"buE" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/conveyor/auto{id = "router"},/turf/open/floor/plating,/area/router) -"buF" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"buG" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop) -"buH" = (/obj/effect/decal/cleanable/dirt,/obj/structure/extinguisher_cabinet{pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse) -"buI" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/department/chapel) -"buJ" = (/obj/item/beacon,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"buK" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"buL" = (/obj/structure/closet/crate/coffin,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel) -"buM" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/button/door{id = "capblast"; name = "Window Blast Door Control"; pixel_x = -6; pixel_y = -3; req_access_txt = "19"},/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain) -"buN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/rust,/area/chapel/main) -"buO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain) -"buP" = (/obj/item/trash/plate,/obj/item/lighter/greyscale,/obj/item/clothing/mask/cigarette/cigar/cohiba,/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"buQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Chapel Morgue"; req_access_txt = "27"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/chapel/office) -"buR" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/hop) -"buS" = (/turf/closed/wall/r_wall,/area/crew_quarters/heads/cmo) -"buT" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/sign/poster/official/soft_cap_pop_art{pixel_x = -32},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"buU" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/chips{pixel_x = 3; pixel_y = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"buV" = (/obj/structure/rack,/obj/item/circuitboard/machine/telecomms/processor,/obj/item/circuitboard/machine/telecomms/bus,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) -"buW" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/janitor) -"buX" = (/obj/structure/chair/stool,/obj/effect/landmark/start/bartender,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"buY" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"buZ" = (/obj/structure/closet/secure_closet/personal/cabinet,/obj/item/soulstone/anybody/chaplain,/obj/item/organ/heart,/obj/item/book/granter/spell/smoke/lesser,/obj/item/nullrod,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office) -"bva" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/closed/wall,/area/janitor) -"bvb" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Electrical Substation"; req_access_txt = "10"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"}) -"bvc" = (/obj/machinery/computer/cargo/request,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/router/eva) -"bvd" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bve" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Construction Area"; req_access_txt = "12"},/turf/open/floor/plating,/area/construction) -"bvf" = (/obj/item/kirbyplants{icon_state = "plant-10"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office) -"bvg" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/destTagger,/obj/effect/turf_decal/bot,/obj/machinery/requests_console{department = "EVA Router"; name = "EVA Router RC"; pixel_y = 28},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/router/eva) -"bvh" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bvi" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bvj" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bvk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel) -"bvl" = (/obj/item/trash/plate,/obj/item/kitchen/fork,/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bvm" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) -"bvn" = (/obj/machinery/rnd/production/protolathe/department/science,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/science/lab) -"bvo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bvp" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/checkpoint) -"bvq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Kitchen"; req_access_txt = "28"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bvr" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) -"bvs" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/maintenance/department/chapel) -"bvt" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bvu" = (/turf/closed/wall/r_wall,/area/chapel/office) -"bvv" = (/turf/closed/wall/r_wall/rust,/area/hydroponics/garden{name = "Nature Preserve"}) -"bvw" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) -"bvx" = (/obj/structure/grille,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) -"bvy" = (/turf/open/floor/plasteel/white,/area/science/mixing) -"bvz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/router/eva) -"bvA" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/effect/landmark/start/cook,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) -"bvB" = (/turf/closed/wall/r_wall/rust,/area/router) -"bvC" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/mob/living/simple_animal/hostile/retaliate/goat{name = "Pete"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) -"bvD" = (/obj/machinery/camera{c_tag = "Bar - Starboard"; dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bvE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/carpet,/area/chapel/main) -"bvF" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/vending/snack/random,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bvG" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bvH" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/crew_quarters/bar) -"bvI" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/department/chapel) -"bvJ" = (/obj/structure/chair/comfy/brown,/obj/effect/landmark/start/head_of_personnel,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop) -"bvK" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"bvL" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bvM" = (/obj/structure/lattice,/obj/machinery/camera{c_tag = "Routing Depot - Aft Exterior"; pixel_x = 22},/turf/open/space/basic,/area/router) -"bvN" = (/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/closed/wall,/area/maintenance/department/chapel) -"bvO" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) -"bvP" = (/obj/machinery/space_heater,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/department/chapel) -"bvQ" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/janitor) -"bvR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bvS" = (/obj/machinery/portable_atmospherics/canister/air,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/maintenance/department/chapel) -"bvT" = (/turf/open/floor/plasteel/dark,/area/chapel/office) -"bvU" = (/obj/item/caution,/obj/effect/decal/cleanable/dirt,/obj/structure/sign/warning/biohazard{pixel_x = -32},/turf/open/floor/plasteel,/area/maintenance/disposal) -"bvV" = (/obj/structure/table,/obj/machinery/light/small,/obj/item/storage/pill_bottle/epinephrine,/obj/item/wrench{pixel_x = -8},/obj/item/extinguisher{pixel_x = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/department/chapel) -"bvW" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bvX" = (/obj/machinery/door/airlock/external{name = "External Construction Access"; req_one_access_txt = "10;31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bvY" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"bvZ" = (/obj/item/folder,/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bwa" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/department/eva) -"bwb" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/camera{c_tag = "Chapel Air Hookup"; dir = 1},/turf/open/floor/plating,/area/maintenance/department/chapel) -"bwc" = (/obj/machinery/computer/atmos_alert{dir = 8},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/chapel) -"bwd" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bwe" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/department/chapel) -"bwf" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"bwg" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bwh" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/decal/cleanable/dirt,/obj/machinery/requests_console{department = "Routing Depot"; name = "Routing Depot RC"; pixel_y = 28},/obj/machinery/button/massdriver{id = "eva_in"; name = "mass driver button (EVA)"; pixel_x = -24},/obj/machinery/button/massdriver{id = "public_in"; name = "mass driver button (Public)"; pixel_x = -24; pixel_y = 8},/turf/open/floor/plasteel,/area/router) -"bwi" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bwj" = (/obj/machinery/space_heater,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) -"bwk" = (/obj/machinery/chem_master,/turf/open/floor/plating{icon_state = "platingdmg2"},/area/maintenance/disposal) -"bwl" = (/obj/structure/closet/secure_closet/security,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/sign/poster/official/safety_report{pixel_x = 32},/turf/open/floor/plasteel,/area/security/checkpoint) -"bwm" = (/obj/structure/sign/departments/science,/turf/closed/wall/r_wall,/area/gateway) -"bwn" = (/obj/structure/disposalpipe/junction{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel) -"bwo" = (/obj/structure/cable{icon_state = "4-8"},/mob/living/simple_animal/cockroach,/turf/open/floor/plating,/area/maintenance/starboard/central) -"bwp" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/central) -"bwq" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/conveyor{id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) -"bwr" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bws" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/autolathe/secure{name = "public autolathe"},/turf/open/floor/plating,/area/maintenance/disposal) -"bwt" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bwu" = (/obj/structure/cable{icon_state = "1-2"},/obj/item/trash/can,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/central) -"bwv" = (/obj/machinery/disposal/bin{name = "Mass Driver"},/obj/structure/sign/warning/deathsposal{pixel_x = 32},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"bww" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"bwx" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/janitor) -"bwy" = (/obj/machinery/vending/wardrobe/jani_wardrobe,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/janitor) -"bwz" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router) -"bwA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/janitor) -"bwB" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/bot_assembly/medbot,/obj/item/clothing/head/hardhat{pixel_x = -2; pixel_y = 6; pressure_resistance = 6},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router) -"bwC" = (/obj/structure/table,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/radio/off{pixel_x = -3; pixel_y = 1},/obj/item/storage/box/mousetraps,/obj/item/light/tube,/obj/item/radio/off{pixel_x = -3; pixel_y = 1},/obj/machinery/camera{c_tag = "Routing Depot"},/turf/open/floor/plasteel,/area/router) -"bwD" = (/obj/structure/table/reinforced,/obj/item/analyzer,/obj/item/wrench,/obj/item/screwdriver,/turf/open/floor/plasteel/white,/area/science/mixing) -"bwE" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel) -"bwF" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel) -"bwG" = (/obj/item/cigbutt,/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/landmark/event_spawn,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bwH" = (/obj/effect/turf_decal/stripes/line,/obj/item/storage/box/mre/menu2/safe,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/glass,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/maintenance/disposal) -"bwI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"bwJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"bwK" = (/obj/machinery/camera{c_tag = "Research - Gateway Chamber"; network = list("ss13","rd")},/turf/open/floor/engine,/area/gateway) -"bwL" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/router) -"bwM" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Central Starboard Maintenance"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/mob/living/simple_animal/hostile/retaliate/bat,/turf/open/floor/plating,/area/maintenance/starboard/central) -"bwN" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "Toxins Lab - Port"; network = list("ss13","rd")},/obj/machinery/meter,/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/mixing) -"bwO" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/maintenance/department/chapel) -"bwP" = (/obj/structure/chair{dir = 1},/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/break_room) -"bwQ" = (/obj/structure/window/reinforced/spawner/east,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/conveyor{dir = 1; id = "router_off"},/turf/open/floor/plating,/area/router) -"bwR" = (/turf/open/floor/plasteel,/area/engine/break_room) -"bwS" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) -"bwT" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) -"bwU" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bwV" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/open/floor/plasteel,/area/engine/break_room) -"bwW" = (/turf/closed/wall,/area/maintenance/disposal) -"bwX" = (/obj/machinery/conveyor{id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) -"bwY" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/department/eva) -"bwZ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/table,/obj/item/clothing/under/misc/mailman,/obj/item/clothing/head/mailman,/obj/item/wirecutters,/obj/item/stack/packageWrap,/turf/open/floor/plasteel,/area/router) -"bxa" = (/obj/structure/frame/computer,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/router) -"bxb" = (/obj/machinery/light_switch{pixel_x = -24},/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Waste Disposal - Port"; dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal) -"bxc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/maintenance/department/chapel) -"bxd" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel,/area/maintenance/disposal) -"bxe" = (/obj/item/stack/tile/plasteel{pixel_x = 6; pixel_y = 13},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bxf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "EVA Router"; req_access_txt = "19"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/eva) -"bxg" = (/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/stack/tile/plasteel{pixel_x = 8; pixel_y = 14},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel) -"bxh" = (/obj/machinery/disposal/bin{name = "Corpse Disposal"},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/delivery/red,/turf/open/floor/plasteel,/area/maintenance/disposal) -"bxi" = (/obj/structure/closet/l3closet/janitor,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/item/clothing/gloves/color/purple,/obj/item/clothing/gloves/color/purple,/obj/item/clothing/under/costume/maid,/obj/item/clothing/under/costume/maid,/obj/structure/sign/poster/official/bless_this_spess{pixel_x = -32},/turf/open/floor/plasteel,/area/janitor) -"bxj" = (/turf/closed/wall/r_wall,/area/maintenance/aft) -"bxk" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/firealarm{dir = 8; pixel_x = 26},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bxl" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) -"bxm" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light/small,/turf/open/floor/plating,/area/maintenance/department/eva) -"bxn" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "AI Core Exterior"; dir = 1},/turf/open/floor/plating/airless,/area/maintenance/department/eva) -"bxo" = (/obj/machinery/door/airlock/external{name = "Telecommunications External Access"; req_access_txt = "61"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/tcommsat/computer) -"bxp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel) -"bxq" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/central) -"bxr" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/storage/box/lights/mixed,/obj/item/storage/box/lights/mixed,/obj/item/radio/off{pixel_x = 4; pixel_y = 4},/obj/item/restraints/legcuffs/beartrap,/obj/item/restraints/legcuffs/beartrap,/turf/open/floor/plasteel,/area/janitor) -"bxs" = (/obj/item/storage/toolbox/mechanical/old,/obj/item/reagent_containers/food/snacks/chips{pixel_x = 3; pixel_y = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"bxt" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/disposal) -"bxu" = (/obj/structure/rack,/obj/item/circuitboard/machine/telecomms/broadcaster,/obj/item/circuitboard/machine/telecomms/receiver,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) -"bxv" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"bxw" = (/turf/closed/wall/r_wall,/area/maintenance/starboard/aft) -"bxx" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"bxy" = (/obj/item/trash/candle,/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/disposal) -"bxz" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/computer/station_alert,/obj/structure/sign/poster/official/safety_eye_protection{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/paper/guides/cogstation/letter_eng,/turf/open/floor/plasteel,/area/engine/break_room) -"bxA" = (/obj/machinery/announcement_system,/turf/open/floor/plasteel/dark,/area/tcommsat/computer) -"bxB" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/computer/message_monitor{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"bxC" = (/obj/structure/closet/emcloset/anchored,/obj/machinery/light/small,/turf/open/floor/plating,/area/tcommsat/computer) -"bxD" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/door/airlock/engineering{name = "Telecommunications Chamber"; req_access_txt = "61"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"bxE" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 29},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"bxF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"bxG" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/disposal) -"bxH" = (/turf/closed/wall,/area/storage/tech) -"bxI" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/tcommsat/computer) -"bxJ" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/rack,/obj/item/clothing/gloves/color/fyellow,/obj/item/clothing/suit/hooded/wintercoat/engineering,/obj/item/clothing/suit/hooded/wintercoat/engineering,/obj/item/clothing/shoes/winterboots,/obj/item/clothing/shoes/winterboots,/turf/open/floor/plasteel,/area/tcommsat/computer) -"bxK" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal) -"bxL" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bxM" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/hallway/primary/aft) -"bxN" = (/obj/structure/rack,/obj/machinery/light/small{dir = 8},/obj/effect/spawner/lootdrop/techstorage/command,/turf/open/floor/plating,/area/storage/tech) -"bxO" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bxP" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/external{name = "Central Starboard Exterior Access"; req_access_txt = "13"},/turf/open/floor/plating,/area/maintenance/starboard/central) -"bxQ" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"bxR" = (/obj/effect/turf_decal/bot,/obj/machinery/conveyor_switch{id = "MiningConveyer"},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bxS" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/central) -"bxT" = (/turf/closed/wall/r_wall,/area/science/xenobiology) -"bxU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bxV" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light/small{dir = 1},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bxW" = (/obj/effect/turf_decal/tile/yellow,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) -"bxX" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/turf/open/floor/plasteel,/area/tcommsat/computer) -"bxY" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"bxZ" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) -"bya" = (/obj/machinery/computer/telecomms/monitor{dir = 1; network = "tcommsat"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"byb" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/tcommsat/server) -"byc" = (/obj/machinery/igniter/incinerator_toxmix,/turf/open/floor/engine/vacuum,/area/science/mixing) -"byd" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/item/pen/fourcolor,/obj/item/pen/fountain{pixel_x = 2; pixel_y = 6},/obj/item/stamp/hop,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop) -"bye" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/photocopier,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"byf" = (/obj/machinery/door/airlock/engineering/glass{name = "Telecommunications Mainframe"; req_access_txt = "61"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel,/area/tcommsat/server) -"byg" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/computer) -"byh" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"byi" = (/turf/closed/wall/r_wall,/area/tcommsat/server) -"byj" = (/turf/open/floor/plasteel,/area/tcommsat/server) -"byk" = (/obj/machinery/telecomms/message_server,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"byl" = (/obj/machinery/door/airlock/engineering/glass{name = "Telecommunications Mainframe"; req_access_txt = "61"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel,/area/tcommsat/server) -"bym" = (/obj/machinery/announcement_system,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"byn" = (/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"byo" = (/obj/structure/table/wood,/obj/item/clipboard,/obj/item/pen,/obj/item/pen{pixel_x = 4; pixel_y = 3},/obj/machinery/camera{c_tag = "Chapel Game Room"; dir = 1},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"byp" = (/obj/machinery/telecomms/bus/preset_three,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"byq" = (/obj/machinery/telecomms/receiver/preset_left,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"byr" = (/obj/structure/table/wood,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/flashlight/lamp/green,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bys" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/eva) -"byt" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/central) -"byu" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark/blobstart,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/starboard/central) -"byv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Central Starboard Exterior Access"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/central) -"byw" = (/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/light{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"byx" = (/obj/machinery/telecomms/processor/preset_three,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"byy" = (/obj/machinery/telecomms/bus/preset_one,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"byz" = (/obj/machinery/telecomms/receiver/preset_right,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"byA" = (/obj/machinery/telecomms/processor/preset_one,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"byB" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"byC" = (/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"byD" = (/obj/machinery/camera{c_tag = "Medbay - Lobby"; network = list("ss13","rd")},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"byE" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/button/massdriver{id = "eva_out"; pixel_x = 24; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/router/eva) -"byF" = (/obj/structure/window/reinforced/spawner,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor/auto{dir = 4; id = "EVA"},/turf/open/floor/plating,/area/router/eva) -"byG" = (/obj/machinery/telecomms/server/presets/service,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"byH" = (/obj/machinery/telecomms/server/presets/common,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"byI" = (/obj/machinery/telecomms/hub/preset,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"byJ" = (/obj/machinery/telecomms/server/presets/security,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"byK" = (/obj/machinery/telecomms/server/presets/command,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"byL" = (/obj/machinery/telecomms/server/presets/science,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"byM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Chapel Maintenance"; dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel) -"byN" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/medical/morgue) -"byO" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/tile/plasteel{pixel_x = 3; pixel_y = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/chapel) -"byP" = (/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel,/area/maintenance/disposal) -"byQ" = (/turf/closed/wall,/area/medical/morgue) -"byR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"byS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/chapel) -"byT" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/hallway/primary/aft) -"byU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"byV" = (/obj/structure/reagent_dispensers/water_cooler,/turf/open/floor/plasteel,/area/hallway/primary/central) -"byW" = (/obj/structure/disposalpipe/sorting/mail{dir = 4; sortType = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"byX" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plating/airless,/area/space/nearstation) -"byY" = (/obj/vehicle/ridden/janicart,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/item/key/janitor,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/janitor) -"byZ" = (/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/spawner,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/mass_driver{dir = 4; id = "eva_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/eva) -"bza" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bzb" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "Ferry Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bzc" = (/obj/machinery/light/small{dir = 8},/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/security,/turf/open/floor/plating,/area/storage/tech) -"bzd" = (/turf/open/floor/plating,/area/storage/tech) -"bze" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/mob/living/simple_animal/cockroach,/turf/open/floor/plating,/area/maintenance/aft) -"bzf" = (/obj/structure/janitorialcart,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/janitor) -"bzg" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/janitor) -"bzh" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/disposaloutlet{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"bzi" = (/obj/item/cardboard_cutout,/turf/open/floor/plating,/area/maintenance/disposal) -"bzj" = (/obj/machinery/light/small{dir = 4},/obj/structure/table,/obj/item/flashlight,/obj/item/flashlight,/obj/item/assembly/flash,/obj/item/assembly/flash,/obj/item/clothing/glasses/meson,/turf/open/floor/plating,/area/storage/tech) -"bzk" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/storage/tech) -"bzl" = (/obj/structure/closet/secure_closet,/obj/effect/spawner/lootdrop/organ_spawner,/obj/effect/spawner/lootdrop/organ_spawner,/obj/effect/spawner/lootdrop/organ_spawner,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/disposal) -"bzm" = (/obj/machinery/conveyor{dir = 5; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) -"bzn" = (/obj/machinery/conveyor{dir = 4; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) -"bzo" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/tank/internals/air,/obj/item/flashlight,/turf/open/floor/plating,/area/maintenance/starboard/central) -"bzp" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/disposal) -"bzq" = (/obj/machinery/light{dir = 8},/obj/structure/sign/warning/pods{pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bzr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/machinery/meter,/turf/closed/wall,/area/hallway/primary/aft) -"bzs" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bzt" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bzu" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 4; id = "MiningConveyer"},/turf/open/floor/plating/airless,/area/quartermaster/miningoffice) -"bzv" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor{dir = 4; id = "MiningConveyer"},/obj/structure/plasticflaps,/turf/open/floor/plating/airless,/area/quartermaster/miningoffice) -"bzw" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bzx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Interrogation Room"; req_access_txt = "63"},/turf/open/floor/plasteel/dark,/area/security/brig) -"bzy" = (/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bzz" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/white,/area/gateway) -"bzA" = (/obj/machinery/power/apc{areastring = "/area/medical/chemistry"; dir = 1; name = "Chemistry APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-8"},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bzB" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bzC" = (/obj/structure/closet/toolcloset,/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bzD" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "evablock"; name = "EVA Router"},/turf/open/floor/plating,/area/router/eva) -"bzE" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/conveyor{dir = 4; id = "router_off"},/turf/open/floor/plating,/area/router) -"bzF" = (/obj/structure/window/reinforced/spawner,/obj/machinery/conveyor{dir = 4; id = "router_off"},/turf/open/floor/plating,/area/router) -"bzG" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bzH" = (/obj/structure/disposalpipe/segment,/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/disposal) -"bzI" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bzJ" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"bzK" = (/obj/machinery/disposal/bin{name = "Chapel Corpse Delivery"},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/stripes/red/full,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"bzL" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) -"bzM" = (/obj/structure/window/reinforced/spawner,/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) -"bzN" = (/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"bzO" = (/obj/machinery/conveyor_switch/oneway{id = "recycler"; name = "Recycler Conveyor Control"},/turf/open/floor/plating,/area/maintenance/disposal) -"bzP" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/router) -"bzQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/maintenance/department/chapel) -"bzR" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"bzS" = (/obj/structure/table,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/item/clothing/gloves/color/latex,/obj/item/healthanalyzer,/obj/item/reagent_containers/spray/cleaner,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"bzT" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/maintenance/port/central"; dir = 4; name = "Central Port Maintenance APC"; pixel_x = 24},/turf/open/floor/plating,/area/maintenance/port/central) -"bzU" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 6},/obj/machinery/meter,/turf/closed/wall,/area/hallway/primary/aft) -"bzV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/hallway/primary/aft) -"bzW" = (/obj/machinery/vending/assist,/turf/open/floor/plating,/area/storage/tech) -"bzX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Toxins Launch Room"; req_access_txt = "7;8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing) -"bzY" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plating,/area/hallway/primary/aft) -"bzZ" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/quartermaster/miningoffice) -"bAa" = (/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bAb" = (/turf/open/floor/plating/airless,/area/science/xenobiology) -"bAc" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/gateway) -"bAd" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/external{name = "Central Starboard Exterior Access"; req_access_txt = "13"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/central) -"bAe" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel,/area/router) -"bAf" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating/airless,/area/science/xenobiology) -"bAg" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/closed/wall/r_wall,/area/science/xenobiology) -"bAh" = (/obj/item/reagent_containers/food/condiment/pack/mustard{pixel_x = 6; pixel_y = 3},/obj/item/reagent_containers/food/condiment/pack/ketchup{pixel_x = -2; pixel_y = 6},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = -5; pixel_y = 7},/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = 1; pixel_y = 3},/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bAi" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plasteel,/area/router) -"bAj" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/janitor) -"bAk" = (/obj/machinery/door/airlock/maintenance_hatch{name = "Recycler"; req_one_access_txt = "12;50"},/obj/effect/turf_decal/delivery,/turf/open/floor/plating,/area/maintenance/disposal) -"bAl" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing) -"bAm" = (/obj/effect/decal/cleanable/dirt,/obj/item/cigbutt,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel,/area/router) -"bAn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop) -"bAo" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"bAp" = (/obj/structure/bed,/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/item/bedsheet/purple,/obj/effect/landmark/start/janitor,/turf/open/floor/plasteel,/area/janitor) -"bAq" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"bAr" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router) -"bAs" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bAt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/camera{c_tag = "Fore Maintenance - Starboard"; pixel_x = 22},/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_y = 32},/turf/open/floor/plating,/area/maintenance/fore) -"bAu" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bAv" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/bed,/obj/item/bedsheet/qm,/obj/effect/landmark/start/quartermaster,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/machinery/firealarm{dir = 8; pixel_x = 28},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/quartermaster/qm) -"bAw" = (/obj/item/paper/fluff/bee_objectives,/obj/item/toy/plush/beeplushie,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) -"bAx" = (/obj/machinery/conveyor{dir = 1; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) -"bAy" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bAz" = (/obj/structure/disposalpipe/junction/flip{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/starboard/central) -"bAA" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 10},/turf/open/space/basic,/area/space/nearstation) -"bAB" = (/obj/item/beacon,/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bAC" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bAD" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/window/eastleft{name = "Chemistry Desk"; req_access_txt = "33"},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bAE" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/office/light{dir = 8},/obj/machinery/button/door{id = "chem1"; name = "Shutters Control Button"; pixel_x = -8; pixel_y = 24; req_access_txt = "29"},/obj/effect/landmark/start/chemist,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bAF" = (/obj/machinery/gateway/centerstation,/turf/open/floor/engine,/area/gateway) -"bAG" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing) -"bAH" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bAI" = (/obj/machinery/photocopier,/obj/machinery/requests_console{department = "Law Office"; name = "Law Office RC"; pixel_y = 32},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) -"bAJ" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/clothing/neck/stethoscope,/obj/item/clothing/glasses/hud/health,/obj/item/stamp/cmo,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/cmo"; dir = 1; name = "Chief Medical Officer's Office APC"; pixel_y = 24},/mob/living/simple_animal/pet/cat/Runtime,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"bAK" = (/obj/structure/grille,/turf/open/floor/plating,/area/maintenance/disposal) -"bAL" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: WASTE EJECTION"; pixel_x = -32},/turf/open/space/basic,/area/space) -"bAM" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bAN" = (/obj/structure/rack,/obj/item/clothing/suit/space/fragile,/obj/item/clothing/head/helmet/space/fragile,/obj/item/tank/internals/air,/obj/item/flashlight,/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plating,/area/maintenance/starboard/central) -"bAO" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/maintenance/department/chapel) -"bAP" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bAQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/disposal) -"bAR" = (/obj/machinery/door/airlock/engineering/glass{name = "Thermo-Electric Generator Room"; req_access_txt = "10"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"bAS" = (/turf/closed/wall/r_wall/rust,/area/maintenance/disposal) -"bAT" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bAU" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/science/mixing) -"bAV" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel/white,/area/science/mixing) -"bAW" = (/obj/structure/sign/poster/official/get_your_legs,/turf/closed/wall,/area/hallway/secondary/exit) -"bAX" = (/obj/structure/table/wood,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable{icon_state = "1-8"},/obj/item/paper/fluff/cogstation/letter_cap{pixel_x = -2; pixel_y = 4},/obj/item/flashlight/lamp,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) -"bAY" = (/obj/machinery/status_display,/turf/closed/wall,/area/hallway/secondary/exit) -"bAZ" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/carpet,/area/chapel/main) -"bBa" = (/obj/structure/sign/poster/official/help_others,/turf/closed/wall,/area/hallway/secondary/exit) -"bBb" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/grille/broken,/obj/effect/landmark/blobstart,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/department/chapel) -"bBc" = (/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/white/corner{dir = 8},/area/hallway/secondary/exit) -"bBd" = (/obj/structure/table,/obj/item/reagent_containers/food/snacks/popcorn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/wood,/area/crew_quarters/fitness) -"bBe" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/sign/warning/pods{pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bBf" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/storage/tech) -"bBg" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/storage/tech) -"bBh" = (/obj/machinery/conveyor{dir = 1; id = "recycler"},/obj/structure/sign/warning/vacuum{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/disposal) -"bBi" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bBj" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/crew_quarters/heads/captain"; dir = 4; name = "Captain's Quarters APC"; pixel_x = 26},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"bBk" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) -"bBl" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/hallway/primary/aft) -"bBm" = (/obj/structure/chair,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/exit) -"bBn" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bBo" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/door/airlock/engineering/glass{name = "Thermo-Electric Generator"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"bBp" = (/obj/machinery/conveyor/inverted{dir = 9; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) -"bBq" = (/obj/machinery/recycler,/obj/machinery/conveyor{dir = 4; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) -"bBr" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) -"bBs" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bBt" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) -"bBu" = (/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"bBv" = (/turf/closed/wall,/area/router) -"bBw" = (/obj/structure/chair,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/exit) -"bBx" = (/obj/structure/table,/obj/item/storage/toolbox/electrical,/obj/item/clothing/gloves/color/yellow,/obj/item/multitool,/obj/item/t_scanner,/turf/open/floor/plating,/area/storage/tech) -"bBy" = (/obj/machinery/recharge_station,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bBz" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bBA" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/structure/ore_box,/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bBB" = (/obj/machinery/conveyor/auto{id = "router"},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 4},/turf/open/floor/plating,/area/router) -"bBC" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router) -"bBD" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 4; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) -"bBE" = (/obj/structure/grille,/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"}) -"bBF" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router) -"bBG" = (/obj/machinery/conveyor/inverted{dir = 10; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) -"bBH" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router) -"bBI" = (/obj/machinery/computer/shuttle/mining,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bBJ" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/science/xenobiology) -"bBK" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/button/door{id = "recycleraccess"; name = "Recycler Access Control"; pixel_y = -24},/turf/open/floor/plasteel,/area/maintenance/disposal) -"bBL" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bBM" = (/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bBN" = (/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix{dir = 1},/turf/open/floor/engine,/area/science/mixing) -"bBO" = (/turf/closed/wall/r_wall,/area/engine/engine_smes{name = "Power Monitoring"}) -"bBP" = (/obj/machinery/door/firedoor,/obj/structure/table/reinforced,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/window/eastright{name = "Chemistry Desk"; req_access_txt = "33"},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bBQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central) -"bBR" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "Computer Core APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"bBS" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"bBT" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bBU" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/sign/departments/cargo{pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bBV" = (/obj/machinery/light/small,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router) -"bBW" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bBX" = (/obj/machinery/door/airlock/external{name = "Routing Depot"; req_one_access_txt = "10;31"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) -"bBY" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external{name = "EVA Router"; req_access_txt = "19"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/router/eva) -"bBZ" = (/turf/closed/wall,/area/hallway/secondary/exit) -"bCa" = (/obj/machinery/power/smes/engineering,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"}) -"bCb" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"bCc" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/router/eva) -"bCd" = (/obj/effect/landmark/start/captain,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) -"bCe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/requests_console{announcementConsole = 1; department = "Head of Personnel's Desk"; departmentType = 5; name = "Head of Personnel RC"; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) -"bCf" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/chemist,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bCg" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/chemist,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bCh" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/medbay/central) -"bCi" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bCj" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/disposal) -"bCk" = (/obj/structure/disposalpipe/junction/flip{dir = 1},/turf/closed/wall,/area/maintenance/disposal) -"bCl" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/components/binary/valve/digital/on{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva) -"bCm" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bCn" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/department/eva) -"bCo" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/department/eva) -"bCp" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bCq" = (/obj/machinery/conveyor{dir = 4; id = "recycler"},/obj/machinery/door/poddoor{id = "recycleraccess"; name = "Recycler Access"},/turf/open/floor/plating,/area/maintenance/disposal) -"bCr" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/maintenance/disposal) -"bCs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bCt" = (/obj/effect/turf_decal/bot,/obj/structure/table,/obj/machinery/light/small{dir = 4},/obj/item/storage/box/engineer{pixel_y = 4},/turf/open/floor/plasteel,/area/maintenance/disposal) -"bCu" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/router/eva) -"bCv" = (/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"bCw" = (/obj/structure/window/reinforced/spawner/north,/obj/machinery/conveyor/auto{dir = 8; id = "eva"},/turf/open/floor/plating,/area/router/eva) -"bCx" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bCy" = (/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/spawner/north,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor/auto{dir = 8; id = "eva"},/turf/open/floor/plating,/area/router/eva) -"bCz" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/structure/closet/secure_closet/engineering_personal,/obj/item/clothing/under/misc/overalls,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/storage/primary) -"bCA" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bCB" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"bCC" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/department/eva) -"bCD" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 29},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bCE" = (/obj/machinery/conveyor/auto{dir = 8; id = "eva"},/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "evablock"; name = "EVA Router"},/turf/open/floor/plating,/area/router/eva) -"bCF" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/circuit,/area/ai_monitored/turret_protected/ai) -"bCG" = (/obj/item/cigbutt,/obj/item/radio/intercom{frequency = 1359; name = "Station Intercom (Security)"; pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bCH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bCI" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bCJ" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) -"bCK" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bCL" = (/turf/closed/wall/rust,/area/security/detectives_office) -"bCM" = (/turf/closed/wall/r_wall/rust,/area/security/detectives_office) -"bCN" = (/obj/structure/filingcabinet,/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bCO" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/wood,/area/crew_quarters/fitness) -"bCP" = (/obj/structure/table/wood,/obj/item/storage/briefcase,/obj/item/taperecorder,/obj/item/radio{pixel_x = -6},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bCQ" = (/obj/structure/table/wood,/obj/machinery/computer/med_data/laptop{dir = 8; pixel_y = 2},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bCR" = (/obj/structure/window/reinforced/spawner/north,/obj/effect/turf_decal/stripes/line,/obj/machinery/mass_driver{dir = 8; id = "airbridge_in"; name = "Router Driver"},/turf/open/floor/plating,/area/router) -"bCS" = (/obj/structure/closet,/obj/machinery/camera{c_tag = "Central Plaza - Legal Desk"; dir = 1},/turf/open/floor/plasteel/dark,/area/lawoffice) -"bCT" = (/obj/structure/window/reinforced/spawner/north,/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/sorting/mail/flip,/obj/machinery/conveyor{dir = 8; id = "router_off"},/turf/open/floor/plating,/area/router) -"bCU" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating/airless,/area/maintenance/disposal) -"bCV" = (/turf/open/floor/plating/airless,/area/maintenance/disposal) -"bCW" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/machinery/door/airlock/engineering/glass{name = "Thermo-Electric Generator"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"bCX" = (/obj/machinery/rnd/production/circuit_imprinter/department/science,/obj/item/reagent_containers/glass/beaker/sulphuric,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/science/lab) -"bCY" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/sign/warning/nosmoking{pixel_x = 32},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bCZ" = (/obj/machinery/conveyor{dir = 8; id = "router_off"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/router) -"bDa" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"bDb" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external{name = "Recycler Exterior Access"; req_one_access_txt = "13;50"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) -"bDc" = (/obj/machinery/vending/security,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bDd" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Aft Maintenance - Port"; pixel_x = 22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"bDe" = (/obj/machinery/disposal/bin{name = "Corpse Delivery"},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/delivery/red,/turf/open/floor/plasteel/dark,/area/chapel/office) -"bDf" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/service,/turf/open/floor/plating,/area/storage/tech) -"bDg" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/medical,/turf/open/floor/plating,/area/storage/tech) -"bDh" = (/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/rnd,/turf/open/floor/plating,/area/storage/tech) -"bDi" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock{name = "Service Hallway"; req_one_access_txt = "25;26;28;35"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"bDj" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/decal/cleanable/dirt,/obj/machinery/meter,/turf/open/floor/plating,/area/maintenance/department/chapel) -"bDk" = (/obj/machinery/light,/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 15},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) -"bDl" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bDm" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/hallway/primary/aft"; dir = 1; name = "Aft Primary Hallway APC"; pixel_x = 1; pixel_y = 24},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/maintenance/aft) -"bDn" = (/obj/machinery/icecream_vat,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) -"bDo" = (/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"bDp" = (/obj/machinery/light_switch{pixel_x = 24},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"bDq" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) -"bDr" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) -"bDs" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) -"bDt" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) -"bDu" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/book/manual/wiki/barman_recipes,/obj/item/reagent_containers/rag,/obj/structure/table/wood/fancy,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bDv" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"bDw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "AIChamberShutter"; name = "AI Chamber Shutters"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) -"bDx" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/hallway/secondary/service) -"bDy" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bDz" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{dir = 1},/obj/machinery/camera{c_tag = "Service Hallway - Aft"; pixel_x = 22},/turf/open/floor/plating,/area/hallway/secondary/service) -"bDA" = (/turf/closed/wall/r_wall,/area/hallway/secondary/service) -"bDB" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"bDC" = (/turf/open/floor/plating,/area/hallway/secondary/service) -"bDD" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 8; id = "router_off"},/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/router) -"bDE" = (/obj/structure/closet/crate/freezer,/obj/item/reagent_containers/food/snacks/store/cheesewheel,/obj/item/reagent_containers/food/snacks/grown/pineapple,/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris,/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris,/obj/item/reagent_containers/food/snacks/grown/tomato,/obj/item/reagent_containers/food/snacks/grown/tomato,/obj/item/reagent_containers/food/snacks/grown/bluecherries,/obj/item/reagent_containers/food/snacks/grown/citrus/lime,/turf/open/floor/plating,/area/hallway/secondary/service) -"bDF" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plating,/area/hallway/secondary/service) -"bDG" = (/obj/machinery/atmospherics/pipe/manifold/general/visible,/turf/open/floor/plating,/area/hallway/secondary/service) -"bDH" = (/obj/machinery/atmospherics/components/unary/tank/air,/turf/open/floor/plating,/area/hallway/secondary/service) -"bDI" = (/obj/structure/closet/crate/freezer,/obj/effect/spawner/lootdrop/three_course_meal,/obj/item/reagent_containers/food/snacks/chocolatebar,/obj/item/reagent_containers/food/snacks/chocolatebar,/turf/open/floor/plating,/area/hallway/secondary/service) -"bDJ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"bDK" = (/obj/structure/grille,/turf/open/floor/plating,/area/hallway/secondary/service) -"bDL" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bDM" = (/obj/structure/table/reinforced,/obj/item/transfer_valve{pixel_x = 6},/obj/item/transfer_valve{pixel_x = 6},/obj/item/transfer_valve,/obj/item/transfer_valve,/obj/item/transfer_valve{pixel_x = -6},/obj/item/transfer_valve{pixel_x = -6},/obj/machinery/camera{c_tag = "Toxins Lab - Starboard"; dir = 8; pixel_y = -22},/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/turf/open/floor/plasteel/white,/area/science/mixing) -"bDN" = (/obj/machinery/vending/cola/random,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bDO" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"bDP" = (/obj/machinery/computer/message_monitor{dir = 4},/obj/machinery/light{dir = 8},/turf/open/floor/circuit,/area/bridge) -"bDQ" = (/obj/structure/chair{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/bridge) -"bDR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/bridge) -"bDS" = (/turf/open/floor/plasteel/stairs,/area/crew_quarters/bar) -"bDT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/science/robotics/lab) -"bDU" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "AIChamberShutter"; name = "AI Chamber Shutters"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) -"bDV" = (/turf/open/floor/plasteel/stairs/left,/area/crew_quarters/bar) -"bDW" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "AI Chamber"; req_access_txt = "65"},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) -"bDX" = (/turf/open/floor/plasteel/stairs/right,/area/crew_quarters/bar) -"bDY" = (/obj/structure/sign/barsign,/turf/closed/wall,/area/crew_quarters/bar) -"bDZ" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 26},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bEa" = (/obj/structure/chair/stool/bar,/turf/open/floor/carpet/green,/area/crew_quarters/bar) -"bEb" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/carpet/green,/area/crew_quarters/bar) -"bEc" = (/obj/structure/table,/obj/item/radio/off{pixel_x = -3; pixel_y = 1},/obj/item/radio/off{pixel_x = 7; pixel_y = -3},/obj/item/radio/off{pixel_x = 4; pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/circuit,/area/bridge) -"bEd" = (/obj/machinery/vending/cigarette,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bEe" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor{dir = 8; id = "router_off"},/obj/structure/disposalpipe/sorting/mail{dir = 4},/turf/open/floor/plating,/area/router) -"bEf" = (/obj/structure/reagent_dispensers,/obj/effect/spawner/lootdrop/maintenance,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"bEg" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) -"bEh" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/conveyor{dir = 8; id = "router_off"},/turf/open/floor/plating,/area/router) -"bEi" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/maintenance/department/chapel) -"bEj" = (/obj/machinery/light_switch{pixel_x = -24},/obj/structure/closet/crate,/obj/machinery/camera{c_tag = "Waste Disposal - Starboard"},/obj/item/stack/tile/noslip/thirty,/obj/structure/sign/poster/official/ue_no{pixel_y = 32},/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/disposal) -"bEk" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/stripes/end{dir = 4},/turf/open/floor/plating,/area/quartermaster/sorting) -"bEl" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bEm" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Personnel's Office"; req_access_txt = "57"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) -"bEn" = (/obj/machinery/computer/card{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 28},/turf/open/floor/plasteel,/area/security/checkpoint) -"bEo" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"bEp" = (/turf/closed/wall/r_wall,/area/maintenance/solars/starboard/fore) -"bEq" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) -"bEr" = (/obj/structure/sign/warning/vacuum/external{pixel_x = -32; pixel_y = 32},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"bEs" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/ai_monitored/storage/eva"; dir = 4; name = "EVA APC"; pixel_x = 24},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) -"bEt" = (/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) -"bEu" = (/obj/structure/sign/warning{name = "\improper CONSTRUCTION AREA"; pixel_y = 32},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"bEv" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"bEw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Starboard Bow Solar Maintenance"; dir = 1},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) -"bEx" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 8; id = "router_off"},/turf/open/floor/plating,/area/router) -"bEy" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light/small{dir = 4},/obj/item/stock_parts/cell/high/plus,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) -"bEz" = (/obj/structure/chair/stool,/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"bEA" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Starboard Bow Solar Maintenance"; req_access_txt = "10"},/turf/open/floor/plating,/area/maintenance/solars/starboard/fore) -"bEB" = (/obj/structure/rack,/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/item/radio/off{pixel_x = 7; pixel_y = 4},/obj/item/flashlight,/obj/item/crowbar/red,/obj/item/crowbar/red{pixel_x = -6; pixel_y = 4},/obj/item/radio/off{pixel_x = -8},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/machinery/camera{c_tag = "Starboard Bow Maintenance - Port"; pixel_x = 22},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"bEC" = (/obj/structure/table/glass,/obj/item/storage/fancy/donut_box,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bED" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/wood,/area/crew_quarters/fitness) -"bEE" = (/obj/structure/table,/obj/item/clothing/under/shorts/red,/obj/item/clothing/under/shorts/red,/obj/item/clothing/gloves/boxing{pixel_y = 8},/obj/item/clothing/gloves/boxing{pixel_y = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/wood,/area/crew_quarters/fitness) -"bEF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bEG" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bEH" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/kitchen/backroom) -"bEI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/fore) -"bEJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bEK" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/machinery/space_heater,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"bEL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/disposal) -"bEM" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bEN" = (/obj/machinery/computer/communications{dir = 8},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/camera{c_tag = "Bridge - Captain's Quarters"; dir = 8; pixel_y = -22},/obj/machinery/requests_console{announcementConsole = 1; department = "Captain's Desk"; departmentType = 5; name = "Captain RC"; pixel_x = 30},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) -"bEO" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light_switch{pixel_x = -24},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bEP" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/sign/poster/official/high_class_martini{pixel_x = -32},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"bEQ" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/disposal"; dir = 8; name = "Waste Disposal APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/disposal) -"bER" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/newscaster{pixel_y = -28},/turf/open/floor/carpet/green,/area/crew_quarters/bar) -"bES" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"bET" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/wood,/area/crew_quarters/fitness) -"bEU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"bEV" = (/obj/item/radio/intercom{frequency = 1359; name = "Station Intercom (Security)"; pixel_x = 26},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) -"bEW" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/break_room) -"bEX" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) -"bEY" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) -"bEZ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "AIChamberShutter"; name = "AI Chamber Shutters"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai) -"bFa" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plating,/area/router) -"bFb" = (/obj/structure/grille,/turf/open/floor/plating,/area/router) -"bFc" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bFd" = (/obj/structure/closet/crate/trashcart,/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel,/area/maintenance/department/chapel) -"bFe" = (/obj/structure/reagent_dispensers/watertank,/obj/item/reagent_containers/glass/bucket,/turf/open/floor/plating,/area/maintenance/starboard/central) -"bFf" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/aiModule/supplied/oxygen{pixel_x = 2; pixel_y = 10},/obj/item/aiModule/supplied/quarantine{pixel_x = 1; pixel_y = 8},/obj/item/aiModule/zeroth/oneHuman{pixel_y = 4},/obj/effect/spawner/lootdrop/aimodule_harmful{pixel_x = -1; pixel_y = 2},/obj/item/aiModule/supplied/protectStation{pixel_x = -2},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"bFg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/suit_storage_unit/engine,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"bFh" = (/obj/effect/turf_decal/tile/brown,/obj/machinery/light,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bFi" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bFj" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) -"bFk" = (/turf/open/floor/circuit/telecomms,/area/science/xenobiology) -"bFl" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/xenobiology) -"bFm" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/obj/item/paper_bin,/obj/item/pen/fourcolor,/turf/open/floor/plasteel,/area/science/xenobiology) -"bFn" = (/turf/open/floor/plating/asteroid,/area/chapel/main) -"bFo" = (/obj/machinery/smartfridge/extract/preloaded,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/xenobiology) -"bFp" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bFq" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/obj/item/slime_scanner,/obj/item/slime_scanner,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/gloves/color/latex,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/turf/open/floor/plasteel,/area/science/xenobiology) -"bFr" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plating/airless,/area/science/test_area) -"bFs" = (/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bFt" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bFu" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab) -"bFv" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"bFw" = (/obj/machinery/monkey_recycler,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/science/xenobiology"; name = "Xenobiology Lab APC"; pixel_y = -24},/turf/open/floor/plasteel,/area/science/xenobiology) -"bFx" = (/obj/machinery/mecha_part_fabricator,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bFy" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) -"bFz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/item/paper/guides/cogstation/janitor,/turf/open/floor/plasteel,/area/janitor) -"bFA" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bFB" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/science/lab) -"bFC" = (/obj/effect/turf_decal/bot,/obj/machinery/vending/snack/random,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bFD" = (/obj/structure/disposaloutlet{dir = 4},/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bFE" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/maintenance/aft) -"bFF" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/storage/tech) -"bFG" = (/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bFH" = (/obj/machinery/power/apc{name = "Customs APC"; pixel_y = -24},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"bFI" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"bFJ" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bFK" = (/obj/structure/window/reinforced{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"bFL" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"bFM" = (/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"bFN" = (/obj/structure/chair{dir = 4},/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/wood,/area/crew_quarters/fitness) -"bFO" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"bFP" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"bFQ" = (/obj/structure/table,/obj/item/clothing/under/shorts/blue,/obj/item/clothing/under/shorts/blue,/obj/item/clothing/gloves/boxing/blue{pixel_y = 8},/obj/item/clothing/gloves/boxing/blue{pixel_y = 8},/turf/open/floor/wood,/area/crew_quarters/fitness) -"bFR" = (/obj/item/kirbyplants{icon_state = "plant-08"},/turf/open/floor/wood,/area/crew_quarters/fitness) -"bFS" = (/obj/machinery/light,/turf/open/floor/wood,/area/crew_quarters/fitness) -"bFT" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"bFU" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"bFV" = (/obj/structure/window/reinforced,/obj/machinery/light,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"bFW" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"bFX" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bFY" = (/obj/structure/lattice/catwalk,/turf/closed/wall/r_wall,/area/engine/atmos) -"bFZ" = (/obj/machinery/chem_heater,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bGa" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bGb" = (/obj/machinery/conveyor/auto{id = "router"},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) -"bGc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) -"bGd" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore) -"bGe" = (/mob/living/simple_animal/crab/Coffee,/turf/open/floor/plating/asteroid,/area/chapel/main) -"bGf" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/security/main) -"bGg" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"bGh" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 10},/turf/open/space/basic,/area/space/nearstation) -"bGi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/fore) -"bGj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore) -"bGk" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/router) -"bGl" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/poster/contraband/punch_shit{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/fore) -"bGm" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore) -"bGn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) -"bGo" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/turf/open/floor/plating,/area/maintenance/starboard/fore) -"bGp" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"bGq" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/effect/spawner/lootdrop/maintenance{lootcount = 2; name = "2maintenance loot spawner"},/turf/open/floor/plating,/area/maintenance/starboard/fore) -"bGr" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bGs" = (/obj/machinery/vending/assist,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"bGt" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bGu" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"bGv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Arcade"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"bGw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Fitness Room"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/wood,/area/crew_quarters/fitness) -"bGx" = (/obj/effect/spawner/structure/window,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/crew_quarters/fitness) -"bGy" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/obj/effect/decal/cleanable/dirt,/obj/machinery/button/massdriver{id = "eng_in"; name = "mass driver button (Engineering)"; pixel_x = 24; pixel_y = -8},/obj/machinery/button/massdriver{id = "router_out"; name = "mass driver button (Other)"; pixel_x = 24; pixel_y = 12},/turf/open/floor/plasteel,/area/router) -"bGz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/fore) -"bGA" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bGB" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"bGC" = (/obj/structure/closet/emcloset,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/camera{c_tag = "Starboard Quarter Maintenance - Starboard"; network = list("ss13","rd")},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bGD" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"bGE" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bGF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Starboard Quarter Solar Access"; req_access_txt = "10"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) -"bGG" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"bGH" = (/obj/structure/grille/broken,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/spawner/lootdrop/grille_or_trash,/turf/open/floor/plating,/area/maintenance/port/fore) -"bGI" = (/turf/closed/wall/r_wall,/area/hallway/primary/central) -"bGJ" = (/obj/structure/rack,/obj/item/storage/box/bodybags,/obj/item/clothing/gloves/color/grey,/turf/open/floor/plating,/area/maintenance/starboard/central) -"bGK" = (/obj/machinery/conveyor{id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux) -"bGL" = (/obj/structure/chair{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/qm) -"bGM" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/item/kirbyplants{icon_state = "plant-20"; pixel_y = 3},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bGN" = (/obj/structure/closet/wardrobe/white,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bGO" = (/obj/structure/toilet{dir = 4},/obj/structure/window/reinforced/tinted{dir = 1},/obj/machinery/door/window/eastright{name = "Bathroom Stall"},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"bGP" = (/obj/machinery/mass_driver{dir = 1; id = "secserv"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) -"bGQ" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/violet/hidden,/turf/open/space/basic,/area/space/nearstation) -"bGR" = (/obj/structure/closet/wardrobe/grey,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/under/misc/staffassistant,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bGS" = (/obj/structure/toilet{dir = 4},/obj/structure/window/reinforced/tinted{dir = 1},/obj/machinery/door/window/eastright{name = "Bathroom Stall"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"bGT" = (/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/airalarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet) -"bGU" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/closed/wall,/area/maintenance/port/fore) -"bGV" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/closed/wall,/area/maintenance/port/fore) -"bGW" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/maintenance/port/fore) -"bGX" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/starboard/central) -"bGY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"bGZ" = (/obj/structure/closet/crate/internals,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/router/eva) -"bHa" = (/obj/structure/closet/crate,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/router/eva"; dir = 4; name = "EVA Router APC"; pixel_x = 24},/obj/machinery/button/door{id = "evablock"; name = "Router Access Control"; pixel_x = 24; pixel_y = 10; req_access_txt = "19"},/turf/open/floor/plasteel,/area/router/eva) -"bHb" = (/obj/structure/closet/wardrobe/black,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bHc" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/obj/structure/window/reinforced/spawner/north,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) -"bHd" = (/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore) -"bHe" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/violet/hidden,/turf/open/space/basic,/area/space/nearstation) -"bHf" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bHg" = (/obj/machinery/atmospherics/pipe/simple/violet/visible,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bHh" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/main) -"bHi" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/landmark/event_spawn,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"bHj" = (/obj/structure/table,/obj/structure/bedsheetbin/towel,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bHk" = (/turf/closed/wall,/area/crew_quarters/locker) -"bHl" = (/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/port/fore) -"bHm" = (/turf/open/floor/plating{icon_state = "platingdmg1"},/area/maintenance/port/fore) -"bHn" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bHo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bHp" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"bHq" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bHr" = (/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bHs" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bHt" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bHu" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bHv" = (/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/clothing/under/misc/staffassistant,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bHw" = (/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/item/clothing/under/misc/staffassistant,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bHx" = (/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/light,/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bHy" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/item/kirbyplants{icon_state = "plant-14"},/turf/open/floor/plasteel,/area/crew_quarters/locker) -"bHz" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) -"bHA" = (/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 5},/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"bHB" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/locker) -"bHC" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bHD" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/maintenance/aft) -"bHE" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bHF" = (/obj/structure/table/reinforced,/obj/item/assembly/timer{pixel_x = -5},/obj/item/assembly/timer{pixel_y = -7},/obj/item/assembly/timer{pixel_y = 6},/obj/item/assembly/timer{pixel_x = 8},/obj/machinery/airalarm/unlocked{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/white,/area/science/mixing) -"bHG" = (/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/maintenance/aft) -"bHH" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/sign/poster/contraband/space_cube{pixel_y = 32},/turf/open/floor/plasteel/dark/side{dir = 4},/area/gateway) -"bHI" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"bHJ" = (/obj/item/kirbyplants{icon_state = "plant-03"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"bHK" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall,/area/medical/morgue) -"bHL" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bHM" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/storage/tech) -"bHN" = (/turf/closed/wall,/area/maintenance/solars/starboard/aft) -"bHO" = (/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 8},/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"bHP" = (/obj/structure/sign/warning/vacuum/external{pixel_y = -32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) -"bHQ" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bHR" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bHS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/circuit/telecomms,/area/science/xenobiology) -"bHT" = (/obj/machinery/computer/camera_advanced/xenobio{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bHU" = (/obj/structure/chair/office/light{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bHV" = (/obj/machinery/processor/slime,/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bHW" = (/obj/structure/chair/office/light{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bHX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Port Bow Maintenance"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/port/fore) -"bHY" = (/obj/machinery/computer/camera_advanced/xenobio{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bHZ" = (/turf/closed/indestructible{desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; icon_state = "riveted"; name = "hyper-reinforced wall"},/area/science/test_area) -"bIa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bIb" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bIc" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/sorting/mail{dir = 1; sortType = 14},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bId" = (/obj/structure/table,/obj/item/mmi,/obj/item/mmi,/obj/item/storage/box/bodybags,/obj/structure/window/reinforced/spawner/west,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"bIe" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty{pixel_x = 1},/obj/item/stack/sheet/glass/fifty{pixel_x = 1},/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/obj/machinery/requests_console{department = "Robotics"; departmentType = 2; name = "Robotics RC"; pixel_y = 31; receive_ore_updates = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/robotics/lab) -"bIf" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/door/airlock/maintenance{name = "Chemistry Maintenance"; req_access_txt = "5; 33"},/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/chemistry) -"bIg" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/reagent_containers/food/snacks/chips,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bIh" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/delivery/white,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bIi" = (/obj/machinery/smartfridge/chemistry/preloaded,/turf/closed/wall,/area/medical/chemistry) -"bIj" = (/obj/structure/table/optable{name = "Robotics Operating Table"},/obj/item/tank/internals/anesthetic,/obj/item/clothing/mask/breath,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"bIk" = (/turf/closed/wall/r_wall,/area/science/robotics/lab) -"bIl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"bIm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bIn" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bIo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/directions/evac{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/open/floor/plating,/area/hallway/primary/aft) -"bIp" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/primary/aft) -"bIq" = (/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bIr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"bIs" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bIt" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bIu" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "5;6"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"bIv" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"bIw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"bIx" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bIy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "External Solar Access"; req_access_txt = "10;13"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) -"bIz" = (/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) -"bIA" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) -"bIB" = (/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) -"bIC" = (/obj/machinery/conveyor/auto{id = "disposal"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"bID" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"bIE" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/open/floor/circuit/telecomms,/area/science/xenobiology) -"bIF" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"bIG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bIH" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bII" = (/obj/machinery/atmospherics/components/binary/valve{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bIJ" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bIK" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/item/extinguisher{pixel_x = -7; pixel_y = 3},/obj/item/extinguisher,/turf/open/floor/plasteel,/area/science/xenobiology) -"bIL" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/table/glass,/obj/item/reagent_containers/glass/beaker/large{pixel_x = -3; pixel_y = 3},/obj/item/reagent_containers/glass/beaker/large,/obj/item/reagent_containers/dropper,/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bIM" = (/obj/machinery/shower{desc = "The HS-451. Standard Nanotrasen Hygiene Division design, although it looks like this one was installed more recently."; dir = 8; name = "emergency shower"; pixel_y = -4},/obj/structure/window/reinforced/spawner/north,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/medical/chemistry) -"bIN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bIO" = (/obj/effect/turf_decal/tile/purple,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bIP" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bIQ" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bIR" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bIS" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bIT" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/violet/hidden,/turf/open/space/basic,/area/space/nearstation) -"bIU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/junction{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bIV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"bIW" = (/obj/structure/table/wood,/obj/machinery/light,/obj/item/reagent_containers/food/drinks/bottle/absinthe,/obj/item/stack/spacecash/c20,/obj/item/coin/gold,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop) -"bIX" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel) -"bIY" = (/obj/machinery/atmospherics/pipe/simple/violet/hidden,/turf/open/space/basic,/area/space) -"bIZ" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bJa" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bJb" = (/obj/machinery/bloodbankgen,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bJc" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bJd" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bJe" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bJf" = (/obj/machinery/door/airlock/maintenance{name = "Chemistry Maintenance"; req_access_txt = "5; 33"},/obj/machinery/door/firedoor,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/medical/chemistry) -"bJg" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/storage/box/rxglasses{pixel_x = 2},/obj/item/pen,/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bJh" = (/obj/structure/sign/warning/biohazard,/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/medical/morgue) -"bJi" = (/obj/structure/bodycontainer/morgue,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"bJj" = (/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 6},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bJk" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"bJl" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bJm" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/lawoffice"; dir = 1; name = "Information Office APC"; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/lawoffice) -"bJn" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/suit/straight_jacket,/obj/item/clothing/mask/muzzle,/obj/item/clothing/mask/muzzle,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bJo" = (/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) -"bJp" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft) -"bJq" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) -"bJr" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{dir = 1},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) -"bJs" = (/obj/structure/rack,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/item/clothing/suit/hooded/wintercoat/science,/obj/item/clothing/suit/hooded/wintercoat/science,/obj/item/clothing/shoes/winterboots,/obj/item/clothing/shoes/winterboots,/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bJt" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bJu" = (/obj/effect/turf_decal/loading_area,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/science/lab"; dir = 8; name = "Research and Development APC"; pixel_x = -24},/turf/open/floor/plasteel/white,/area/science/lab) -"bJv" = (/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bJw" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) -"bJx" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel,/area/science/xenobiology) -"bJy" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/airlock/public/glass,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bJz" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/circuit) -"bJA" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Circuitry Lab"; req_access_txt = "47"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/circuit) -"bJB" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bJC" = (/obj/machinery/camera{c_tag = "Library"; network = list("ss13","rd")},/obj/machinery/airalarm{pixel_y = 24},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/library) -"bJD" = (/obj/machinery/disposal/bin{name = "Corpse Disposal Unit"},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/red/full,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"bJE" = (/obj/machinery/mecha_part_fabricator,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bJF" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bJG" = (/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bJH" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab) -"bJI" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bJJ" = (/obj/machinery/computer/med_data,/obj/structure/window/reinforced/spawner/east,/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel,/area/medical/medbay/central) -"bJK" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/medical/medbay/lobby) -"bJL" = (/obj/machinery/dna_scannernew,/obj/effect/turf_decal/bot,/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel,/area/medical/medbay/central) -"bJM" = (/obj/machinery/camera/preset/toxins{dir = 4},/obj/item/target,/turf/open/floor/plating/airless,/area/science/test_area) -"bJN" = (/obj/machinery/clonepod,/obj/effect/turf_decal/bot,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel,/area/medical/medbay/central) -"bJO" = (/obj/structure/table,/obj/machinery/light_switch{pixel_x = 24},/obj/item/storage/firstaid/radbgone,/obj/item/reagent_containers/glass/beaker/synthflesh,/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel,/area/medical/medbay/central) -"bJP" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"bJQ" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) -"bJR" = (/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bJS" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"bJT" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/science/mixing) -"bJU" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"bJV" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{dir = 1; name = "euthanization chamber freezer"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"bJW" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/light,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"bJX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bJY" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/mixing) -"bJZ" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/camera{c_tag = "Xenobiology - Main Access"; network = list("ss13","rd")},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bKa" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bKb" = (/obj/machinery/chem_heater,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light,/turf/open/floor/plasteel,/area/science/xenobiology) -"bKc" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/reagent_containers/glass/beaker/large{pixel_x = -6},/obj/item/reagent_containers/glass/beaker{pixel_x = 4},/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel,/area/science/xenobiology) -"bKd" = (/obj/structure/table,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/assembly/flash/handheld,/obj/item/clothing/glasses/welding,/obj/item/clothing/glasses/welding,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 26},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bKe" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics"; name = "robotics lab shutters"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/science/robotics/lab) -"bKf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bKg" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"bKh" = (/obj/machinery/door/window/westleft{name = "Operating Theatre"; req_access_txt = "45"},/turf/open/floor/plasteel,/area/medical/medbay/central) -"bKi" = (/obj/machinery/disposal/bin{name = "Morgue Delivery Bin"},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/red/full,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"bKj" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bKk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Morgue Maintenance"; req_access_txt = "6"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"bKl" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet,/turf/open/floor/plating,/area/router) -"bKm" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/item/storage/box/bodybags,/obj/structure/table,/obj/structure/table,/obj/item/bodybag,/obj/item/pen/blue,/obj/item/pen/red{pixel_y = 6},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"bKn" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/stripes/red/full,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"bKo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/quartermaster/miningoffice) -"bKp" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/hop) -"bKq" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/firedoor,/obj/effect/turf_decal/caution/stand_clear{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/xenobiology) -"bKr" = (/obj/item/stack/packageWrap,/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/router) -"bKs" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bKt" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bKu" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bKv" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bKw" = (/obj/structure/window/reinforced/spawner/west,/obj/structure/sign/poster/official/nanotrasen_logo{pixel_y = -32},/turf/open/floor/wood,/area/library) -"bKx" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"bKy" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bKz" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/genetics) -"bKA" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/genetics) -"bKB" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/warehouse) -"bKC" = (/obj/structure/sign/warning/biohazard,/turf/closed/wall,/area/medical/genetics) -"bKD" = (/obj/machinery/door/airlock/external/glass{name = "Mining Dock Ferry"; req_access_txt = "48"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bKE" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/engine,/area/science/xenobiology) -"bKF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/engine,/area/science/xenobiology) -"bKG" = (/obj/machinery/computer/cargo/request{dir = 1},/obj/machinery/keycard_auth{pixel_x = 24; pixel_y = -8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/carpet/green,/area/crew_quarters/heads/hop) -"bKH" = (/obj/item/beacon,/turf/open/floor/plating/airless,/area/science/test_area) -"bKI" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/engine,/area/science/mixing) -"bKJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/crew_quarters/heads/hop) -"bKK" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hop) -"bKL" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/junction/yjunction{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/router) -"bKM" = (/turf/open/floor/engine,/area/science/xenobiology) -"bKN" = (/obj/structure/table,/obj/item/storage/backpack/duffelbag/med/surgery,/obj/structure/window/reinforced/spawner/west,/obj/structure/window/reinforced,/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"bKO" = (/obj/structure/window/reinforced,/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"bKP" = (/obj/machinery/door/window/southright,/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"bKQ" = (/obj/structure/disposalpipe/segment,/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"bKR" = (/obj/structure/bookcase/random/religion,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/library) -"bKS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Genetics Lab"; req_access_txt = "9"},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bKT" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bKU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/vending/wardrobe/gene_wardrobe,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bKV" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/clipboard{pixel_y = 3},/obj/item/paper_bin,/obj/item/hand_labeler,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bKW" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/folder/white,/obj/item/storage/pill_bottle/mannitol{pixel_x = 4},/obj/item/storage/pill_bottle/mutadone,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bKX" = (/obj/structure/table_frame,/obj/item/t_scanner{pixel_x = -4},/obj/machinery/camera{c_tag = "Supply - Warehouse Fore"; dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/warehouse) -"bKY" = (/turf/closed/wall,/area/medical/genetics) -"bKZ" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) -"bLa" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bLb" = (/obj/structure/closet/crate,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/item/stack/ore/glass,/obj/item/stack/ore/iron,/obj/item/stack/ore/silver,/obj/item/stack/ore/silver,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bLc" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) -"bLd" = (/mob/living/simple_animal/slime,/turf/open/floor/engine,/area/science/xenobiology) -"bLe" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hop) -"bLf" = (/obj/machinery/door/window/eastleft{name = "Containment Pen"; req_one_access_txt = "55"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/xenobiology) -"bLg" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bLh" = (/obj/structure/bed,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -28},/obj/item/bedsheet/captain,/obj/effect/landmark/start/captain,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) -"bLi" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"bLj" = (/obj/machinery/door/window/westright{name = "Containment Pen"; req_one_access_txt = "55"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/xenobiology) -"bLk" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) -"bLl" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) -"bLm" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"bLn" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/item/caution,/obj/item/shovel,/obj/item/stack/tile/plasteel{pixel_x = 10; pixel_y = 4},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/warehouse) -"bLo" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/junction/yjunction{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router) -"bLp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) -"bLq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Genetics Lab"; req_access_txt = "9"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bLr" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bLs" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/geneticist,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bLt" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bLu" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bLv" = (/obj/machinery/light,/obj/structure/rack,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bLw" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 6},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bLx" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/science/mixing) -"bLy" = (/obj/structure/disposaloutlet{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/engine,/area/science/xenobiology) -"bLz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"bLA" = (/obj/machinery/light_switch{pixel_y = -24},/obj/structure/table,/obj/item/stack/sheet/metal,/obj/item/stack/sheet/glass,/obj/item/flashlight,/obj/item/assembly/health,/obj/item/assembly/voice,/obj/item/assembly/timer,/obj/item/assembly/infra,/obj/item/assembly/igniter,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bLB" = (/obj/machinery/light,/obj/item/target,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plating/airless,/area/science/test_area) -"bLC" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"bLD" = (/obj/structure/closet/firecloset,/turf/open/floor/plating,/area/maintenance/aft) -"bLE" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/button/ignition/incinerator/toxmix{pixel_x = -24; pixel_y = 8},/obj/machinery/button/door/incinerator_vent_toxmix{pixel_x = -24; pixel_y = -2},/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/mixing) -"bLF" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"bLG" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Research Aft"; dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bLH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bLI" = (/obj/structure/reagent_dispensers/water_cooler,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/medical/medbay/central) -"bLJ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bLK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bLL" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bLM" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/medical/genetics) -"bLN" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bLO" = (/obj/item/pipe{pixel_x = -3},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/mob/living/simple_animal/bot/cleanbot{auto_patrol = 1; icon_state = "cleanbot1"; name = "Mopficcer Sweepsky"},/turf/open/floor/plating,/area/quartermaster/warehouse) -"bLP" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plating,/area/quartermaster/warehouse) -"bLQ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bLR" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bLS" = (/obj/machinery/atmospherics/pipe/simple/violet/visible,/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"bLT" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bLU" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bLV" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bLW" = (/obj/machinery/vending/coffee,/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central) -"bLX" = (/obj/item/kirbyplants{icon_state = "plant-02"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bLY" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bLZ" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bMa" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bMb" = (/obj/machinery/dna_scannernew,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bMc" = (/obj/machinery/computer/scan_consolenew{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bMd" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bMe" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bMf" = (/obj/machinery/computer/scan_consolenew{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/white,/area/medical/genetics) -"bMg" = (/obj/machinery/dna_scannernew,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) -"bMh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) -"bMi" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"bMj" = (/turf/closed/wall,/area/medical/medbay/central) -"bMk" = (/turf/closed/wall,/area/medical/virology) -"bMl" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/medical/virology) -"bMm" = (/obj/structure/table/wood,/obj/machinery/light,/obj/item/clothing/under/misc/assistantformal{pixel_y = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"bMn" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/door/airlock/medical/glass{name = "Monkey Pen"; req_one_access_txt = "9;39"},/turf/open/floor/plasteel/white,/area/medical/virology) -"bMo" = (/obj/structure/closet/l3closet/virology,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/white,/area/medical/virology) -"bMp" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bMq" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Starboard Quarter Maintenance - Port"; dir = 8; pixel_y = -22},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bMr" = (/obj/machinery/vending/wardrobe/viro_wardrobe,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bMs" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/turf/open/floor/plasteel/white,/area/medical/virology) -"bMt" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 10},/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bMu" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bMv" = (/turf/open/floor/grass,/area/medical/virology) -"bMw" = (/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/virology) -"bMx" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bMy" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bMz" = (/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/router"; dir = 4; name = "Router APC"; pixel_x = 24},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 19},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel,/area/router) -"bMA" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bMB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall,/area/router) -"bMC" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bMD" = (/obj/structure/flora/tree/palm,/obj/machinery/light{dir = 8},/turf/open/floor/grass,/area/medical/virology) -"bME" = (/obj/structure/flora/tree/palm,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/grass,/area/medical/virology) -"bMF" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/window/southright{name = "Cloning Access"; req_one_access_txt = "9;45"},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bMG" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bMH" = (/obj/structure/table,/obj/machinery/recharger,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/crowbar,/obj/machinery/requests_console{department = "Mining"; name = "Mining RC"; pixel_x = -30},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bMI" = (/obj/effect/decal/cleanable/dirt,/obj/structure/grille/broken,/obj/structure/disposalpipe/sorting/mail/flip{dir = 4; sortType = 15},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/router) -"bMJ" = (/turf/open/floor/plasteel/white,/area/medical/virology) -"bMK" = (/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 5},/turf/open/space/basic,/area/space/nearstation) -"bML" = (/obj/structure/flora/tree/palm,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/virology) -"bMM" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/structure/lattice,/turf/open/space/basic,/area/space/nearstation) -"bMN" = (/obj/structure/closet/l3closet/virology,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bMO" = (/obj/structure/closet/secure_closet/medical1,/obj/machinery/light_switch{pixel_y = 24},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bMP" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/white,/area/medical/virology) -"bMQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bMR" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bMS" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/rust,/area/router) -"bMT" = (/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start/virologist,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) -"bMU" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/table,/obj/item/storage/box/donkpockets,/turf/open/floor/plasteel/white,/area/medical/virology) -"bMV" = (/obj/machinery/light,/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/virology) -"bMW" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/router) -"bMX" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"bMY" = (/obj/machinery/portable_atmospherics/canister/air,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) -"bMZ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) -"bNa" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) -"bNb" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) -"bNc" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/chair/office/light{dir = 1},/obj/effect/landmark/start/virologist,/turf/open/floor/plasteel/white,/area/medical/virology) -"bNd" = (/obj/machinery/computer/atmos_alert{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/engine/atmos) -"bNe" = (/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/door/window/northleft{name = "AI Upload Chamber"; req_one_access_txt = "65"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) -"bNf" = (/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/router) -"bNg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/medical/virology) -"bNh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Virology Interior Airlock"; req_access_txt = "39"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) -"bNi" = (/obj/effect/landmark/blobstart,/turf/open/floor/grass,/area/medical/virology) -"bNj" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) -"bNk" = (/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) -"bNl" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/conveyor/auto{dir = 4; id = "router"},/turf/open/floor/plating,/area/router) -"bNm" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/paper_bin,/obj/item/pen/red,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/medical/virology) -"bNn" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/mass_driver{dir = 4; id = "router_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router) -"bNo" = (/obj/machinery/conveyor{dir = 1; id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux) -"bNp" = (/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"bNq" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"bNr" = (/obj/structure/table,/obj/machinery/light{dir = 1},/obj/structure/bedsheetbin,/obj/item/clothing/glasses/science,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bNs" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bNt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bNu" = (/obj/machinery/light{dir = 8},/turf/open/floor/grass,/area/medical/virology) -"bNv" = (/obj/structure/sink{dir = 1; pixel_y = 25},/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bNw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) -"bNx" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/virology) -"bNy" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bNz" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/virology) -"bNA" = (/obj/machinery/smartfridge/chemistry/virology/preloaded,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel/white,/area/medical/virology) -"bNB" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/item/clothing/gloves/color/latex,/obj/item/healthanalyzer,/turf/open/floor/plasteel/white,/area/medical/virology) -"bNC" = (/obj/structure/table,/obj/machinery/reagentgrinder,/obj/machinery/light,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel/white,/area/medical/virology) -"bND" = (/obj/machinery/computer/pandemic,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel/white,/area/medical/virology) -"bNE" = (/obj/machinery/computer/station_alert{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/dark/corner,/area/engine/atmos) -"bNF" = (/turf/open/floor/plasteel/stairs,/area/medical/medbay/central) -"bNG" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"bNH" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) -"bNI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/departments/evac,/turf/open/floor/plating,/area/hallway/secondary/exit) -"bNJ" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/hallway/secondary/exit) -"bNK" = (/obj/machinery/power/solar{id = "aftstarboard"; name = "Aft-Starboard Solar Array"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/aft) -"bNL" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/solar/starboard/aft) -"bNM" = (/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/oil,/turf/open/floor/plasteel,/area/maintenance/port/fore) -"bNN" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/router/eva) -"bNO" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) -"bNP" = (/obj/machinery/power/smes,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) -"bNQ" = (/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) -"bNR" = (/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) -"bNS" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/turf/open/space/basic,/area/solar/starboard/aft) -"bNT" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/port/fore) -"bNU" = (/obj/machinery/power/solar{id = "aftstarboard"; name = "Aft-Starboard Solar Array"},/obj/structure/cable,/turf/open/floor/plasteel/airless/solarpanel,/area/solar/starboard/aft) -"bNV" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bNW" = (/turf/open/floor/plasteel/stairs/left,/area/hallway/secondary/exit) -"bNX" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/stairs/right,/area/hallway/secondary/exit) -"bNY" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/stairs/left,/area/hallway/secondary/exit) -"bNZ" = (/turf/open/floor/plasteel/stairs/right,/area/hallway/secondary/exit) -"bOa" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bOb" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/hallway/secondary/exit) -"bOc" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-4"},/turf/open/space/basic,/area/solar/starboard/aft) -"bOd" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/space/basic,/area/solar/starboard/aft) -"bOe" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external/glass{name = "Departures Shuttle Dock"},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bOf" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "0-2"},/turf/open/space/basic,/area/solar/starboard/aft) -"bOg" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bOh" = (/obj/effect/turf_decal/stripes/line{dir = 5},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bOi" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bOj" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bOk" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/solar/starboard/aft) -"bOl" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bOm" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bOn" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Bathroom Maintenance"; req_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/crew_quarters/toilet/restrooms) -"bOo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/docking,/turf/open/floor/plating,/area/hallway/secondary/exit) -"bOp" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft) -"bOq" = (/obj/machinery/power/tracker,/obj/structure/cable,/turf/open/floor/plating/airless,/area/solar/starboard/aft) -"bOr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/closed/wall/r_wall,/area/science/mixing) -"bOs" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister/bz,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"bOt" = (/obj/structure/table,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/gateway) -"bOu" = (/obj/structure/table/reinforced,/obj/item/assembly/prox_sensor{pixel_x = 8},/obj/item/assembly/prox_sensor{pixel_x = 8},/obj/item/assembly/prox_sensor{pixel_x = 8},/obj/item/assembly/prox_sensor{pixel_x = 8},/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_x = 30; receive_ore_updates = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) -"bOv" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/science/mixing) -"bOw" = (/obj/structure/lattice,/obj/item/reagent_containers/food/drinks/bottle/grappa,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation) -"bOx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/science/research{name = "Research Sector"}) -"bOy" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/light{dir = 1; light_color = "#c1caff"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"bOz" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"bOA" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"bOB" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/router/eva) -"bOC" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/router/eva) -"bOD" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/obj/machinery/sparker/toxmix{pixel_x = 25},/turf/open/floor/engine/vacuum,/area/science/mixing) -"bOE" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/item/hand_labeler,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bOF" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bOG" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"bOH" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"bOI" = (/obj/structure/table/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/computer/security/telescreen{dir = 1; name = "Test Chamber Monitor"; network = list("xeno"); pixel_y = 2},/turf/open/floor/plasteel,/area/science/xenobiology) -"bOJ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/obj/structure/cable{icon_state = "4-8"},/mob/living/simple_animal/pet/cat/space,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) -"bOK" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/window/northright{name = "Secure Xenobiological Containment"; req_one_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) -"bOL" = (/obj/machinery/computer/card{dir = 8},/obj/machinery/keycard_auth{pixel_x = 8; pixel_y = -24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) -"bOM" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/science/xenobiology) -"bON" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"bOO" = (/obj/machinery/portable_atmospherics/scrubber,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/dark,/area/science/explab) -"bOP" = (/obj/machinery/shieldwallgen/xenobiologyaccess,/turf/open/floor/plating,/area/science/xenobiology) -"bOQ" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"bOR" = (/obj/structure/table/wood,/obj/item/pinpointer/nuke,/obj/item/card/id/captains_spare,/obj/item/hand_tele,/obj/item/disk/nuclear,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"bOS" = (/obj/structure/table/wood,/obj/machinery/light,/obj/item/storage/photo_album/Captain,/obj/item/camera{pixel_y = -6},/obj/item/stamp/captain,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"bOT" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1},/turf/open/floor/engine,/area/science/xenobiology) -"bOU" = (/obj/structure/disposaloutlet,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/engine,/area/science/xenobiology) -"bOV" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/department/eva) -"bOW" = (/obj/structure/bookcase/random/nonfiction,/turf/open/floor/engine,/area/science/xenobiology) -"bOX" = (/obj/structure/table/reinforced,/obj/item/electropack,/obj/item/assembly/signaler,/turf/open/floor/engine,/area/science/xenobiology) -"bOY" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/machinery/camera{c_tag = "Customs - Aft"; dir = 4},/obj/structure/window/reinforced/spawner,/obj/machinery/door/poddoor/shutters/preopen{id = "HoPAft"; name = "HoP Aft Desk Shutters"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"bOZ" = (/obj/structure/bed,/obj/item/bedsheet/purple,/turf/open/floor/engine,/area/science/xenobiology) -"bPa" = (/obj/item/beacon,/turf/open/floor/engine,/area/science/xenobiology) -"bPb" = (/obj/structure/table/reinforced,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/obj/item/assembly/igniter,/turf/open/floor/engine,/area/science/xenobiology) -"bPc" = (/obj/structure/chair/comfy/black,/turf/open/floor/engine,/area/science/xenobiology) -"bPd" = (/obj/structure/table/reinforced,/obj/item/book/random/triple,/turf/open/floor/engine,/area/science/xenobiology) -"bPe" = (/obj/structure/table/reinforced,/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/engine,/area/science/xenobiology) -"bPf" = (/obj/machinery/light,/turf/open/floor/engine,/area/science/xenobiology) -"bPg" = (/obj/structure/chair{dir = 4},/turf/open/floor/engine,/area/science/xenobiology) -"bPh" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space/nearstation) -"bPi" = (/obj/structure/chair{dir = 8},/turf/open/floor/engine,/area/science/xenobiology) -"bPj" = (/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner,/obj/machinery/light,/turf/open/floor/engine,/area/science/xenobiology) -"bPk" = (/obj/structure/table/reinforced,/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/under/misc/staffassistant,/obj/item/clothing/suit/apron/surgical,/obj/item/clothing/suit/apron/surgical,/turf/open/floor/engine,/area/science/xenobiology) -"bPl" = (/obj/structure/chair/sofa/right,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/item/book/manual/wiki/research_and_development,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bPm" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bPn" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bPo" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plating/airless,/area/space/nearstation) -"bPp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/structure/window/reinforced/spawner/north,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) -"bPq" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/mineral/stacking_machine{input_dir = 2},/turf/open/floor/plating,/area/maintenance/disposal) -"bPr" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"bPs" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft) -"bPt" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/bridge) -"bPu" = (/obj/effect/landmark/start/cook,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/cafeteria,/area/crew_quarters/kitchen) -"bPv" = (/obj/structure/table/reinforced,/obj/item/clothing/gloves/color/yellow,/obj/item/multitool,/obj/item/multitool{pixel_x = 5; pixel_y = 3},/obj/item/t_scanner{pixel_x = -6; pixel_y = 4},/obj/item/t_scanner{pixel_x = -4},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) -"bPw" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft) -"bPx" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/storage/primary) -"bPy" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"bPz" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bPA" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"bPB" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bPC" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "Waste In"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bPD" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/camera{c_tag = "Escape Hall - Fore"; dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bPE" = (/obj/structure/table/glass,/obj/item/clipboard,/obj/item/storage/crayons,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bPF" = (/obj/structure/table/glass,/obj/item/storage/fancy/cigarettes,/obj/item/lighter{pixel_x = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bPG" = (/obj/structure/chair{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bPH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bPI" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bPJ" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bPK" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"bPL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"bPM" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/storage/tech) -"bPN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft) -"bPO" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/effect/turf_decal/tile/red,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/exit) -"bPP" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/medical/medbay/central) -"bPQ" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bPR" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light_switch{pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bPS" = (/obj/structure/bodycontainer/morgue{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"bPT" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white/corner{dir = 4},/area/hallway/secondary/exit) -"bPU" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/highsecurity{name = "AI Upload Access"; req_access_txt = "16"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) -"bPV" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai) -"bPW" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/vehicle/ridden/atv,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/qm) -"bPX" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 9},/turf/open/space/basic,/area/space/nearstation) -"bPY" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bPZ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/sorting/mail{sortType = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bQa" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bQb" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/camera/motion{c_tag = "AI Foyer"; network = list("minisat"); pixel_x = 22},/obj/machinery/turretid{control_area = "/area/ai_monitored/turret_protected/ai"; dir = 1; name = "AI Chamber turret control"; pixel_x = 5; pixel_y = 24; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"bQc" = (/obj/structure/bodycontainer/morgue{dir = 8},/obj/machinery/light/small{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"bQd" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bQe" = (/obj/structure/lattice,/obj/structure/grille/broken,/turf/open/space/basic,/area/space/nearstation) -"bQf" = (/obj/structure/rack,/obj/item/tank/jetpack/carbondioxide,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bQg" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=sci"; location = "market"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bQh" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bQi" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) -"bQj" = (/obj/structure/bodycontainer/morgue{dir = 8},/obj/machinery/light_switch{pixel_x = 24},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"bQk" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bQl" = (/obj/structure/bed/roller,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bQm" = (/obj/structure/bed/roller,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bQn" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bQo" = (/obj/structure/disposalpipe/junction/yjunction,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"bQp" = (/obj/effect/decal/cleanable/dirt,/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light/small,/turf/open/floor/plasteel,/area/maintenance/aft) -"bQq" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/structure/table/wood,/obj/machinery/airalarm{pixel_y = 24},/obj/item/modular_computer/laptop/preset/civilian,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/paper/guides/cogstation/letter_atmos,/turf/open/floor/plasteel,/area/engine/break_room) -"bQr" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bQs" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) -"bQt" = (/obj/machinery/conveyor/auto{dir = 5; id = "router"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) -"bQu" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bQv" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 24},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bQw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bQx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bQy" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bQz" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bQA" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -28},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel/dark,/area/lawoffice) -"bQB" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/weldingtool,/obj/item/wrench/medical,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bQC" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bQD" = (/obj/machinery/power/apc{name = "Tech Storage APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/storage/tech) -"bQE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft) -"bQF" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) -"bQG" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) -"bQH" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) -"bQI" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bQJ" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/power/apc{name = "Medbay Treatment Center APC"; pixel_y = -24},/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/cable,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bQK" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/atmospheric_technician,/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"bQL" = (/obj/structure/disposalpipe/junction{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bQM" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/break_room) -"bQN" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space/basic,/area/space/nearstation) -"bQO" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/space/basic,/area/space/nearstation) -"bQP" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bQQ" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/dark/side{dir = 8},/area/science/robotics/lab) -"bQR" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/directions/evac{dir = 1},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/primary/aft) -"bQS" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space/basic,/area/space/nearstation) -"bQT" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/radio/intercom{frequency = 1447; name = "Station Intercom (AI Private)"; pixel_y = 24},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/status_display{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) -"bQU" = (/obj/structure/chair/office/light{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/virology) -"bQV" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/space/basic,/area/space/nearstation) -"bQW" = (/obj/machinery/conveyor/auto{dir = 4; id = "router"},/turf/open/floor/plating,/area/router) -"bQX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/science/mixing) -"bQY" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bQZ" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/landmark/start/scientist,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bRa" = (/obj/item/cigbutt,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore) -"bRb" = (/obj/machinery/door/window/southleft{name = "Captain's Equipment"; req_access_txt = "20"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain) -"bRc" = (/obj/machinery/suit_storage_unit/captain,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"bRd" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/engine/storage"; dir = 4; name = "Canister Storage APC"; pixel_x = 24},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) -"bRe" = (/obj/machinery/computer/security/wooden_tv,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/lawoffice) -"bRf" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bRg" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bRh" = (/obj/structure/sign/warning/securearea{pixel_x = -32},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit) -"bRi" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) -"bRj" = (/obj/machinery/atmospherics/components/trinary/filter/flipped,/turf/open/floor/plasteel/white,/area/science/mixing) -"bRk" = (/obj/machinery/disposal/bin,/obj/machinery/light{dir = 4},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/white,/area/science/mixing) -"bRl" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plating,/area/router) -"bRm" = (/obj/structure/closet/bombcloset,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/white,/area/science/mixing) -"bRn" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation) -"bRo" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden,/turf/open/space/basic,/area/space/nearstation) -"bRp" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 5},/turf/open/space/basic,/area/space/nearstation) -"bRq" = (/obj/machinery/portable_atmospherics/scrubber/huge/movable,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/white,/area/science/mixing) -"bRr" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bRs" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bRt" = (/obj/structure/closet/wardrobe/miner,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/quartermaster/miningoffice"; dir = 8; name = "Mining Office APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bRu" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/qm) -"bRv" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/space/basic,/area/space/nearstation) -"bRw" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bRx" = (/obj/structure/table,/obj/item/circuitboard/machine/cyborgrecharger,/obj/item/disk/design_disk,/obj/machinery/camera/motion{c_tag = "Computer Core"; dir = 1; network = list("minisat")},/turf/open/floor/circuit/green,/area/science/server{name = "Computer Core"}) -"bRy" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bRz" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bRA" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"bRB" = (/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 29},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bRC" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) -"bRD" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = -6; pixel_y = 2},/obj/item/reagent_containers/food/drinks/drinkingglass{pixel_x = 6; pixel_y = 3},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/bridge) -"bRE" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/router) -"bRF" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"bRG" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bRH" = (/obj/structure/chair/sofa/right,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 29},/turf/open/floor/wood,/area/medical/medbay/lobby) -"bRI" = (/turf/closed/wall/r_wall,/area/medical/medbay/central) -"bRJ" = (/obj/structure/chair/sofa/left,/obj/effect/landmark/start/assistant,/obj/machinery/status_display{pixel_y = 32},/obj/machinery/camera{c_tag = "Medbay - Waiting Room"; network = list("ss13","rd")},/turf/open/floor/wood,/area/medical/medbay/lobby) -"bRK" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/engine/vacuum,/area/engine/atmos) -"bRL" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bRM" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/left,/area/science/research{name = "Research Sector"}) -"bRN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/stairs/medium,/area/science/research{name = "Research Sector"}) -"bRO" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bRP" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "E.V.A. Storage"; req_access_txt = "18"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bRQ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bRR" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/junction/flip{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bRS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bRT" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal/bin{name = "Lab Delivery"},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bRU" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bRV" = (/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/dark/side{dir = 9},/area/science/robotics/lab) -"bRW" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/status_display/ai{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bRX" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bRY" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bRZ" = (/obj/structure/bookcase/random/nonfiction,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/library) -"bSa" = (/obj/structure/closet/secure_closet/medical3,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/storage/belt/medolier,/obj/item/clothing/neck/stethoscope,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bSb" = (/turf/open/floor/engine/n2o,/area/engine/atmos) -"bSc" = (/obj/machinery/vending/wardrobe/medi_wardrobe,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bSd" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/loading_area,/turf/open/floor/plasteel/dark/side{dir = 1},/area/science/robotics/lab) -"bSe" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel/dark/side{dir = 1},/area/science/robotics/lab) -"bSf" = (/obj/structure/table,/obj/item/analyzer,/obj/item/healthanalyzer,/obj/item/plant_analyzer,/obj/item/aicard,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 29},/turf/open/floor/plating,/area/storage/tech) -"bSg" = (/obj/machinery/rnd/production/techfab/department/medical,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bSh" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/medical/medbay/central) -"bSi" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/engine/n2o,/area/engine/atmos) -"bSj" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/effect/landmark/blobstart,/obj/effect/landmark/xeno_spawn,/obj/machinery/camera{c_tag = "Xenobiology - Kill Chamber"; dir = 4},/turf/open/floor/circuit/telecomms,/area/science/xenobiology) -"bSk" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/public/glass{name = "AI Access"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) -"bSl" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing) -"bSm" = (/obj/machinery/modular_computer/console/preset/engineering,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) -"bSn" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/electricshock,/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"}) -"bSo" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"}) -"bSp" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"}) -"bSq" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) -"bSr" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/ai_monitored/turret_protected/ai_upload_foyer) -"bSs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/ai_monitored/turret_protected/ai_upload_foyer) -"bSt" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/mineral/titanium/blue,/area/ai_monitored/turret_protected/ai_upload_foyer) -"bSu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"bSv" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"}) -"bSw" = (/obj/machinery/power/port_gen/pacman,/obj/machinery/light,/obj/machinery/light_switch{pixel_y = -24},/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/turf/open/floor/plating,/area/engine/engine_smes{name = "Power Monitoring"}) -"bSx" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/turf/open/floor/plasteel,/area/engine/break_room) -"bSy" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bSz" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 11},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/router) -"bSA" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/plasteel/stairs/right,/area/hallway/primary/central) -"bSB" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/hallway/primary/central) -"bSC" = (/turf/closed/wall,/area/science/lab) -"bSD" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/router) -"bSE" = (/turf/closed/wall/r_wall,/area/science/lab) -"bSF" = (/obj/machinery/conveyor/auto{dir = 4; id = "router"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/router) -"bSG" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/lab) -"bSH" = (/obj/structure/sign/departments/science,/turf/closed/wall/r_wall,/area/science/lab) -"bSI" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating,/area/router) -"bSJ" = (/obj/structure/closet/crate/science,/obj/item/target,/obj/item/target,/obj/item/target/alien,/obj/item/target/alien,/obj/item/target/syndicate,/obj/item/target/syndicate,/obj/item/gun/energy/laser/practice,/obj/item/gun/energy/laser/practice,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/science/circuit"; dir = 1; name = "Circuitry Lab APC"; pixel_y = 24},/turf/open/floor/plasteel/white,/area/science/circuit) -"bSK" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel/white,/area/science/lab) -"bSL" = (/turf/open/floor/plasteel/white,/area/science/lab) -"bSM" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/item/stack/cable_coil/red,/turf/open/floor/plasteel/white,/area/science/lab) -"bSN" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/table,/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/item/folder/white,/obj/item/disk/design_disk,/obj/item/disk/design_disk,/obj/item/disk/tech_disk,/obj/item/disk/tech_disk,/turf/open/floor/plasteel/white,/area/science/lab) -"bSO" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/public/glass{name = "AI Access"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) -"bSP" = (/obj/machinery/computer/rdconsole/core,/turf/open/floor/plasteel,/area/science/lab) -"bSQ" = (/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/white,/area/science/lab) -"bSR" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/white,/area/science/lab) -"bSS" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"bST" = (/obj/structure/disposalpipe/junction{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"bSU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"bSV" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"bSW" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bSX" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/white/full,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_x = 28; pixel_y = 24},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"bSY" = (/obj/structure/table,/obj/item/stock_parts/micro_laser{pixel_x = 4},/obj/item/stock_parts/micro_laser{pixel_x = 4},/obj/item/stock_parts/scanning_module{pixel_x = -6},/obj/item/stock_parts/scanning_module{pixel_x = -6},/obj/item/stock_parts/capacitor,/obj/item/stock_parts/capacitor,/turf/open/floor/plasteel/white,/area/science/lab) -"bSZ" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/science/lab) -"bTa" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"bTb" = (/turf/open/floor/plasteel,/area/science/lab) -"bTc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/science/lab) -"bTd" = (/obj/structure/table,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/matter_bin,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"bTe" = (/obj/structure/chair/stool,/obj/effect/landmark/start/scientist,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/science/lab) -"bTf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/white,/area/science/lab) -"bTg" = (/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/science/robotics/mechbay"; dir = 1; name = "Mech Bay APC"; pixel_y = 28},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"bTh" = (/obj/effect/turf_decal/bot,/obj/effect/landmark/start/cyborg,/turf/open/floor/plasteel,/area/science/robotics/lab) -"bTi" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark/side{dir = 5},/area/science/robotics/lab) -"bTj" = (/obj/structure/table,/obj/item/reagent_containers/glass/beaker/large{pixel_x = -6},/obj/item/reagent_containers/glass/beaker{pixel_x = 4},/obj/item/reagent_containers/dropper,/turf/open/floor/plasteel/white,/area/science/lab) -"bTk" = (/obj/item/rack_parts,/obj/structure/table_frame,/obj/item/flashlight,/obj/item/flashlight,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{areastring = "/area/quartermaster/warehouse"; dir = 1; name = "Warehouse APC"; pixel_y = 24},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bTl" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/clothing/glasses/welding,/turf/open/floor/plasteel/white,/area/science/lab) -"bTm" = (/obj/machinery/disposal/bin,/obj/machinery/light,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/science/lab) -"bTn" = (/obj/effect/turf_decal/delivery,/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/science/lab) -"bTo" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/debugger,/turf/open/floor/plasteel/white,/area/science/circuit) -"bTp" = (/obj/machinery/vending/wardrobe/law_wardrobe,/obj/effect/turf_decal/bot,/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/dark,/area/lawoffice) -"bTq" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/circuit) -"bTr" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/science/circuit) -"bTs" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/circuit) -"bTt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/hallway/primary/central) -"bTu" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bTv" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bTw" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bTx" = (/obj/item/stack/tile/plasteel{pixel_x = 8; pixel_y = 14},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bTy" = (/obj/item/kirbyplants,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bTz" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bTA" = (/obj/structure/filingcabinet/medical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bTB" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/medical/medbay/lobby) -"bTC" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bTD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bTE" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bTF" = (/obj/structure/grille/broken,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) -"bTG" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/science/circuit) -"bTH" = (/turf/open/floor/engine/plasma,/area/engine/atmos) -"bTI" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/engine/plasma,/area/engine/atmos) -"bTJ" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/maintenance/disposal) -"bTK" = (/turf/open/floor/engine/co2,/area/engine/atmos) -"bTL" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/engine/co2,/area/engine/atmos) -"bTM" = (/obj/structure/table,/obj/machinery/light,/obj/item/storage/toolbox/mechanical{pixel_x = 1; pixel_y = 6},/obj/item/storage/toolbox/mechanical,/obj/machinery/camera{c_tag = "Research - Development Lab"; dir = 1},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_y = -30; receive_ore_updates = 1},/turf/open/floor/plasteel/white,/area/science/lab) -"bTN" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/science/circuit) -"bTO" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit) -"bTP" = (/obj/machinery/disposal/bin,/obj/machinery/light,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel/white,/area/science/circuit) -"bTQ" = (/obj/machinery/vending/assist,/turf/open/floor/plasteel/white,/area/science/circuit) -"bTR" = (/turf/closed/wall/r_wall,/area/science/circuit) -"bTS" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/item/stock_parts/cell/high/plus,/obj/item/radio/off{pixel_x = -3; pixel_y = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer) -"bTT" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/hallway/primary/central) -"bTU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/conveyor{dir = 4; id = "recycler"},/turf/open/floor/plating,/area/maintenance/disposal) -"bTV" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bTW" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation) -"bTX" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/status_display/ai{pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) -"bTY" = (/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central) -"bTZ" = (/obj/structure/disposalpipe/segment,/obj/structure/lattice,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/space/nearstation) -"bUa" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/camera{c_tag = "Atmospherics - Entrance"},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel,/area/engine/atmos) -"bUb" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bUc" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) -"bUd" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bUe" = (/obj/machinery/disposal/deliveryChute{dir = 1},/obj/structure/disposalpipe/trunk,/turf/open/floor/plating/airless,/area/router/aux) -"bUf" = (/obj/structure/plasticflaps,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/sorting) -"bUg" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor/auto{dir = 1; id = "router"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) -"bUh" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bUi" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) -"bUj" = (/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 8},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"bUk" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/cobweb,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/window/reinforced/spawner/west,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bUl" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bUm" = (/obj/structure/closet/crate/internals,/obj/item/tank/internals/emergency_oxygen/double,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bUn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plating,/area/hallway/primary/aft) -"bUo" = (/obj/structure/grille,/turf/open/floor/plating/airless,/area/space/nearstation) -"bUp" = (/obj/structure/window/reinforced/spawner/west,/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor/auto{id = "router"},/turf/open/floor/plating,/area/router) -"bUq" = (/turf/closed/wall/r_wall,/area/hallway/primary/aft) -"bUr" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/hallway/primary/aft) -"bUs" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bUt" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plasteel/dark/side{dir = 4},/area/hallway/primary/central) -"bUu" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/gateway) -"bUv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/hallway/primary/aft) -"bUw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bUx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"bUy" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bUz" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/hallway/primary/aft) -"bUA" = (/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/solars/port) -"bUB" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/engine/engine_smes"; dir = 1; name = "Power Monitoring APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) -"bUC" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bUD" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bUE" = (/turf/open/floor/plasteel/stairs/right,/area/hallway/primary/aft) -"bUF" = (/obj/machinery/doppler_array/research/science{dir = 8},/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/science/mixing) -"bUG" = (/obj/effect/turf_decal/bot,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/storage/primary) -"bUH" = (/obj/machinery/shieldgen,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/window/reinforced/spawner/west,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bUI" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bUJ" = (/obj/effect/landmark/event_spawn,/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/science/lab) -"bUK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{name = "Quartermaster's Office"; req_access_txt = "31;41"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/qm) -"bUL" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/window/reinforced/spawner/west,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router) -"bUM" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/qm) -"bUN" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/door/airlock/engineering{name = "Primary Tool Storage"; req_access_txt = "11"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"bUO" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/power/apc{areastring = "/area/storage/primary"; dir = 1; name = "Primary Tool Storage APC"; pixel_y = 24},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/storage/primary) -"bUP" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/quartermaster/sorting) -"bUQ" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/button/door{id = "DeliveryDoor"; name = "Cargo Delivery Door Control"; pixel_x = -24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bUR" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/mob/living/simple_animal/bot/firebot,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bUS" = (/obj/structure/closet/secure_closet/quartermaster,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/item/clothing/suit/space/eva,/obj/item/clothing/head/helmet/space/eva,/obj/item/paper/fluff/cogstation/letter_qm,/turf/open/floor/plasteel,/area/quartermaster/qm) -"bUT" = (/obj/effect/turf_decal/delivery,/obj/machinery/light{dir = 1},/obj/structure/filingcabinet/filingcabinet,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bUU" = (/obj/item/beacon,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) -"bUV" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 10},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/space/nearstation) -"bUW" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/maintenance/starboard/aft"; dir = 1; name = "Starboard Quarter Maintenance APC"; pixel_y = 24},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bUX" = (/obj/structure/transit_tube/station/reverse/flipped{dir = 1},/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"bUY" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 10},/obj/item/grown/bananapeel,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/router) -"bUZ" = (/obj/structure/reagent_dispensers/watertank,/obj/item/wirecutters,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bVa" = (/obj/machinery/light/small,/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel,/area/router) -"bVb" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/transit_tube/horizontal,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"bVc" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bVd" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/stripes/end{dir = 4},/turf/open/floor/plating,/area/quartermaster/sorting) -"bVe" = (/obj/machinery/photocopier,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bVf" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "Engineering - Power Monitoring"; dir = 1},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) -"bVg" = (/obj/machinery/power/emitter,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/window/reinforced/spawner/west,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bVh" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bVi" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel) -"bVj" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor/auto{id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) -"bVk" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bVl" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bVm" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "0-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bVn" = (/obj/structure/closet/crate,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"bVo" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/quartermaster/storage) -"bVp" = (/obj/machinery/computer/card/minor/rd{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"bVq" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) -"bVr" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bVs" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/obj/effect/landmark/start/cargo_technician,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bVt" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bVu" = (/obj/effect/decal/cleanable/dirt,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_x = 26},/obj/structure/disposalpipe/junction{dir = 8},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/router) -"bVv" = (/obj/structure/sign/departments/xenobio{pixel_x = -32},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit) -"bVw" = (/obj/machinery/conveyor/auto{dir = 1; id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting) -"bVx" = (/obj/machinery/light/small{dir = 4},/obj/machinery/conveyor/auto{dir = 1; id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting) -"bVy" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 1; id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting) -"bVz" = (/obj/structure/rack,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/extinguisher{pixel_x = -4},/obj/item/crowbar/red{pixel_x = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plating,/area/maintenance/starboard/central) -"bVA" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall,/area/router) -"bVB" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bVC" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "AI SMES Access"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer) -"bVD" = (/obj/structure/lattice,/turf/open/space/basic,/area/space) -"bVE" = (/obj/effect/landmark/start/atmospheric_technician,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/engine/atmos) -"bVF" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer) -"bVG" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bVH" = (/obj/effect/landmark/event_spawn,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/janitor) -"bVI" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = -26},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVK" = (/obj/item/restraints/legcuffs/beartrap,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/central) -"bVL" = (/obj/effect/turf_decal/delivery,/obj/structure/noticeboard/rd{pixel_y = 28},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bVM" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bVN" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain) -"bVO" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bVP" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"bVQ" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bVR" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/sign/warning/securearea{pixel_y = 32},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bVS" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bVT" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bVU" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock{name = "Law Office"; req_access_txt = "38"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/lawoffice) -"bVV" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) -"bVW" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/hallway/primary/aft) -"bVX" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos) -"bVY" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/door/firedoor,/obj/machinery/door/window/southright{name = "Primary Tool Storage Desk"; req_access_txt = "11"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/storage/primary) -"bVZ" = (/obj/machinery/power/apc{name = "Cargo Bay APC"; pixel_y = -24},/obj/structure/cable,/turf/open/floor/plasteel,/area/quartermaster/storage) -"bWa" = (/turf/closed/wall/r_wall,/area/science/research{name = "Research Sector"}) -"bWb" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bWc" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bWd" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/structure/sign/poster/official/wtf_is_co2{pixel_y = 32},/turf/open/floor/plasteel,/area/science/explab) -"bWe" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; dir = 1; freq = 1400; location = "Bridge"},/turf/open/floor/plasteel,/area/bridge) -"bWf" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bWg" = (/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Law Office"; dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) -"bWh" = (/obj/structure/table/wood,/obj/item/flashlight/lamp/green,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) -"bWi" = (/obj/structure/table/wood,/obj/item/cartridge/lawyer{pixel_x = 2; pixel_y = 8},/obj/item/stamp/law,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) -"bWj" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) -"bWk" = (/obj/structure/table/wood,/obj/item/modular_computer/laptop/preset/civilian,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) -"bWl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Toxins Storage"; req_access_txt = "7;8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/science/mixing) -"bWm" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/engineering{name = "AI SMES Access"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer) -"bWn" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bWo" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bWp" = (/obj/machinery/atmospherics/miner/n2o,/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/turf/open/floor/engine/n2o,/area/engine/atmos) -"bWq" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bWr" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/stripes/line,/obj/machinery/camera{c_tag = "Research Entrance"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bWs" = (/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bWt" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) -"bWu" = (/obj/machinery/vending/assist,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) -"bWv" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating/airless,/area/space/nearstation) -"bWw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/lawoffice) -"bWx" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bWy" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bWz" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bWA" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bWB" = (/obj/structure/rack,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/extinguisher,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bWC" = (/obj/machinery/shower{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bWD" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=2"; freq = 1400; location = "Medbay"},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bWE" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bWF" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bWG" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos) -"bWH" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/stairs/medium,/area/hallway/primary/central) -"bWI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer) -"bWJ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{dir = 1},/turf/open/space/basic,/area/space/nearstation) -"bWK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plating,/area/engine/atmos) -"bWL" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bWM" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/warning/vacuum/external{pixel_y = -32},/obj/machinery/camera{c_tag = "Central Hall - AI Access"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bWN" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/science/server{name = "Computer Core"}) -"bWO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bWP" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/command{name = "Computer Core"; req_access_txt = "30"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"bWQ" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating/airless,/area/space/nearstation) -"bWR" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/science/research{name = "Research Sector"}) -"bWS" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/science/mixing) -"bWT" = (/obj/structure/chair/sofa/left,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/landmark/start/scientist,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bWU" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/trunk,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bWV" = (/obj/machinery/vending/coffee,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bWW" = (/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bWX" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bWY" = (/obj/structure/sign/warning/nosmoking,/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"bWZ" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/hallway/primary/aft) -"bXa" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/multitool{pixel_y = 4},/obj/item/book/manual/wiki/robotics_cyborgs,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"bXb" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bXc" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "2-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/department/chapel) -"bXd" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"bXe" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/atmospherics/miner/toxins,/turf/open/floor/engine/plasma,/area/engine/atmos) -"bXf" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/button/door{id = "EngiLockdown"; name = "Engineering Emergency Lockdown"; pixel_x = 24; pixel_y = -6; req_access_txt = "11"},/obj/machinery/button/door{name = "Privacy Shutters"; pixel_x = 24; pixel_y = 6},/obj/item/kirbyplants/photosynthetic,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"bXg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/closed/wall/r_wall,/area/science/mixing) -"bXh" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bXi" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bXj" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft) -"bXk" = (/obj/structure/chair/stool,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"bXl" = (/obj/structure/disposalpipe/junction/flip{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bXm" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bXn" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bXo" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bXp" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating,/area/router) -"bXq" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"bXr" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/camera{c_tag = "Research Fore"; dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bXs" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"bXt" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft) -"bXu" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/maintenance/aft) -"bXv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/aft) -"bXw" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bXx" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bXy" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/machinery/light,/obj/item/kirbyplants{icon_state = "plant-16"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bXz" = (/obj/machinery/power/apc{name = "Medbay Lobby APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/aft) -"bXA" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bXB" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bXC" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"bXD" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bXE" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bXF" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/security/checkpoint/supply) -"bXG" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"bXH" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hydroponics) -"bXI" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain) -"bXJ" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bXK" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/machinery/light,/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bXL" = (/obj/effect/decal/cleanable/dirt,/obj/structure/rack,/obj/item/storage/belt/utility,/turf/open/floor/plasteel,/area/maintenance/aft) -"bXM" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor{dir = 8; id = "router_off"},/turf/open/floor/plating,/area/router) -"bXN" = (/obj/machinery/smartfridge/organ/preloaded,/turf/closed/wall,/area/medical/morgue) -"bXO" = (/obj/structure/table/glass,/obj/machinery/reagentgrinder,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/camera{c_tag = "Xenobiology - Fore"; dir = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"bXP" = (/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating/airless,/area/space/nearstation) -"bXQ" = (/obj/structure/closet/l3closet/scientist,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bXR" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/miner/carbon_dioxide,/turf/open/floor/engine/co2,/area/engine/atmos) -"bXS" = (/obj/structure/closet/bombcloset,/obj/machinery/camera{c_tag = "Toxins Lab - Access"; network = list("ss13","rd")},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/mixing) -"bXT" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bXU" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/research{name = "Research Sector"}) -"bXV" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating/airless,/area/space/nearstation) -"bXW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bXX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bXY" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bXZ" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/item/paper_bin,/obj/item/radio/headset/headset_sci,/obj/item/radio/headset/headset_sci,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bYa" = (/obj/effect/turf_decal/tile/purple,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bYb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/science/mixing) -"bYc" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/science/research{name = "Research Sector"}) -"bYd" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/hallway/primary/central) -"bYe" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bYf" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 8; id = "router"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/router) -"bYg" = (/obj/machinery/door/poddoor{id = "toxinsdriver"; name = "toxins launcher bay door"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/science/mixing) -"bYh" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bYi" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/recharger,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bYj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/mixing) -"bYk" = (/obj/machinery/vending/wardrobe/science_wardrobe,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bYl" = (/obj/structure/lattice,/obj/structure/disposalpipe/sorting/mail/flip{sortType = 6},/turf/open/space/basic,/area/space/nearstation) -"bYm" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bYn" = (/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bYo" = (/obj/structure/disposalpipe/segment,/obj/machinery/computer/mech_bay_power_console,/turf/open/floor/circuit/green,/area/science/robotics/mechbay) -"bYp" = (/turf/open/floor/plasteel/recharge_floor,/area/science/robotics/mechbay) -"bYq" = (/obj/machinery/light/small{dir = 1},/obj/machinery/mech_bay_recharge_port{dir = 8},/turf/open/floor/circuit/green,/area/science/robotics/mechbay) -"bYr" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light{dir = 8},/obj/machinery/photocopier,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bYs" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research/glass{name = "Toxins Lab Access"; req_access_txt = "7;8"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/mixing) -"bYt" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bYu" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/junction/flip{dir = 1},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bYv" = (/turf/closed/wall,/area/science/robotics/mechbay) -"bYw" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bYx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/circuit,/area/science/robotics/mechbay) -"bYy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/circuit,/area/science/robotics/mechbay) -"bYz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bYA" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bYB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"bYC" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/aft) -"bYD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bYE" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bYF" = (/obj/structure/disposalpipe/segment,/obj/structure/cable,/obj/machinery/recharge_station,/turf/open/floor/circuit/green,/area/science/robotics/mechbay) -"bYG" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/window/reinforced/spawner/west,/obj/machinery/sleeper{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"bYH" = (/obj/structure/sign/poster/contraband/kss13{pixel_y = -32},/obj/structure/cable,/obj/machinery/recharge_station,/turf/open/floor/circuit/green,/area/science/robotics/mechbay) -"bYI" = (/obj/effect/landmark/start/medical_doctor,/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bYJ" = (/obj/structure/closet/secure_closet/medical3,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/storage/belt/medical,/obj/item/clothing/neck/stethoscope,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bYK" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"bYL" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bYM" = (/obj/machinery/vending/wardrobe/cargo_wardrobe,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"bYN" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/storage) -"bYO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bYP" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"bYQ" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/aft) -"bYR" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/solar/starboard/aft) -"bYS" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/server{name = "Computer Core"}) -"bYT" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"bYU" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"bYV" = (/obj/machinery/rnd/destructive_analyzer,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/science/lab) -"bYW" = (/obj/effect/turf_decal/tile/yellow,/obj/machinery/light,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bYX" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"bYY" = (/turf/open/floor/circuit/green,/area/science/server{name = "Computer Core"}) -"bYZ" = (/obj/structure/disposalpipe/segment,/turf/open/floor/circuit/green,/area/science/server{name = "Computer Core"}) -"bZa" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/storage/box/disks,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"bZb" = (/obj/structure/table,/obj/machinery/button/door{id = "RDServer"; layer = 3.6; name = "RD Server Lockup Control"; pixel_x = -24},/obj/item/circuitboard/machine/rdserver,/obj/item/disk/tech_disk,/turf/open/floor/circuit/green,/area/science/server{name = "Computer Core"}) -"bZc" = (/obj/machinery/computer/robotics{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/segment,/turf/open/floor/circuit/green,/area/science/server{name = "Computer Core"}) -"bZd" = (/obj/effect/landmark/blobstart,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bZe" = (/obj/structure/grille,/obj/structure/disposalpipe/segment,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/science/server{name = "Computer Core"}) -"bZf" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing) -"bZg" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing) -"bZh" = (/turf/closed/wall,/area/crew_quarters/toilet/restrooms) -"bZi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/quartermaster/warehouse) -"bZj" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; target_pressure = 4500},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing) -"bZk" = (/obj/machinery/shower{dir = 4},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"bZl" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bZm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=upload"; location = "med"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"bZn" = (/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/toilet{dir = 4},/obj/machinery/door/window/eastright,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"bZo" = (/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bZp" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"bZq" = (/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/toilet{dir = 4},/obj/machinery/door/window/eastright,/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"bZr" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/hallway/primary/central) -"bZs" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"bZt" = (/turf/closed/wall,/area/maintenance/starboard/aft) -"bZu" = (/obj/structure/rack,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/extinguisher,/obj/item/crowbar,/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bZv" = (/obj/structure/rack,/obj/item/clothing/suit/fire/firefighter,/obj/item/clothing/head/hardhat/red{pixel_y = 6},/obj/item/clothing/mask/gas,/obj/item/tank/internals/air,/obj/item/extinguisher,/obj/item/crowbar,/obj/machinery/camera{c_tag = "Fire Suppression Storage"; pixel_x = 22},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bZw" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/office) -"bZx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Fire Suppression Storage"; req_access_txt = "12"},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bZy" = (/obj/structure/reagent_dispensers/watertank,/turf/open/floor/plating,/area/maintenance/starboard/aft) -"bZz" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research/glass{name = "Xenobiology Kill Room"; req_access_txt = "47"},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"bZA" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/library) -"bZB" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/science/mixing) -"bZC" = (/obj/machinery/computer/libraryconsole,/obj/structure/table/wood,/turf/open/floor/carpet,/area/library) -"bZD" = (/obj/machinery/chem_master,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/science/xenobiology) -"bZE" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bZF" = (/turf/open/floor/wood,/area/library) -"bZG" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/sign/warning/fire{pixel_x = -32; pixel_y = 32},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"bZH" = (/turf/closed/wall,/area/library) -"bZI" = (/obj/machinery/air_sensor/atmos/mix_tank,/turf/open/floor/engine/vacuum,/area/engine/atmos) -"bZJ" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/photocopier,/turf/open/floor/carpet,/area/library) -"bZK" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/library) -"bZL" = (/obj/machinery/air_sensor/atmos/nitrous_tank,/turf/open/floor/engine/n2o,/area/engine/atmos) -"bZM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"bZN" = (/obj/structure/closet/crate/freezer,/obj/item/rack_parts,/obj/item/rack_parts,/obj/item/wrench,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) -"bZO" = (/obj/machinery/air_sensor/atmos/toxin_tank,/turf/open/floor/engine/plasma,/area/engine/atmos) -"bZP" = (/obj/machinery/air_sensor/atmos/carbon_tank,/turf/open/floor/engine/co2,/area/engine/atmos) -"bZQ" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"bZR" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/engine/atmos) -"bZS" = (/turf/closed/wall/r_wall,/area/library) -"bZT" = (/obj/structure/table,/obj/item/book/manual/wiki/robotics_cyborgs{pixel_x = -3; pixel_y = -2},/obj/item/book/manual/ripley_build_and_repair{pixel_x = 3; pixel_y = 2},/obj/item/mmi/posibrain,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/robotics/lab) -"bZU" = (/obj/structure/table/wood,/obj/machinery/door/window/northright{name = "Library Desk Window"; req_access_txt = "37"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) -"bZV" = (/obj/structure/window/reinforced/spawner/east,/obj/structure/table/wood,/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/carpet,/area/library) -"bZW" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/science/mixing) -"bZX" = (/obj/structure/table/wood,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/computer/libraryconsole/bookmanagement,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) -"bZY" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 9},/turf/open/floor/plasteel/white,/area/science/mixing) -"bZZ" = (/obj/machinery/vending/wardrobe/curator_wardrobe,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) -"caa" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel/white,/area/science/mixing) -"cab" = (/obj/structure/bookcase/random/adult{name = "Forbidden Knowledge"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) -"cac" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/light,/turf/open/floor/plasteel/white,/area/science/mixing) -"cad" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister,/turf/open/floor/plasteel/white,/area/science/mixing) -"cae" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light,/obj/item/storage/firstaid/toxin,/turf/open/floor/plasteel/white,/area/science/mixing) -"caf" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 5},/turf/open/space/basic,/area/space/nearstation) -"cag" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/analyzer,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/white,/area/science/circuit) -"cah" = (/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cai" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"caj" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cak" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"cal" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 10},/turf/open/floor/plasteel/dark/side{dir = 1},/area/engine/atmos) -"cam" = (/obj/machinery/door/poddoor/incinerator_atmos_main,/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) -"can" = (/obj/machinery/power/turbine{dir = 8},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) -"cao" = (/obj/machinery/power/compressor{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) -"cap" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/air_sensor/atmos/incinerator_tank{pixel_x = -32; pixel_y = 32},/obj/machinery/igniter/incinerator_atmos,/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) -"caq" = (/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior,/obj/effect/mapping_helpers/airlock/locked,/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) -"car" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"cas" = (/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior,/obj/effect/mapping_helpers/airlock/locked,/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/engine/vacuum,/area/engine/atmos) -"cat" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input,/turf/open/floor/engine/vacuum,/area/engine/atmos) -"cau" = (/obj/machinery/door/poddoor/incinerator_atmos_aux,/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) -"cav" = (/turf/closed/wall/r_wall,/area/science/explab) -"caw" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/explab) -"cax" = (/turf/closed/wall,/area/science/explab) -"cay" = (/obj/machinery/air_sensor/atmos/nitrogen_tank,/turf/open/floor/engine/n2,/area/engine/atmos) -"caz" = (/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"},/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"caA" = (/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/science/explab) -"caB" = (/obj/structure/closet/bombcloset,/turf/open/floor/plasteel,/area/science/explab) -"caC" = (/obj/structure/table,/obj/item/wrench,/obj/item/clothing/suit/fire/firefighter,/obj/item/extinguisher{pixel_x = -7; pixel_y = 3},/obj/item/storage/toolbox/mechanical,/obj/item/stack/cable_coil/red,/turf/open/floor/plasteel,/area/science/explab) -"caD" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plating{icon_state = "platingdmg3"},/area/maintenance/disposal) -"caE" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plasteel,/area/science/explab) -"caF" = (/obj/machinery/air_sensor/atmos/oxygen_tank,/turf/open/floor/engine/o2,/area/engine/atmos) -"caG" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"caH" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"caI" = (/obj/structure/table/reinforced,/obj/item/integrated_electronics/analyzer,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_x = 30; receive_ore_updates = 1},/turf/open/floor/plasteel/white,/area/science/circuit) -"caJ" = (/obj/machinery/air_sensor/atmos/air_tank,/turf/open/floor/engine/air,/area/engine/atmos) -"caK" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/atmospherics/miner/nitrogen,/turf/open/floor/engine/n2,/area/engine/atmos) -"caL" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/miner/oxygen,/turf/open/floor/engine/o2,/area/engine/atmos) -"caM" = (/obj/machinery/light/small,/turf/open/floor/engine/n2,/area/engine/atmos) -"caN" = (/obj/machinery/light/small,/turf/open/floor/engine/o2,/area/engine/atmos) -"caO" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 4},/area/science/robotics/lab) -"caP" = (/obj/structure/chair/office/light,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/explab) -"caQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Medbay Lobby"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white/side,/area/medical/medbay/lobby) -"caR" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/kirbyplants{icon_state = "plant-06"},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"caS" = (/obj/machinery/light/small,/turf/open/floor/engine/air,/area/engine/atmos) -"caT" = (/obj/effect/spawner/structure/window/plasma/reinforced,/turf/open/floor/plating,/area/science/explab) -"caU" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/closed/wall/r_wall,/area/science/explab) -"caV" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology - Pen 1"; dir = 4},/turf/open/floor/engine,/area/science/xenobiology) -"caW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/primary/central) -"caX" = (/turf/open/floor/engine,/area/science/explab) -"caY" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/engine,/area/science/explab) -"caZ" = (/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/machinery/camera{c_tag = "Xenobiology - Pen 2"; dir = 8; pixel_y = -22},/turf/open/floor/engine,/area/science/xenobiology) -"cba" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 9},/turf/closed/wall/r_wall,/area/science/explab) -"cbb" = (/turf/closed/wall/r_wall,/area/science/storage) -"cbc" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 4},/obj/item/stack/sheet/metal/ten,/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science,/obj/item/screwdriver,/obj/item/screwdriver,/obj/item/multitool,/obj/item/multitool,/obj/machinery/camera{c_tag = "Research - Circuitry Lab"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel/white,/area/science/circuit) -"cbd" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/item/clothing/ears/earmuffs,/obj/item/radio,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cbe" = (/obj/structure/table/reinforced,/obj/item/clothing/mask/gas,/turf/open/floor/engine,/area/science/explab) -"cbf" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/structure/window/reinforced/spawner/east,/obj/machinery/sleeper{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"cbg" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/open/floor/engine,/area/science/storage) -"cbh" = (/obj/machinery/rnd/experimentor,/turf/open/floor/engine,/area/science/explab) -"cbi" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain) -"cbj" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"}) -"cbk" = (/obj/structure/table,/obj/item/paper_bin,/obj/item/pen,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/quartermaster/qm"; dir = 8; name = "Quartermaster's Office APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/quartermaster/qm) -"cbl" = (/obj/structure/table/reinforced,/obj/item/healthanalyzer,/turf/open/floor/engine,/area/science/explab) -"cbm" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/airlock/maintenance{name = "Medbay Maintenance"; req_access_txt = "5"},/turf/open/floor/plating,/area/medical/medbay/central) -"cbn" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/engine,/area/science/storage) -"cbo" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel,/area/science/xenobiology) -"cbp" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/obj/machinery/door/poddoor/preopen{id = "capblast"; name = "blast door"},/turf/open/floor/plating,/area/crew_quarters/heads/captain) -"cbq" = (/obj/structure/table/reinforced,/obj/item/clipboard,/obj/item/pen,/turf/open/floor/engine,/area/science/explab) -"cbr" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"cbs" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"cbt" = (/obj/structure/disposalpipe/segment,/turf/open/floor/engine,/area/science/explab) -"cbu" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine,/area/science/storage) -"cbv" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/effect/turf_decal/stripes/line,/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/open/floor/plasteel,/area/science/explab) -"cbw" = (/turf/open/floor/plasteel/dark,/area/science/explab) -"cbx" = (/obj/structure/table/reinforced,/obj/item/storage/box/syringes,/obj/item/pen/blue,/turf/open/floor/engine,/area/science/explab) -"cby" = (/obj/structure/closet/emcloset,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cbz" = (/obj/structure/table/reinforced,/obj/item/clothing/gloves/color/latex,/obj/item/reagent_containers/dropper,/obj/item/pen/red,/turf/open/floor/engine,/area/science/explab) -"cbA" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/ai_monitored/storage/eva) -"cbB" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/misc_lab{name = "Research Observatory"}) -"cbC" = (/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/science/storage) -"cbD" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cbE" = (/turf/closed/wall/r_wall,/area/science/misc_lab{name = "Research Observatory"}) -"cbF" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cbG" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"cbH" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/ai_monitored/storage/eva) -"cbI" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock"; req_access_txt = "24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"cbJ" = (/obj/structure/table/reinforced,/obj/item/analyzer,/obj/item/t_scanner,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/engine/supermatter"; dir = 4; name = "Thermo-Electric Generator APC"; pixel_x = 24},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"cbK" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/structure/sign/departments/chemistry{pixel_x = 32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"cbL" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/atmos) -"cbM" = (/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/item/storage/box/lights/mixed,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/structure/cable{icon_state = "1-10"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cbN" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/structure/sign/warning/vacuum/external{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"cbO" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"cbP" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/science/mixing) -"cbQ" = (/obj/structure/closet/secure_closet/freezer/meat,/obj/item/reagent_containers/food/snacks/meat/slab/spider,/obj/item/reagent_containers/food/snacks/meat/slab/xeno,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) -"cbR" = (/obj/structure/cable{icon_state = "1-10"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/starboard/central) -"cbS" = (/obj/machinery/conveyor{dir = 4; id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux) -"cbT" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/firealarm{dir = 1; pixel_x = -2; pixel_y = -27},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/atmos) -"cbU" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8; name = "Air to Distro"},/obj/machinery/power/apc/highcap/ten_k{areastring = "/area/engine/atmos"; name = "Atmospherics APC"; pixel_y = -28},/obj/structure/cable,/turf/open/floor/plasteel,/area/engine/atmos) -"cbV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/obj/structure/window/reinforced/spawner,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/science/server{name = "Computer Core"}) -"cbW" = (/obj/machinery/disposal/deliveryChute{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/turf/open/floor/plating/airless,/area/router/aux) -"cbX" = (/obj/structure/table,/obj/item/aicard,/obj/item/disk/tech_disk,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/circuit,/area/bridge) -"cbY" = (/obj/machinery/light_switch{pixel_y = 24},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/science/server{name = "Computer Core"}) -"cbZ" = (/obj/machinery/computer/slot_machine,/obj/structure/window/reinforced/spawner/west,/turf/open/floor/carpet/green,/area/crew_quarters/bar) -"cca" = (/obj/machinery/computer/slot_machine,/obj/structure/window/reinforced/spawner/east,/turf/open/floor/carpet/green,/area/crew_quarters/bar) -"ccb" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/stairs/medium,/area/crew_quarters/bar) -"ccc" = (/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/structure/grille,/turf/open/floor/plating/airless,/area/router/aux) -"ccd" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Robotics Lab"; dir = 4},/turf/open/floor/plasteel/dark/side{dir = 8},/area/science/robotics/lab) -"cce" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/science/circuit) -"ccf" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/conveyor{dir = 1; id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux) -"ccg" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cch" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor/auto{dir = 1; id = "router"},/turf/open/floor/plating,/area/router) -"cci" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/mass_driver{id = "workshop_in"; name = "Router Driver"},/turf/open/floor/plating,/area/router) -"ccj" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/external{name = "Routing Depot"; req_one_access_txt = "10;31"},/turf/open/floor/plating,/area/router) -"cck" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/window/reinforced/spawner/west,/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) -"ccl" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/maintenance/department/chapel) -"ccm" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/science/robotics/lab) -"ccn" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor/auto{dir = 1; id = "router"},/turf/open/floor/plating,/area/router) -"cco" = (/obj/machinery/conveyor/auto{id = "router"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) -"ccp" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"ccq" = (/obj/machinery/light{dir = 1},/obj/structure/sign/poster/official/nanomichi_ad{pixel_y = 32},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"ccr" = (/obj/structure/disposalpipe/trunk,/obj/structure/disposaloutlet{dir = 4},/turf/open/floor/plating/airless,/area/router/aux) -"ccs" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 1; id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux) -"cct" = (/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/science/robotics/mechbay) -"ccu" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"ccv" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/door/airlock/mining{name = "Mining Office"; req_one_access_txt = "10;24;48"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"ccw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"ccx" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"ccy" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 1; id = "router"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/router) -"ccz" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/newscaster{pixel_y = 32},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"ccA" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) -"ccB" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/folder/white,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/obj/machinery/door/window/eastright{base_state = "left"; dir = 8; icon_state = "left"; name = "Robotics Desk"; req_access_txt = "29"},/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"ccC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"ccD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"ccE" = (/obj/machinery/mass_driver{id = "eng_in"; name = "Router Driver"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/router) -"ccF" = (/obj/structure/table,/obj/effect/turf_decal/bot,/obj/item/flashlight,/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel,/area/quartermaster/office) -"ccG" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/camera{c_tag = "Atmospherics East"; dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel,/area/engine/atmos) -"ccH" = (/obj/machinery/mass_driver{dir = 8; id = "disposal_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) -"ccI" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) -"ccJ" = (/obj/machinery/conveyor{dir = 8; id = "starboard_off"},/turf/open/floor/plating/airless,/area/router/aux) -"ccK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"ccL" = (/obj/effect/landmark/event_spawn,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/rnd/bepis,/turf/open/floor/engine,/area/science/explab) -"ccM" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/main) -"ccN" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"ccO" = (/obj/structure/grille,/obj/structure/disposalpipe/sorting/mail{dir = 8},/turf/open/floor/plating/airless,/area/router/aux) -"ccP" = (/obj/structure/disposalpipe/junction/yjunction{dir = 8},/obj/structure/grille,/turf/open/floor/plating/airless,/area/router/aux) -"ccQ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/courtroom) -"ccR" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/courtroom) -"ccS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/courtroom) -"ccT" = (/obj/effect/turf_decal/delivery,/obj/machinery/light,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"ccU" = (/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"ccV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Starboard Quarter Maintenance"; req_one_access_txt = "12;48"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/hallway/primary/aft) -"ccW" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"ccX" = (/obj/effect/turf_decal/loading_area{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"ccY" = (/obj/structure/cable,/obj/effect/landmark/start/librarian,/obj/machinery/power/apc{areastring = "/area/library"; dir = 4; name = "Library APC"; pixel_x = 24},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) -"ccZ" = (/obj/structure/closet/cardboard,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cda" = (/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"cdb" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/turf/open/floor/plating/airless,/area/router/aux) -"cdc" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/hallway/secondary/entry) -"cdd" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating,/area/hallway/secondary/exit) -"cde" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central) -"cdf" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"cdg" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/break_room) -"cdh" = (/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"cdi" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plating/airless,/area/router/aux) -"cdj" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/table/wood,/obj/machinery/microwave,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) -"cdk" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cdl" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cdm" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/photocopier,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/paper/guides/cogstation/disposals,/turf/open/floor/plasteel,/area/engine/break_room) -"cdn" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"cdo" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating/airless,/area/space/nearstation) -"cdp" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/obj/machinery/atmospherics/pipe/simple/violet/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation) -"cdq" = (/obj/machinery/mass_driver{id = "sq_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) -"cdr" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"cds" = (/obj/effect/turf_decal/bot,/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cdt" = (/turf/closed/wall/r_wall,/area/router/eng) -"cdu" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) -"cdv" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) -"cdw" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) -"cdx" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plating,/area/quartermaster/warehouse) -"cdy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall,/area/engine/break_room) -"cdz" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) -"cdA" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/break_room) -"cdB" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/sign/warning/enginesafety,/turf/closed/wall,/area/engine/break_room) -"cdC" = (/turf/closed/wall,/area/engine/break_room) -"cdD" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/obj/item/storage/box/monkeycubes,/obj/item/storage/box/monkeycubes,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_y = 30; receive_ore_updates = 1},/turf/open/floor/plasteel,/area/science/xenobiology) -"cdE" = (/obj/structure/table/wood,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/item/tape,/obj/item/taperecorder{pixel_x = -4},/obj/machinery/newscaster{pixel_x = 30},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) -"cdF" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plating,/area/quartermaster/warehouse) -"cdG" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "engblock"; name = "Engineering Router"},/turf/open/floor/plating,/area/router/eng) -"cdH" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall,/area/engine/break_room) -"cdI" = (/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"cdJ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) -"cdK" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"cdL" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/break_room) -"cdM" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cdN" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/door/airlock/command{name = "Chief Engineer's Office"; req_access_txt = "56"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"cdO" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "EngiLockdown"; name = "Engineering Emergency Lockdown"},/turf/open/floor/plasteel,/area/engine/break_room) -"cdP" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/camera{c_tag = "Aft Hall - Primary Tool Storage"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cdQ" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/preopen{id = "EngiLockdown"; name = "Engineering Emergency Lockdown"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/break_room) -"cdR" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/sign/poster/contraband/hacking_guide{pixel_x = -32},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"cdS" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/engine/break_room) -"cdT" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/door/airlock/external/glass{name = "Asteroid Mining Access"; req_access_txt = "10;24"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cdU" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{id = "eng"},/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "engblock"; name = "Engineering Router"},/turf/open/floor/plating,/area/router/eng) -"cdV" = (/turf/closed/wall/r_wall,/area/engine/teg_hot) -"cdW" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab) -"cdX" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start/chemist,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"cdY" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cdZ" = (/turf/closed/wall/r_wall,/area/medical/medbay/lobby) -"cea" = (/obj/structure/table/wood,/obj/structure/window/reinforced/spawner/north,/obj/structure/cable{icon_state = "1-2"},/obj/item/paper_bin,/obj/item/pen,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) -"ceb" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics3"; name = "robotics lab shutters"},/turf/open/floor/plating,/area/science/robotics/lab) -"cec" = (/obj/structure/table/glass,/obj/item/paicard,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/wood,/area/medical/medbay/lobby) -"ced" = (/obj/machinery/computer/med_data{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"cee" = (/obj/structure/chair/office/light{dir = 1; pixel_y = 3},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/landmark/start/medical_doctor,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"cef" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"ceg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/medical/medbay/lobby) -"ceh" = (/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/storage/tech) -"cei" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cej" = (/obj/machinery/vending/medical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"cek" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/medical/medbay/lobby) -"cel" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/landmark/start/medical_doctor,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"cem" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/machinery/door/window/eastright{name = "Medbay Desk"; req_access_txt = "5"},/obj/item/folder/white,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"cen" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/circuit,/area/bridge) -"ceo" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/bridge) -"cep" = (/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior - Starboard Bow"; dir = 1; network = list("tcomms"); pixel_x = 22},/turf/open/space/basic,/area/space) -"ceq" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall/rust,/area/engine/teg_hot) -"cer" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/mass_driver{dir = 1; id = "eng_out"; name = "Router Driver"},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plating,/area/router/eng) -"ces" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/conveyor/auto{id = "eng"},/obj/structure/window/reinforced/spawner/east,/turf/open/floor/plating,/area/router/eng) -"cet" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/engine/teg_hot) -"ceu" = (/obj/machinery/vending/snack/random,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"cev" = (/obj/machinery/vending/games,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"cew" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor/auto{dir = 1; id = "service"},/obj/structure/window/reinforced/spawner/west,/turf/open/floor/plating,/area/router/eng) -"cex" = (/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"cey" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Arcade"},/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"cez" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/storage/firstaid/fire{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/fire{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/fire{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/brute,/obj/item/storage/firstaid/brute,/obj/item/storage/firstaid/brute,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"ceA" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/storage/firstaid/toxin{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/toxin{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/toxin{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/o2,/obj/item/storage/firstaid/o2,/obj/item/storage/firstaid/o2,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"ceB" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"ceC" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/solars/port) -"ceD" = (/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 13; id = "ferry_home"; name = "port bay 2"; width = 5},/turf/open/space/basic,/area/space) -"ceE" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Ferry Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"ceF" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/external{name = "Ferry Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"ceG" = (/obj/machinery/mass_driver{dir = 4; id = "trash"; name = "Disposal Driver"},/turf/open/floor/plating,/area/maintenance/disposal) -"ceH" = (/obj/structure/fans/tiny,/obj/machinery/door/poddoor{id = "trash"; name = "Disposal Bay Door"},/turf/open/floor/plating,/area/maintenance/disposal) -"ceI" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel,/area/hallway/primary/central) -"ceJ" = (/obj/machinery/power/solar_control{dir = 4; name = "Starboard Quarter Solar Control"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) -"ceK" = (/obj/structure/grille,/turf/open/floor/plating,/area/router/eng) -"ceL" = (/obj/effect/turf_decal/delivery,/obj/structure/table,/obj/item/destTagger,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/router/eng) -"ceM" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/button/massdriver{id = "eng_out"; pixel_x = -24; pixel_y = 24},/obj/machinery/button/door{id = "engblock"; name = "Router Access Control"; pixel_x = -24; pixel_y = 32; req_access_txt = "31"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/eng) -"ceN" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/router/eng) -"ceO" = (/obj/effect/turf_decal/delivery,/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = 29},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/eng) -"ceP" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plating,/area/router/eng) -"ceQ" = (/obj/structure/reagent_dispensers/fueltank,/obj/structure/sign/warning/vacuum/external{pixel_x = -32},/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/cable{icon_state = "2-5"},/turf/open/floor/plating,/area/maintenance/starboard/central) -"ceR" = (/obj/machinery/door/poddoor{id = "TEGMixVent"; name = "Mixing Chamber Vent"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/engine/vacuum,/area/engine/teg_hot) -"ceS" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance{lootcount = 3; name = "3maintenance loot spawner"},/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/starboard/central) -"ceT" = (/obj/effect/turf_decal/delivery,/obj/machinery/computer/cargo/request{dir = 4},/obj/machinery/light/small,/obj/machinery/requests_console{department = "Engineering Router"; name = "Engineering Router RC"; pixel_y = -32},/turf/open/floor/plasteel,/area/router/eng) -"ceU" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 9},/obj/structure/fireaxecabinet{pixel_y = -32},/turf/open/floor/plasteel,/area/engine/atmos) -"ceV" = (/turf/open/floor/plasteel,/area/router/eng) -"ceW" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/router/eng) -"ceX" = (/obj/effect/turf_decal/delivery,/obj/machinery/power/apc{name = "Engineering Router APC"; pixel_y = -24},/obj/machinery/light/small,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/router/eng) -"ceY" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/vending/cigarette,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"ceZ" = (/obj/machinery/door/firedoor,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/door/airlock/external/glass{name = "Asteroid Mining Access"; req_access_txt = "10;24"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cfa" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 6},/turf/open/floor/engine/vacuum,/area/engine/teg_hot) -"cfb" = (/obj/machinery/light{dir = 8},/obj/machinery/photocopier,/turf/open/floor/carpet/blue,/area/medical/medbay/central) -"cfc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plating,/area/hallway/primary/aft) -"cfd" = (/obj/structure/closet/crate/wooden,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cfe" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Port Bow Hall - Starboard"; network = list("ss13","rd")},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cff" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 10},/turf/open/floor/engine/vacuum,/area/engine/teg_hot) -"cfg" = (/obj/structure/chair{dir = 8},/obj/machinery/light_switch{pixel_y = 24},/obj/effect/landmark/start/research_director,/obj/machinery/camera{c_tag = "Research Director's Office - Port"; network = list("ss13","rd")},/obj/machinery/keycard_auth{pixel_x = -8; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"cfh" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) -"cfi" = (/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) -"cfj" = (/obj/machinery/light,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) -"cfk" = (/obj/structure/closet/secure_closet/engineering_electrical,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) -"cfl" = (/turf/closed/wall,/area/engine/engine_smes{name = "Power Monitoring"}) -"cfm" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall,/area/engine/engine_smes{name = "Power Monitoring"}) -"cfn" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"cfo" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple,/turf/open/floor/engine/vacuum,/area/engine/teg_hot) -"cfp" = (/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 1},/turf/open/floor/engine/vacuum,/area/engine/teg_hot) -"cfq" = (/obj/structure/lattice/catwalk,/turf/open/floor/plating/airless,/area/space/nearstation) -"cfr" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/door/airlock/external/glass{name = "Mixing Chamber Access"; req_one_access_txt = "10;24"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/engine/teg_hot) -"cfs" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos) -"cft" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/camera{c_tag = "Engineering - Mixing Chamber"; dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/engine/teg_hot) -"cfu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/teg_hot) -"cfv" = (/obj/effect/turf_decal/delivery,/obj/machinery/portable_atmospherics/canister/toxins,/obj/machinery/firealarm{pixel_y = 26},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) -"cfw" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/camera{c_tag = "Engineering Construction Area"; dir = 4},/obj/structure/reagent_dispensers/watertank,/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"cfx" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"cfy" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/terminal{dir = 1},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"}) -"cfz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/central) -"cfA" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 5},/turf/open/floor/engine/vacuum,/area/engine/teg_hot) -"cfB" = (/obj/machinery/atmospherics/pipe/heat_exchanging/simple{dir = 9},/turf/open/floor/engine/vacuum,/area/engine/teg_hot) -"cfC" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/engine/vacuum,/area/engine/teg_hot) -"cfD" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space/basic,/area/space/nearstation) -"cfE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall/r_wall,/area/engine/teg_hot) -"cfF" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/teg_hot) -"cfG" = (/obj/machinery/door/airlock/highsecurity{name = "Secure Tech Storage"; req_access_txt = "19;23"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/storage/tech) -"cfH" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/outlet_injector/on,/turf/open/floor/engine/vacuum,/area/engine/teg_hot) -"cfI" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/sparker{id = "TEGMixIgniter"; pixel_x = 24},/obj/effect/decal/cleanable/ash,/obj/effect/decal/remains/human,/turf/open/floor/engine/vacuum,/area/engine/teg_hot) -"cfJ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall/r_wall,/area/engine/teg_hot) -"cfK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/teg_hot) -"cfL" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/door/airlock/atmos{name = "Atmospherics Access"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) -"cfM" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos) -"cfN" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cfO" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cfP" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos) -"cfQ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Library Access"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/library) -"cfR" = (/obj/effect/turf_decal/delivery,/obj/machinery/vending/cigarette,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cfS" = (/obj/structure/extinguisher_cabinet{pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cfT" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/engine/atmos) -"cfU" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/item/beacon,/turf/open/floor/plasteel,/area/engine/break_room) -"cfV" = (/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock"; req_access_txt = "24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/atmos) -"cfW" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/plasma/reinforced/spawner/north,/obj/structure/window/plasma/reinforced/spawner,/obj/structure/lattice,/turf/open/space/basic,/area/engine/teg_hot) -"cfX" = (/obj/item/pipe,/obj/structure/cable{icon_state = "2-5"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) -"cfY" = (/obj/machinery/light/small{dir = 4},/obj/item/stack/sheet/metal,/obj/item/stack/sheet/metal,/obj/item/stack/sheet/metal,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) -"cfZ" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/stairs/right,/area/science/research{name = "Research Sector"}) -"cga" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cgb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external/glass{name = "Mixing Chamber Access"; req_one_access_txt = "10;24"},/obj/machinery/door/firedoor/heavy,/turf/open/floor/plating,/area/engine/teg_hot) -"cgc" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/storage/primary) -"cgd" = (/obj/structure/fans/tiny,/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/obj/structure/fans/tiny,/turf/open/floor/plating,/area/maintenance/disposal) -"cge" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock"; req_access_txt = "24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/atmos) -"cgf" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cgg" = (/obj/effect/landmark/start/atmospheric_technician,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/atmos) -"cgh" = (/obj/machinery/pipedispenser,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/effect/turf_decal/stripes/end{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"cgi" = (/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/obj/machinery/meter,/turf/closed/wall/r_wall,/area/engine/teg_hot) -"cgj" = (/obj/machinery/conveyor/auto{id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting) -"cgk" = (/obj/machinery/light/small{dir = 8},/obj/machinery/conveyor/auto{id = "cargo"},/turf/open/floor/plating,/area/quartermaster/sorting) -"cgl" = (/obj/machinery/button/door{id = "TEGMixVent"; name = "Mixing Chamber Vent"; pixel_y = 24; req_access_txt = "10"},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "atmos mix to burn"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) -"cgm" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/light/small{dir = 1},/obj/effect/turf_decal/caution/stand_clear{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/storage) -"cgn" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"cgo" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible,/turf/open/floor/plasteel/dark,/area/engine/teg_hot) -"cgp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/obj/machinery/button/ignition{id = "TEGMixIgniter"; name = "Mix Igniter"; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) -"cgq" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cgr" = (/obj/machinery/vending/wardrobe/robo_wardrobe,/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/science/robotics/lab) -"cgs" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cgt" = (/obj/structure/rack,/obj/item/caution,/obj/item/caution,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cgu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) -"cgv" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cgw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) -"cgx" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/atmos) -"cgy" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/rust,/area/maintenance/solars/starboard/aft) -"cgz" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/atmos) -"cgA" = (/obj/machinery/pipedispenser/disposal,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"cgB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cgC" = (/obj/structure/grille,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/hallway/primary/central) -"cgD" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/teg_hot) -"cgE" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"cgF" = (/obj/structure/grille,/obj/structure/window/reinforced/spawner/north,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/server{name = "Computer Core"}) -"cgG" = (/obj/structure/grille,/obj/structure/window/reinforced/spawner/north,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/server{name = "Computer Core"}) -"cgH" = (/obj/structure/cable{icon_state = "2-8"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"}) -"cgI" = (/obj/structure/cable{icon_state = "2-4"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"}) -"cgJ" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"}) -"cgK" = (/obj/structure/cable{icon_state = "1-8"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"}) -"cgL" = (/obj/machinery/computer/rdservercontrol{dir = 1},/obj/machinery/light{dir = 8},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/dark,/area/science/server{name = "Computer Core"}) -"cgM" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"cgN" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"}) -"cgO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"}) -"cgP" = (/obj/structure/cable{icon_state = "1-4"},/turf/closed/wall/r_wall,/area/science/server{name = "Computer Core"}) -"cgQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/server{name = "Computer Core"}) -"cgR" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 6},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) -"cgS" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; target_pressure = 4500},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) -"cgT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/disposal) -"cgU" = (/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4; name = "manual mix to burn"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) -"cgV" = (/obj/structure/reagent_dispensers/water_cooler,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cgW" = (/obj/docking_port/stationary{dir = 4; dwidth = 3; height = 5; id = "mining_home"; name = "mining shuttle bay"; roundstart_template = /datum/map_template/shuttle/mining/delta; width = 7},/turf/open/space/basic,/area/space) -"cgX" = (/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"cgY" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal/deliveryChute{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"cgZ" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"cha" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/sorting/mail{dir = 4; sortType = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"chb" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) -"chc" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"chd" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/landmark/start/cargo_technician,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"che" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"chf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"chg" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) -"chh" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plating,/area/tcommsat/computer) -"chi" = (/obj/machinery/atmospherics/pipe/simple/general/hidden,/turf/closed/wall/r_wall,/area/tcommsat/computer) -"chj" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 1},/obj/machinery/meter,/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) -"chk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 10},/turf/closed/wall/r_wall,/area/engine/teg_hot) -"chl" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) -"chm" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/closed/wall/r_wall/rust,/area/hydroponics/garden{name = "Nature Preserve"}) -"chn" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 1},/obj/machinery/light{dir = 8},/obj/machinery/power/apc{areastring = "/area/maintenance/disposal/incinerator"; dir = 8; name = "Incinerator APC"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/engine/atmos) -"cho" = (/turf/closed/wall/r_wall/rust,/area/maintenance/department/eva) -"chp" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel,/area/engine/atmos) -"chq" = (/obj/machinery/pipedispenser/disposal/transit_tube,/obj/effect/turf_decal/stripes/end,/turf/open/floor/plasteel/dark,/area/engine/atmos) -"chr" = (/obj/machinery/atmospherics/components/binary/valve/digital,/turf/open/floor/plasteel/dark,/area/engine/teg_hot) -"chs" = (/turf/open/floor/plasteel/dark,/area/engine/teg_hot) -"cht" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/teg_hot) -"chu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/teg_hot) -"chv" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"chw" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"chx" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/atmos) -"chy" = (/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/closed/wall/r_wall,/area/engine/teg_hot) -"chz" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel,/area/engine/teg_hot) -"chA" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/teg_hot) -"chB" = (/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/engine/teg_hot) -"chC" = (/turf/closed/wall/r_wall/rust,/area/space/nearstation) -"chD" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/components/binary/pump/on{dir = 1},/turf/open/floor/plasteel,/area/engine/teg_hot) -"chE" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/teg_cold) -"chF" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/structure/table,/obj/item/analyzer,/obj/item/pipe_dispenser,/obj/item/wrench,/turf/open/floor/plasteel/dark,/area/engine/teg_cold) -"chG" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/engine/teg_cold) -"chH" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/closed/wall/r_wall/rust,/area/maintenance/fore) -"chI" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/machinery/meter,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/engine/teg_cold) -"chJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/department/security) -"chK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/heat_exchanging/junction{dir = 4},/turf/open/floor/plating,/area/engine/teg_cold) -"chL" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/atmos) -"chM" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/engine/atmos) -"chN" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/engine/teg_hot) -"chO" = (/obj/structure/table,/obj/machinery/requests_console{department = "Atmospherics"; departmentType = 4; name = "Atmos RC"; pixel_x = 30},/obj/item/clothing/head/welding{pixel_x = -5; pixel_y = 3},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 7},/obj/item/clothing/glasses/welding,/obj/item/multitool,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"chP" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock{name = "Law Office"; req_access_txt = "38"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/dark,/area/lawoffice) -"chQ" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"chR" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/science/mixing"; dir = 1; name = "Toxins Lab APC"; pixel_y = 24},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/engine,/area/science/storage) -"chS" = (/obj/machinery/suit_storage_unit/atmos,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/engine/atmos) -"chT" = (/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/turf/open/floor/engine,/area/science/storage) -"chU" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/wood,/area/library) -"chV" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"chW" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"chX" = (/obj/structure/sign/warning/nosmoking,/turf/closed/wall/r_wall,/area/engine/teg_hot) -"chY" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/table,/obj/machinery/light{dir = 8},/obj/item/storage/hypospraykit/fire,/obj/item/grenade/chem_grenade/smart_metal_foam,/obj/item/grenade/chem_grenade/smart_metal_foam,/obj/item/wrench,/turf/open/floor/plasteel,/area/engine/teg_hot) -"chZ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/turf/open/floor/plasteel,/area/engine/teg_hot) -"cia" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/teg_hot) -"cib" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot) -"cic" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"cid" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/table,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/item/analyzer,/turf/open/floor/plasteel,/area/engine/teg_hot) -"cie" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/engine/teg_cold) -"cif" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"cig" = (/obj/structure/window/reinforced/spawner/west,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/disposaloutlet,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"cih" = (/obj/machinery/disposal/deliveryChute{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"cii" = (/obj/machinery/disposal/deliveryChute,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"cij" = (/obj/structure/table/reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/door/window/westleft{name = "Science Desk"; req_one_access_txt = "29;47"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/lab) -"cik" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/mass_driver{dir = 8; id = "router_in"; name = "Router Driver"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"cil" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/disposaloutlet{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"cim" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 11},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"cin" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) -"cio" = (/obj/structure/disposalpipe/junction{dir = 4},/turf/closed/wall,/area/science/robotics/mechbay) -"cip" = (/obj/machinery/mass_driver{id = "cargo_in"; name = "Router Driver"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"ciq" = (/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) -"cir" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/engine/teg_cold) -"cis" = (/obj/structure/sign/warning/vacuum{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cit" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plating,/area/maintenance/port/fore) -"ciu" = (/obj/structure/barricade/wooden,/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/poster/ripped{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/port/fore) -"civ" = (/obj/structure/girder/displaced,/turf/open/floor/plating,/area/maintenance/port/fore) -"ciw" = (/obj/structure/cable,/turf/open/floor/plating,/area/maintenance/port/fore) -"cix" = (/obj/structure/girder,/turf/open/floor/plating,/area/maintenance/port/fore) -"ciy" = (/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plating,/area/maintenance/port/fore) -"ciz" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/item/reagent_containers/food/drinks/trophy,/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore) -"ciA" = (/obj/effect/turf_decal/tile/brown,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"ciB" = (/obj/structure/frame/computer,/obj/structure/disposalpipe/segment,/turf/open/floor/plating/airless,/area/maintenance/port/fore) -"ciC" = (/obj/structure/table,/obj/item/paper/pamphlet/gateway,/turf/open/floor/plasteel/white,/area/gateway) -"ciD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/teg_cold) -"ciE" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"ciF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"ciG" = (/obj/machinery/conveyor{dir = 4; id = "disposal_off"},/turf/open/floor/plating,/area/maintenance/disposal) -"ciH" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 6},/obj/machinery/meter,/obj/structure/disposalpipe/junction/flip{dir = 1},/turf/open/floor/plasteel/dark,/area/engine/teg_cold) -"ciI" = (/turf/closed/wall/r_wall/rust,/area/quartermaster/warehouse) -"ciJ" = (/turf/closed/wall/rust,/area/quartermaster/warehouse) -"ciK" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"ciL" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/primary) -"ciM" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor/auto{dir = 4; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) -"ciN" = (/obj/structure/table/reinforced,/obj/item/storage/box/donkpockets{pixel_y = 4},/obj/machinery/door/poddoor/preopen{id = "kitchenlock"; name = "Kitchen Lockup"},/obj/machinery/door/window/northleft{name = "Kitchen Slider"; req_access_txt = "28"},/obj/machinery/door/window/southleft{name = "Bar Slider"; req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/grimy,/area/crew_quarters/kitchen) -"ciO" = (/obj/machinery/mass_driver{dir = 4; id = "disposal_out"; name = "Router Driver"},/turf/open/floor/plating,/area/maintenance/disposal) -"ciP" = (/obj/effect/turf_decal/delivery,/obj/item/weldingtool,/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"ciQ" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"ciR" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/door/airlock/security{name = "Cargo Security Checkpoint"; req_access_txt = "63"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"ciS" = (/obj/machinery/conveyor/auto{dir = 9; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) -"ciT" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/structure/closet/radiation,/obj/machinery/firealarm{dir = 4; pixel_x = -28; pixel_y = -4},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"ciU" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engine/gravity_generator) -"ciV" = (/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) -"ciW" = (/obj/structure/disposalpipe/sorting/mail/flip{dir = 8; sortType = 11},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"ciX" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) -"ciY" = (/obj/structure/table,/obj/item/storage/toolbox/emergency,/obj/item/wrench,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{areastring = "/area/engine/teg_hot"; dir = 8; name = "Hot Loop APC"; pixel_x = -24},/turf/open/floor/plasteel,/area/engine/teg_hot) -"ciZ" = (/obj/machinery/atmospherics/components/binary/valve/digital,/turf/open/floor/plasteel,/area/engine/teg_hot) -"cja" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cjb" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cjc" = (/obj/structure/fans/tiny,/obj/structure/plasticflaps,/obj/machinery/door/poddoor{name = "Disposal Router"},/turf/open/floor/plating,/area/maintenance/disposal) -"cjd" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"cje" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"cjf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security/glass{name = "Cargo Detainment Cell"; req_access_txt = "63"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"cjg" = (/obj/machinery/conveyor/auto{dir = 1; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) -"cjh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/teg_hot) -"cji" = (/obj/structure/fans/tiny,/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 1; id = "disposal"},/turf/open/floor/plating,/area/maintenance/disposal) -"cjj" = (/turf/closed/wall,/area/crew_quarters/theatre/mime) -"cjk" = (/obj/machinery/vending/autodrobe,/turf/open/floor/plasteel/checker,/area/crew_quarters/theatre/mime) -"cjl" = (/obj/structure/closet/crate/wooden/toy,/obj/item/toy/figure/mime,/turf/open/floor/plasteel/checker,/area/crew_quarters/theatre/mime) -"cjm" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/hallway/secondary/service) -"cjn" = (/obj/structure/reagent_dispensers/cooking_oil,/turf/open/floor/plasteel/freezer,/area/crew_quarters/kitchen/backroom) -"cjo" = (/obj/structure/table,/obj/item/flashlight/seclite,/turf/open/floor/plating,/area/maintenance/port/fore) -"cjp" = (/turf/closed/wall/r_wall,/area/crew_quarters/theatre/mime) -"cjq" = (/turf/closed/wall/rust,/area/maintenance/port/central) -"cjr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/science/server{name = "Computer Core"}) -"cjs" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_hot) -"cjt" = (/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/quartermaster/office"; dir = 1; name = "Cargo Office APC"; pixel_y = 24},/obj/structure/sign/poster/contraband/scum{pixel_x = 32},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"cju" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/table,/obj/machinery/light_switch{pixel_x = 24},/obj/item/clothing/ears/earmuffs,/obj/item/extinguisher{pixel_x = -12; pixel_y = -2},/obj/machinery/camera{c_tag = "Engineering - Hot Loop"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/engine/teg_hot) -"cjv" = (/obj/structure/chair{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet,/area/library) -"cjw" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/wood,/area/library) -"cjx" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/wood,/area/library) -"cjy" = (/obj/machinery/recharge_station,/turf/open/floor/plating,/area/maintenance/port/central) -"cjz" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/kirbyplants/photosynthetic,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cjA" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/quartermaster/office) -"cjB" = (/obj/item/stack/cable_coil/cut/red,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) -"cjC" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/clothing/mask/cigarette,/obj/structure/sign/poster/official/twelve_gauge{pixel_x = 32},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cjD" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall,/area/maintenance/department/eva) -"cjE" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = 32},/turf/open/space/basic,/area/space/nearstation) -"cjF" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = 32},/turf/open/space/basic,/area/space/nearstation) -"cjG" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"cjH" = (/obj/structure/lattice,/obj/structure/sign/warning/electricshock{pixel_x = -32},/turf/open/space/basic,/area/space/nearstation) -"cjI" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer) -"cjJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "E.V.A. Storage"; req_access_txt = "18"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"cjK" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/teg_cold) -"cjL" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/engine/teg_cold) -"cjM" = (/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/item/storage/toolbox/mechanical,/obj/item/radio/off,/obj/item/multitool{pixel_x = -6},/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plating,/area/maintenance/department/eva) -"cjN" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/camera{c_tag = "Security - Visitation Area"; dir = 1},/turf/open/floor/plasteel,/area/security/main) -"cjO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/effect/decal/cleanable/dirt{desc = "A thin layer of dust coating the floor."; name = "dust"},/turf/open/floor/plating,/area/maintenance/port/fore) -"cjP" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cjQ" = (/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) -"cjR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Head of Security's Office"; req_one_access_txt = "58"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/hos) -"cjS" = (/obj/machinery/light_switch{pixel_y = -24},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"cjT" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/landmark/start/security_officer,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/brig) -"cjU" = (/obj/machinery/atmospherics/pipe/manifold/supply/visible{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/engine/teg_cold) -"cjV" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Engineering Sector"},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cjW" = (/obj/structure/bed,/obj/machinery/light_switch{pixel_y = -24},/obj/item/bedsheet/hos,/obj/effect/landmark/start/head_of_security,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/button/door{id = "hos"; name = "HoS Office Shutters"; pixel_y = -32; pixel_x = -5},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) -"cjX" = (/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 9},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/engine/teg_cold) -"cjY" = (/obj/machinery/computer/station_alert{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/keycard_auth{pixel_x = 8; pixel_y = 24},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"cjZ" = (/obj/item/beacon,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/ai_monitored/storage/eva) -"cka" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"ckb" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/obj/structure/disposalpipe/junction{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 4},/area/science/robotics/lab) -"ckc" = (/obj/machinery/portable_atmospherics/canister/air,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/aft/secondary"; dir = 8; name = "Aft Air Hookup APC"; pixel_x = -24},/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"ckd" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cke" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/wood,/area/library) -"ckf" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"ckg" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/landmark/event_spawn,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark/corner,/area/ai_monitored/storage/eva) -"ckh" = (/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central) -"cki" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"ckj" = (/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central) -"ckk" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/camera{c_tag = "Research Maintenance"; dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/circuit,/area/science/robotics/mechbay) -"ckl" = (/turf/open/space/basic,/area/space/station_ruins) -"ckm" = (/turf/closed/wall/r_wall,/area/engine/teg_cold) -"ckn" = (/obj/machinery/door/airlock/external/glass{name = "External Solar Access"; req_access_txt = "10;13"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) -"cko" = (/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/engine/engineering"; dir = 4; name = "Engine Room APC"; pixel_x = 24},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"ckp" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/landmark/start/chemist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"ckq" = (/obj/structure/closet/crate/hydroponics,/obj/machinery/light_switch{pixel_y = -24},/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/quartermaster/warehouse) -"ckr" = (/obj/effect/landmark/start/cargo_technician,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"cks" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"ckt" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/teg_hot) -"cku" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/teg_hot) -"ckv" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{name = "Warehouse"; req_one_access_txt = "10;31"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"ckw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_hot) -"ckx" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"cky" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/engine/teg_hot) -"ckz" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/table,/obj/item/pipe_dispenser,/turf/open/floor/plasteel,/area/engine/teg_hot) -"ckA" = (/obj/structure/sign/warning/fire,/turf/closed/wall/r_wall,/area/engine/teg_hot) -"ckB" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/closet/crate/engineering,/obj/machinery/light_switch{pixel_x = -24},/obj/item/rcl/pre_loaded,/obj/item/rcl/pre_loaded,/obj/item/stack/cable_coil/red,/obj/item/stack/cable_coil/red,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/machinery/camera{c_tag = "Engineering - Cold Loop"; dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_cold) -"ckC" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/binary/valve/digital{name = "gas to cold loop"},/turf/open/floor/plasteel,/area/engine/teg_cold) -"ckD" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/structure/sign/warning/fire{pixel_x = 32; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"ckE" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"ckF" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/engine/teg_cold"; dir = 4; name = "Cold Loop APC"; pixel_x = 24},/turf/open/floor/plasteel,/area/engine/teg_cold) -"ckG" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"ckH" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"ckI" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plating,/area/maintenance/department/eva) -"ckJ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/engine/teg_hot) -"ckK" = (/obj/structure/closet/secure_closet/miner,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/item/clothing/under/rank/cargo/miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"ckL" = (/obj/structure/closet/secure_closet/miner,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/item/clothing/under/rank/cargo/miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"ckM" = (/obj/structure/closet/secure_closet/miner,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/item/clothing/under/rank/cargo/miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"ckN" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel,/area/science/xenobiology) -"ckO" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/storage) -"ckP" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"ckQ" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"ckR" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/closed/wall/r_wall,/area/science/lab) -"ckS" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"ckT" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"ckU" = (/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"ckV" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"ckW" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"ckX" = (/obj/machinery/atmospherics/components/binary/valve,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"ckY" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/checker,/area/ai_monitored/storage/eva) -"ckZ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/ai_monitored/storage/eva) -"cla" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"clb" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"clc" = (/obj/machinery/vending/wardrobe/chem_wardrobe,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"cld" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cle" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/science/misc_lab"; dir = 1; name = "Research Observatory APC"; pixel_y = 24},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"clf" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology - Pen 3"; dir = 4},/turf/open/floor/engine,/area/science/xenobiology) -"clg" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"clh" = (/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cli" = (/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/science/xenobiology) -"clj" = (/obj/structure/cable{icon_state = "1-2"},/turf/closed/wall/r_wall,/area/science/xenobiology) -"clk" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/science/xenobiology) -"cll" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/turf/open/floor/plating,/area/science/xenobiology) -"clm" = (/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/space/nearstation) -"cln" = (/obj/structure/window/reinforced/spawner/west,/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating/airless,/area/space/nearstation) -"clo" = (/obj/structure/window/reinforced/spawner/east,/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating/airless,/area/space/nearstation) -"clp" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/science/xenobiology) -"clq" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/science/xenobiology) -"clr" = (/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/science/xenobiology) -"cls" = (/obj/structure/window/reinforced/spawner,/obj/structure/grille,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating/airless,/area/space/nearstation) -"clt" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/sign/warning/electricshock,/turf/closed/wall/r_wall,/area/science/xenobiology) -"clu" = (/obj/machinery/door/window/northleft{name = "Library Desk Door"; req_access_txt = "37"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) -"clv" = (/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"clw" = (/obj/effect/landmark/start/librarian,/obj/machinery/newscaster{pixel_x = -30},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) -"clx" = (/obj/effect/turf_decal/bot,/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) -"cly" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) -"clz" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"clA" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"clB" = (/obj/structure/cable{icon_state = "4-8"},/turf/closed/wall/r_wall,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"clC" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"clD" = (/obj/machinery/telecomms/server/presets/medical,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"clE" = (/obj/machinery/ntnet_relay,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"clF" = (/obj/machinery/telecomms/server/presets/supply,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"clG" = (/obj/machinery/telecomms/server/presets/engineering,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"clH" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"}) -"clI" = (/obj/machinery/telecomms/bus/preset_four,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"clJ" = (/obj/machinery/telecomms/broadcaster/preset_left,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"clK" = (/obj/machinery/telecomms/processor/preset_four,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"clL" = (/obj/machinery/telecomms/bus/preset_two,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"clM" = (/obj/machinery/telecomms/broadcaster/preset_right,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"clN" = (/obj/machinery/telecomms/processor/preset_two,/turf/open/floor/circuit/telecomms/mainframe,/area/tcommsat/server) -"clO" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"clP" = (/obj/structure/table,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/amplifier,/obj/item/stock_parts/subspace/analyzer,/obj/item/stock_parts/subspace/analyzer,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"clQ" = (/obj/structure/table,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/ansible,/obj/item/stock_parts/subspace/crystal,/obj/item/stock_parts/subspace/crystal,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"clR" = (/obj/structure/table,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/filter,/obj/item/stock_parts/subspace/transmitter,/obj/item/stock_parts/subspace/transmitter,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"clS" = (/obj/structure/table,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/subspace/treatment,/obj/item/stock_parts/manipulator,/obj/item/stock_parts/manipulator,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"clT" = (/obj/structure/table,/obj/item/stack/sheet/glass,/obj/item/stack/sheet/glass,/obj/item/stock_parts/micro_laser,/obj/item/stock_parts/micro_laser,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"clU" = (/obj/structure/table,/obj/item/stock_parts/scanning_module,/obj/item/stock_parts/scanning_module,/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"clV" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/camera{c_tag = "Supply - Security Post"; dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"clW" = (/turf/closed/wall/rust,/area/storage/tech) -"clX" = (/turf/closed/wall/rust,/area/maintenance/starboard/aft) -"clY" = (/obj/effect/turf_decal/stripes/line,/obj/structure/closet/firecloset,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_hot) -"clZ" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/structure/chair{dir = 4},/obj/machinery/camera{c_tag = "Escape Hall - Port"; dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"cma" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/chair{dir = 8},/obj/machinery/camera{c_tag = "Escape Hall - Starboard"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"cmb" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/camera{c_tag = "Supply - Mining Dock"; dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cmc" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Starboard Quarter Solar Maintenance"; dir = 4},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) -"cmd" = (/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cme" = (/obj/structure/bed,/obj/item/clothing/glasses/sunglasses/blindfold,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"cmf" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_hot) -"cmg" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot) -"cmh" = (/obj/structure/sign/warning/radiation,/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"cmi" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"cmj" = (/turf/open/floor/plasteel,/area/engine/gravity_generator) -"cmk" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"cml" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cmm" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/plasteel,/area/engine/break_room) -"cmn" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cmo" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cmp" = (/obj/machinery/door/airlock/engineering{name = "Gravity Generator"; req_access_txt = "11"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/engine/gravity_generator) -"cmq" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"cmr" = (/obj/machinery/gravity_generator/main/station,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/gravity_generator) -"cms" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"cmt" = (/obj/structure/disposalpipe/segment,/turf/closed/wall/r_wall,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"cmu" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/structure/cable,/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"cmv" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cmw" = (/obj/machinery/camera{c_tag = "Engineering - Gravity Generator"; dir = 1},/turf/open/floor/engine,/area/engine/gravity_generator) -"cmx" = (/obj/machinery/light,/turf/open/floor/engine,/area/engine/gravity_generator) -"cmy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Starboard Quarter Maintenance"; req_one_access_txt = "12;48"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/hallway/secondary/exit) -"cmz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Starboard Quarter Maintenance"; req_one_access_txt = "12;48"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plating,/area/hallway/secondary/exit) -"cmA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Bar Backroom"; req_access_txt = "25"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) -"cmB" = (/obj/structure/window/reinforced/spawner/west,/obj/effect/turf_decal/delivery,/obj/machinery/door/window/northright{name = "Emergency Shower"},/turf/open/floor/plasteel,/area/medical/chemistry) -"cmC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) -"cmD" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal/deliveryChute,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"cmE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/teg_hot) -"cmF" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central) -"cmG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot) -"cmH" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "cargoblock"; name = "Cargo Router"},/turf/open/floor/plating,/area/quartermaster/sorting) -"cmI" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/item/radio/off{pixel_x = -3; pixel_y = 1},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"cmJ" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/machinery/door/airlock/external/glass{name = "Mining Dock"; req_one_access_txt = "10;24;48"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cmK" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"cmL" = (/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/aft) -"cmM" = (/obj/structure/sign/poster/official/safety_internals{pixel_x = -32},/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/starboard/aft) -"cmN" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/item/radio/intercom{frequency = 1359; name = "Station Intercom (Security)"; pixel_y = -28},/turf/open/floor/plasteel/dark,/area/lawoffice) -"cmO" = (/obj/effect/turf_decal/bot,/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; dir = 1; freq = 1400; location = "Engineering"},/turf/open/floor/plasteel,/area/engine/break_room) -"cmP" = (/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) -"cmQ" = (/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/machinery/camera{c_tag = "Xenobiology - Pen 4"; dir = 8; pixel_y = -22},/turf/open/floor/engine,/area/science/xenobiology) -"cmR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"cmS" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/plasteel,/area/science/robotics/lab) -"cmT" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/folder/red,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/door/window/northright{name = "Security Checkpoint"; req_access_txt = "1"},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"cmU" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"cmV" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cmW" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/requests_console{department = "Cargo"; name = "Cargo RC"; pixel_x = -30},/obj/machinery/camera{c_tag = "Supply - Quartermaster's Office"; dir = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) -"cmX" = (/obj/machinery/light/small,/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"cmY" = (/obj/machinery/door/airlock/engineering{name = "Hot Loop"; req_one_access_txt = "10;24"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot) -"cmZ" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/window/reinforced/spawner/west,/obj/machinery/atmospherics/components/unary/cryo_cell{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"cna" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/window/reinforced/spawner/east,/obj/machinery/atmospherics/components/unary/cryo_cell{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"cnb" = (/obj/structure/table/glass,/obj/effect/turf_decal/stripes/line,/obj/item/storage/box/beakers{pixel_x = -4},/obj/item/storage/box/syringes{pixel_x = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/science/xenobiology) -"cnc" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"cnd" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"cne" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"cnf" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"cng" = (/obj/machinery/holopad,/turf/open/floor/plasteel,/area/quartermaster/qm) -"cnh" = (/obj/machinery/door/airlock/engineering{name = "Cold Loop"; req_access_txt = "10"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_cold) -"cni" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plating,/area/maintenance/starboard/aft) -"cnj" = (/obj/machinery/camera{c_tag = "Research - Observatory"; dir = 4},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cnk" = (/obj/machinery/light,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"cnl" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1; pixel_x = 5},/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cnm" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/gateway) -"cnn" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cno" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_cold) -"cnp" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/bridge) -"cnq" = (/obj/structure/disposalpipe/segment{dir = 10},/mob/living/simple_animal/cockroach,/turf/open/floor/plating,/area/maintenance/port/central) -"cnr" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_cold) -"cns" = (/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/teg_cold) -"cnt" = (/obj/structure/fans/tiny,/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{dir = 8; id = "disposal"},/obj/machinery/door/poddoor{name = "Disposal Router"},/turf/open/floor/plating,/area/maintenance/disposal) -"cnu" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/gateway) -"cnv" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/bot,/obj/effect/decal/cleanable/dirt,/obj/structure/frame/computer,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cnw" = (/obj/effect/turf_decal/bot,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/storage) -"cnx" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot) -"cny" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"cnz" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/structure/sign/departments/chemistry{pixel_y = 32},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cnA" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/office) -"cnB" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"cnC" = (/obj/structure/disposaloutlet{dir = 8},/obj/structure/disposalpipe/trunk,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/engine,/area/science/explab) -"cnD" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/science/xenobiology) -"cnE" = (/obj/docking_port/stationary{dir = 2; dwidth = 9; height = 22; id = "emergency_home"; name = "CogStation Escape Dock"; width = 29},/turf/open/space/basic,/area/space) -"cnF" = (/obj/structure/disposalpipe/segment,/obj/item/reagent_containers/food/drinks/bottle/kahlua/empty,/turf/open/floor/plating{icon_state = "panelscorched"},/area/maintenance/port/fore) -"cnG" = (/obj/machinery/door/airlock/external/glass{name = "Shuttle Maintenance Access"},/obj/structure/fans/tiny,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"cnH" = (/obj/machinery/door/airlock/external/glass{name = "Departures Shuttle Dock"},/obj/structure/fans/tiny,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"cnI" = (/turf/open/floor/plating{icon_state = "platingdmg3"},/area/space/nearstation) -"cnJ" = (/obj/structure/girder,/turf/open/floor/plating/airless,/area/space/nearstation) -"cnK" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot) -"cnL" = (/obj/structure/closet/crate/science,/obj/item/stack/sheet/metal/ten,/obj/item/stack/sheet/glass/five,/obj/item/stack/rods/twentyfive,/obj/item/target/syndicate,/obj/item/target/alien,/obj/item/target,/obj/item/target/clown,/turf/open/floor/plasteel,/area/science/mixing) -"cnM" = (/obj/machinery/mass_driver{dir = 8; id = "pb_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) -"cnN" = (/obj/structure/bookcase/random/fiction,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/library) -"cnO" = (/obj/effect/landmark/event_spawn,/turf/open/floor/engine,/area/science/storage) -"cnP" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/item/kirbyplants{icon_state = "plant-21"; pixel_y = 3},/turf/open/floor/wood,/area/library) -"cnQ" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/camera{c_tag = "Supply - Warehouse Exterior"; dir = 1},/turf/open/space/basic,/area/quartermaster/warehouse) -"cnR" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) -"cnS" = (/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/fifteen_k{areastring = /area/maintenance/solars/starboard/aft; dir = 1; name = "Starboard Quarter Solars APC"; pixel_y = 26},/turf/open/floor/plating,/area/maintenance/solars/starboard/aft) -"cnT" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/science/mixing) -"cnU" = (/obj/machinery/door/poddoor/incinerator_toxmix,/turf/open/floor/engine/vacuum,/area/science/mixing) -"cnV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/turf/open/floor/engine,/area/science/storage) -"cnW" = (/obj/structure/chair/office/dark{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/library) -"cnX" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/vehicle/ridden/wheelchair,/turf/open/floor/plasteel,/area/medical/medbay/central) -"cnY" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/vehicle/ridden/wheelchair,/turf/open/floor/plasteel,/area/medical/medbay/central) -"cnZ" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/machinery/holopad,/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_y = -32},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"coa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cob" = (/obj/structure/closet/l3closet/virology,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 8},/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/open/floor/plasteel/white,/area/medical/virology) -"coc" = (/obj/machinery/camera{c_tag = "Medbay - Reception"; dir = 4},/turf/open/floor/plasteel/stairs,/area/medical/medbay/central) -"cod" = (/obj/structure/chair/comfy/brown{dir = 8},/obj/machinery/light,/obj/structure/window/reinforced/spawner/east,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/wood,/area/medical/medbay/lobby) -"coe" = (/obj/structure/bodycontainer/morgue,/obj/machinery/camera{c_tag = "Medbay Morgue"; dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"cof" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_hot) -"cog" = (/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"}) -"coh" = (/obj/machinery/power/smes,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/engine/storage_shared{name = "Electrical Substation"}) -"coi" = (/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"coj" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cok" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_hot) -"col" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"com" = (/obj/machinery/chem_master,/obj/effect/turf_decal/stripes/end{dir = 8},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel,/area/medical/chemistry) -"con" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/start/station_engineer,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/storage/primary) -"coo" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/storage/primary) -"cop" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "CEPrivacy"; name = "CE Privacy Shutters"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/crew_quarters/heads/chief) -"coq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departures"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"cor" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departures"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"cos" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engineering Workshop"; req_access_txt = "11"},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) -"cot" = (/obj/machinery/computer/apc_control{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"cou" = (/obj/structure/chair/office/dark{dir = 8},/obj/effect/landmark/start/chief_engineer,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"cov" = (/obj/structure/sign/warning/nosmoking{pixel_y = -32},/turf/closed/wall,/area/medical/medbay/central) -"cow" = (/obj/machinery/door/airlock/external/glass{name = "Asteroid Mining Access"; req_one_access_txt = "10;48"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cox" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"coy" = (/obj/structure/sign/poster/official/safety_internals{pixel_x = -32},/obj/effect/turf_decal/stripes/line,/obj/effect/decal/cleanable/cobweb,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"coz" = (/obj/structure/disposalpipe/junction{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"coA" = (/obj/structure/closet/emcloset,/obj/machinery/camera{c_tag = "Aft Maintenance - Starboard Quarter"; dir = 8; pixel_y = -22},/turf/open/floor/plating,/area/maintenance/aft) -"coB" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 8},/obj/machinery/camera{c_tag = "Aft Hallway - MedSci Port"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"coC" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/camera{c_tag = "Aft Maintenance - Starboard Bow"; pixel_x = 22},/turf/open/floor/plating,/area/maintenance/aft) -"coD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"coE" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Aft Hall - MedSci Starboard"; dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"coF" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/landmark/start/assistant,/obj/machinery/camera{c_tag = "Aft Hall - Workshop"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"coG" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/obj/machinery/camera{c_tag = "Research - Experimentation Lab"; dir = 8; pixel_y = -22},/turf/open/floor/engine,/area/science/explab) -"coH" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"coI" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel/dark/side{dir = 4},/area/gateway) -"coJ" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "Virology Access"; dir = 8; pixel_y = -22},/turf/open/floor/plasteel,/area/medical/virology) -"coK" = (/obj/machinery/camera{c_tag = "Medbay - Monkey Pen"; dir = 4},/mob/living/carbon/monkey,/turf/open/floor/grass,/area/medical/virology) -"coL" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=cargo"; location = "eng2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"coM" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"coN" = (/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"coO" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/camera{c_tag = "Central Hall"; dir = 4},/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central) -"coP" = (/obj/structure/table/glass,/obj/item/paper_bin,/obj/machinery/camera{c_tag = "Central Plaza - Port"; dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"coQ" = (/obj/machinery/camera{c_tag = "Central Docking Bay"},/turf/open/floor/plasteel,/area/hallway/primary/central) -"coR" = (/obj/machinery/camera{c_tag = "Ferry Docking Bay"; dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"coS" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/camera{c_tag = "Ferry Docking Bay - Starboard"; dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"coT" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/teg_hot) -"coU" = (/obj/machinery/computer/secure_data{dir = 1},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/camera{c_tag = "Security - Front Desk"; dir = 1},/turf/open/floor/plasteel,/area/security/main) -"coV" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/camera{c_tag = "Medbay Entrance"; dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"coW" = (/obj/machinery/light/small{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/rack,/obj/effect/spawner/lootdrop/techstorage/engineering,/obj/machinery/camera{c_tag = "Technical Storage"; dir = 4},/turf/open/floor/plating,/area/storage/tech) -"coX" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/camera{c_tag = "Medbay - Operating Theatre"; dir = 8; network = list("ss13","medbay"); pixel_y = -22},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"coY" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/item/reagent_containers/glass/beaker/cryoxadone,/obj/item/reagent_containers/glass/beaker/cryoxadone,/obj/machinery/camera{c_tag = "Medbay - Cryogenics"; dir = 1},/obj/item/reagent_containers/glass/beaker/cryoxadone,/obj/item/reagent_containers/glass/beaker/cryoxadone,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"coZ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpa" = (/obj/structure/closet/crate/radiation,/obj/item/storage/firstaid/radbgone,/obj/item/clothing/suit/radiation,/obj/item/clothing/head/radiation,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/engine/teg_cold) -"cpb" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/sign/warning/biohazard{pixel_y = -32},/turf/open/floor/plasteel,/area/medical/virology) -"cpc" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpd" = (/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/crew_quarters/fitness) -"cpe" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/turf_decal/stripes/white/full,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/engine,/area/science/explab) -"cpf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"cpg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/science/explab) -"cph" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"cpi" = (/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible{dir = 5},/obj/machinery/light/small,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"cpj" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"cpk" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold) -"cpl" = (/obj/machinery/newscaster{pixel_x = 30},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpm" = (/obj/effect/turf_decal/delivery,/obj/machinery/photocopier,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Cargo Bay"; departmentType = 2; name = "Cargo RC"; pixel_y = 30},/obj/machinery/camera{c_tag = "Supply - Delivery Office Aft"; network = list("ss13","rd")},/obj/item/paper/guides/cogstation/disposals,/obj/item/paper/fluff/cogstation/mulebot,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"cpn" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpo" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 5},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_cold) -"cpp" = (/obj/structure/plasticflaps,/obj/machinery/conveyor/auto{id = "cargo"},/obj/structure/fans/tiny,/obj/machinery/door/poddoor/preopen{id = "cargoblock"; name = "Cargo Router"},/turf/open/floor/plating,/area/quartermaster/sorting) -"cpq" = (/obj/effect/landmark/event_spawn,/turf/open/floor/carpet/blue,/area/crew_quarters/abandoned_gambling_den{name = "Arcade"}) -"cpr" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/public/glass,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"cps" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) -"cpt" = (/obj/machinery/newscaster{pixel_x = -30},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"cpu" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/holopad,/turf/open/floor/wood,/area/library) -"cpv" = (/obj/structure/table,/obj/machinery/newscaster{pixel_x = 30},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cpw" = (/obj/machinery/computer/operating,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/sign/poster/official/space_cops{pixel_y = 32},/turf/open/floor/plasteel/white,/area/science/robotics/lab) -"cpx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central) -"cpy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/holopad,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"cpz" = (/turf/closed/wall/r_wall,/area/medical/virology) -"cpA" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold) -"cpB" = (/obj/effect/landmark/carpspawn,/turf/open/space/basic,/area/space) -"cpC" = (/obj/effect/landmark/carpspawn,/turf/open/space/basic,/area/space/station_ruins) -"cpD" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/engine,/area/science/storage) -"cpE" = (/obj/structure/fans/tiny,/obj/structure/plasticflaps,/turf/open/floor/plating,/area/maintenance/disposal) -"cpF" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold) -"cpG" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/external,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plating,/area/maintenance/department/eva) -"cpH" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/sign/directions/engineering{dir = 4; pixel_y = -24},/obj/structure/sign/directions/supply{dir = 4; pixel_y = -32},/obj/structure/sign/directions/evac{dir = 4; pixel_y = -40},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cpI" = (/obj/machinery/chem_dispenser,/obj/effect/turf_decal/stripes/end{dir = 4},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel,/area/medical/chemistry) -"cpJ" = (/turf/closed/wall/r_wall/rust,/area/quartermaster/office) -"cpK" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/machinery/portable_atmospherics/canister,/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_hot) -"cpL" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/engine/teg_hot) -"cpM" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/bot,/obj/machinery/light{dir = 1; light_color = "#e8eaff"},/turf/open/floor/plasteel,/area/engine/atmos) -"cpN" = (/obj/structure/closet/secure_closet/atmospherics,/obj/item/cartridge/atmos,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"cpO" = (/obj/structure/closet/secure_closet/atmospherics,/obj/item/cartridge/atmos,/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel/dark,/area/engine/atmos) -"cpP" = (/obj/machinery/camera{c_tag = "Research - Gateway Atrium"; dir = 1},/turf/open/floor/plasteel/white,/area/gateway) -"cpQ" = (/obj/machinery/vending/wardrobe/atmos_wardrobe,/obj/effect/turf_decal/stripes/line{dir = 6; layer = 2.03},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/dark,/area/engine/atmos) -"cpR" = (/obj/structure/closet/crate/engineering/electrical,/obj/item/electronics/apc,/obj/item/electronics/apc,/obj/item/electronics/airalarm,/obj/item/electronics/airalarm,/obj/item/electronics/firelock,/obj/item/electronics/firelock,/obj/item/electronics/firealarm,/obj/item/electronics/firealarm,/obj/item/electronics/airlock,/obj/item/electronics/airlock,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold) -"cpS" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 5},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold) -"cpT" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_cold) -"cpU" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold) -"cpV" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/machinery/light{dir = 4; light_color = "#c1caff"},/turf/open/floor/plasteel,/area/engine/teg_cold) -"cpW" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/landmark/start/cargo_technician,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cpX" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine/air,/area/engine/atmos) -"cpY" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/teg_hot) -"cpZ" = (/obj/structure/table,/obj/item/tank/internals/air,/obj/item/clothing/mask/gas,/turf/open/floor/plasteel/dark,/area/engine/teg_hot) -"cqa" = (/obj/machinery/autolathe,/obj/effect/turf_decal/delivery,/obj/machinery/light{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold) -"cqb" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cqc" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold) -"cqd" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/mob/living/simple_animal/hostile/retaliate/goose{check_friendly_fire = 1; desc = "It may not be as wise as an owl, but the Head of Security's pet is far more dangerous."; faction = list("neutral","silicon","turret","station"); name = "Officer Snooty"},/turf/open/floor/plasteel,/area/security/main) -"cqe" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=eng1"; location = "sci"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"cqg" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqh" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"cqi" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"cqj" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"cqk" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=med"; location = "cargo"},/turf/open/floor/plasteel,/area/quartermaster/office) -"cql" = (/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=eng2"; location = "evac"},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"cqm" = (/obj/structure/table,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = 26},/obj/item/storage/box/disks_nanite,/obj/item/book/manual/wiki/research_and_development{pixel_x = 4; pixel_y = -8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"cqn" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/teg_cold) -"cqo" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_cold) -"cqp" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_cold) -"cqq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Warehouse"; req_one_access_txt = "10;24"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/teg_cold) -"cqr" = (/obj/machinery/power/apc{areastring = "/area/maintenance/starboard/central"; name = "Central Starboard Maintenance APC"; pixel_y = -26},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/maintenance/starboard/central) -"cqs" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/table/wood,/obj/item/clipboard,/obj/item/paper/guides/jobs/engi/solars,/obj/item/pen,/obj/machinery/camera{c_tag = "Engineering Foyer - Port"; network = list("ss13","rd")},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) -"cqt" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/trunk{dir = 4},/obj/structure/noticeboard/qm{dir = 4; pixel_x = -32},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"cqu" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/computer/atmos_alert,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) -"cqv" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) -"cqw" = (/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/machinery/disposal/bin,/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/stripes/white/full,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cqx" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/modular_computer/console/preset/engineering,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cqy" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/table/wood,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/structure/disposalpipe/segment,/obj/structure/extinguisher_cabinet{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cqz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/robotics/lab) -"cqA" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold) -"cqB" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/bottle/absinthe,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"cqC" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/engine/teg_cold) -"cqD" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold) -"cqE" = (/obj/machinery/conveyor_switch{id = "EngiCargoConveyer"},/obj/machinery/button/door{id = "EngiDeliverDoor"; name = "Engineering Delivery Door Control"; pixel_x = 24},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold) -"cqF" = (/obj/effect/turf_decal/delivery,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"cqG" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) -"cqH" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"cqI" = (/obj/structure/chair/stool,/obj/effect/landmark/start/atmospheric_technician,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cqJ" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cqK" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/sign/plaques/atmos{pixel_x = 32},/turf/open/floor/plasteel,/area/engine/break_room) -"cqL" = (/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/engine/teg_cold) -"cqM" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/engine/teg_cold) -"cqN" = (/turf/closed/wall/rust,/area/maintenance/department/security) -"cqO" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold) -"cqP" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"cqQ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqR" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqS" = (/obj/machinery/computer/rdconsole/experiment{dir = 4},/obj/effect/turf_decal/stripes/line,/obj/machinery/requests_console{department = "Science"; departmentType = 2; name = "Science RC"; pixel_x = -30; receive_ore_updates = 1},/turf/open/floor/plasteel,/area/science/explab) -"cqT" = (/obj/effect/turf_decal/stripes/line,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"cqU" = (/obj/machinery/door/airlock/external{name = "Escape Pod"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"cqV" = (/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"cqW" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/window/reinforced/spawner,/obj/structure/disposalpipe/junction/flip{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cqX" = (/obj/docking_port/stationary{dir = 4; dwidth = 5; height = 7; id = "supply_home"; name = "Cargo Shuttle"; width = 12},/turf/open/space/basic,/area/space) -"cqY" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/status_display{pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cqZ" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{department = "Medbay"; departmentType = 1; name = "Medbay RC"; pixel_y = -32},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cra" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/maintenance{name = "Auxiliary Tool Storage"},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/tools) -"crb" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/turf/open/floor/plating,/area/engine/teg_cold) -"crc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"crd" = (/obj/effect/turf_decal/bot,/obj/structure/table/reinforced,/obj/item/destTagger,/obj/item/destTagger,/obj/item/destTagger,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_y = 32},/obj/machinery/button/massdriver{id = "cargo_out"; pixel_x = -8; pixel_y = -4},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"cre" = (/obj/machinery/door/airlock/external/glass{name = "Asteroid Mining Access"; req_one_access_txt = "10;48"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"crf" = (/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"crg" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/door/airlock/medical/glass{name = "Chemistry Lab"; req_access_txt = "5; 33"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"crh" = (/obj/machinery/mass_driver{dir = 1; id = "cargo_out"; name = "Router Driver"},/turf/open/floor/plating,/area/quartermaster/sorting) -"cri" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/turf/open/floor/plasteel,/area/engine/break_room) -"crj" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) -"crk" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central) -"crl" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"crm" = (/obj/machinery/door/firedoor,/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "EngiCargoConveyer"},/obj/machinery/door/poddoor{id = "EngiDeliverDoor"; name = "Engineering Delivery Door"},/turf/open/floor/plating,/area/engine/teg_cold) -"crn" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "chem1"; name = "chem lab shutters"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/medical/chemistry) -"cro" = (/turf/closed/wall/r_wall/rust,/area/maintenance/starboard/aft) -"crp" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plating,/area/storage/tech) -"crq" = (/obj/structure/closet/crate/freezer,/obj/structure/cable{icon_state = "0-2"},/obj/machinery/power/apc{areastring = "/area/medical/morgue"; dir = 4; name = "Morgue APC"; pixel_x = 24},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"crr" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/camera{c_tag = "Central Hall - Fore"; network = list("ss13","rd")},/turf/open/floor/plasteel,/area/hallway/primary/central) -"crs" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/turf/open/floor/engine,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"crt" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/break_room) -"cru" = (/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"crv" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"crw" = (/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"crx" = (/obj/machinery/camera{c_tag = "Engine Room - Port Quarter"; dir = 1},/obj/structure/cable,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"cry" = (/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10; pixel_x = -5},/obj/item/stack/cable_coil/random,/obj/item/stack/cable_coil/random{pixel_x = -2; pixel_y = -2},/obj/item/stack/cable_coil/random{pixel_x = 2; pixel_y = 2},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/camera{c_tag = "Robotics - Surgery"; dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab) -"crz" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/camera/motion{c_tag = "Telecomms Satellite"; dir = 1; network = list("tcomms")},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"crA" = (/obj/machinery/aug_manipulator,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab) -"crB" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior - Port"; dir = 8; network = list("tcomms")},/turf/open/space/basic,/area/space/nearstation) -"crC" = (/obj/structure/lattice,/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior Starboard"; dir = 4; network = list("tcomms")},/turf/open/space/basic,/area/space/nearstation) -"crD" = (/obj/machinery/camera/motion{c_tag = "Telecomms Server Room"; dir = 1; network = list("tcomms")},/turf/open/floor/plasteel/dark/telecomms,/area/tcommsat/server) -"crE" = (/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior - Port Quarter"; network = list("tcomms")},/turf/open/space/basic,/area/space) -"crF" = (/obj/machinery/camera/motion{c_tag = "Telecomms Satellite Exterior - Starboard Quarter"; network = list("tcomms"); pixel_x = 22},/turf/open/space/basic,/area/space) -"crG" = (/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plating/airless,/area/science/test_area) -"crH" = (/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plating/airless,/area/science/test_area) -"crI" = (/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1; pixel_y = 1},/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plating,/area/science/mixing) -"crJ" = (/obj/structure/window/reinforced,/obj/machinery/mass_driver{dir = 8; id = "toxinsdriver"},/obj/effect/turf_decal/stripes/end{dir = 4},/turf/open/floor/plating,/area/science/mixing) -"crK" = (/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plating/airless,/area/science/test_area) -"crL" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plating/airless,/area/science/test_area) -"crM" = (/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/plating/airless,/area/science/test_area) -"crN" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/machinery/atmospherics/components/unary/tank/air{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/science/xenobiology) -"crO" = (/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 4},/obj/effect/turf_decal/stripes/end,/turf/open/floor/plasteel,/area/science/xenobiology) -"crP" = (/obj/structure/lattice,/turf/closed/wall,/area/hallway/secondary/entry) -"crQ" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/sign/poster/official/safety_internals{pixel_x = -32},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"crR" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"crS" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/door/airlock/external{name = "Escape Pod"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"crT" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/sign/poster/official/safety_internals{pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"crU" = (/obj/effect/turf_decal/stripes/line,/obj/item/crowbar,/obj/structure/sign/poster/official/safety_internals{pixel_x = 32},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"crV" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/public/glass,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"crW" = (/obj/machinery/computer/rdconsole/robotics{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab) -"crX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/start/medical_doctor,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"crY" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"crZ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/left,/area/hallway/primary/aft) -"csa" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/sign/warning/pods{pixel_x = -32; pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"csb" = (/obj/structure/sign/warning/pods{pixel_x = 32; pixel_y = 32},/turf/open/floor/plasteel/dark/corner{dir = 1},/area/hallway/secondary/entry) -"csc" = (/obj/structure/fans/tiny/invisible,/obj/docking_port/stationary{dir = 2; dwidth = 1; height = 4; name = "escape pod loader"; roundstart_template = /datum/map_template/shuttle/escape_pod/default; width = 3},/turf/open/space/basic,/area/space) -"csd" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"cse" = (/obj/structure/table/wood,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/item/clipboard,/obj/item/paper/monitorkey,/obj/item/pen/fountain,/obj/item/stamp/ce,/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 5; name = "Chief Engineer's RC"; pixel_y = -32},/mob/living/simple_animal/parrot/Poly,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"csf" = (/obj/structure/table/wood,/obj/machinery/recharger,/obj/machinery/light{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/requests_console{announcementConsole = 1; department = "Research Director's Desk"; departmentType = 5; name = "Research Director's RC"; pixel_y = -32; receive_ore_updates = 1},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"csg" = (/obj/machinery/holopad,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/quartermaster/office) -"csh" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"csi" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/machinery/door/poddoor/shutters/preopen{id = "chem1"; name = "chem lab shutters"},/turf/open/floor/plating,/area/medical/chemistry) -"csj" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"csk" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel,/area/science/explab) -"csl" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) -"csm" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"csn" = (/obj/machinery/computer/security{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_y = -32},/turf/open/floor/plasteel,/area/security/main) -"cso" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/holopad,/turf/open/floor/plasteel/white,/area/medical/genetics) -"csp" = (/obj/structure/cable{icon_state = "1-2"},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_x = 28},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"csq" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Cold Loop"; req_access_txt = "10"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold) -"csr" = (/obj/structure/table,/obj/machinery/computer/libraryconsole/bookmanagement,/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_x = 30},/turf/open/floor/plasteel,/area/bridge) -"css" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/teg_cold) -"cst" = (/obj/machinery/portable_atmospherics/scrubber,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/teg_cold) -"csu" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark/side{dir = 8},/area/gateway) -"csv" = (/obj/structure/table,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/item/storage/toolbox/mechanical,/obj/structure/disposalpipe/segment{dir = 4},/obj/item/paper/guides/cogstation/letter_supp,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"csw" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"csx" = (/obj/structure/closet/secure_closet/RD,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/cable{icon_state = "1-2"},/obj/item/paper/fluff/cogstation/letter_rd,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"csy" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/xmastree,/turf/open/floor/plasteel{dir = 1; icon_state = "chapel"},/area/chapel/main) -"csz" = (/obj/effect/turf_decal/tile/yellow,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"csA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Visitation"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/main) -"csB" = (/obj/machinery/light/small{brightness = 3; dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) -"csC" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating/asteroid,/area/hydroponics/garden{name = "Nature Preserve"}) -"csD" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/bridge) -"csE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hop) -"csF" = (/obj/structure/bed,/obj/effect/landmark/start/research_director,/obj/item/bedsheet/rd,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) -"csG" = (/obj/machinery/holopad,/obj/effect/landmark/event_spawn,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/lawoffice) -"csH" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/wood,/area/library) -"csI" = (/obj/structure/table/wood,/obj/machinery/light_switch{pixel_x = 4; pixel_y = -24},/obj/item/flashlight/lamp/green,/obj/structure/cable{icon_state = "4-8"},/obj/structure/extinguisher_cabinet{pixel_x = -6; pixel_y = -32},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) -"csJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"csK" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/machinery/door/window/northright{name = "Medbay Desk"; req_access_txt = "5"},/obj/item/clipboard,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/item/paper/guides/cogstation/letter_med,/obj/item/clothing/glasses/hud/health,/obj/item/pen,/obj/item/clothing/glasses/hud/health,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"csL" = (/obj/effect/landmark/xmastree/rdrod,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) -"csM" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"csN" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) -"csO" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"csP" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"csQ" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) -"csR" = (/turf/open/floor/engine,/area/science/storage) -"csS" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"csT" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/science/circuit) -"csU" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/storage/tech) -"csV" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple,/obj/machinery/button/door{id = "robotics"; name = "Shutters Control Button"; pixel_y = 8; req_access_txt = "29"; pixel_x = -24},/turf/open/floor/plasteel/dark/side{dir = 8},/area/science/robotics/lab) -"csW" = (/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"csX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"csY" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/science/xenobiology) -"csZ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/robotics/lab) -"cta" = (/obj/effect/landmark/blobstart,/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine,/area/science/xenobiology) -"ctb" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/landmark/blobstart,/obj/effect/landmark/xeno_spawn,/turf/open/floor/engine,/area/science/explab) -"ctc" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"ctd" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"cte" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"ctf" = (/obj/effect/turf_decal/stripes/corner{dir = 1},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"ctg" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"cth" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"cti" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"ctj" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/science/mixing) -"ctk" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/obj/structure/sign/warning/vacuum/external{pixel_x = 32},/turf/open/floor/plasteel,/area/engine/atmos) -"ctl" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/stripes/white/full,/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel,/area/engine/workshop) -"ctm" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/sorting/mail/flip{sortType = 2},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"ctn" = (/obj/structure/closet/secure_closet/engineering_chief,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/obj/item/paper/guides/cogstation/letter_chief,/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"cto" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/stripes/white/full,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"ctp" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"ctq" = (/obj/structure/closet/crate,/obj/effect/spawner/lootdrop/maintenance,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/sorting) -"ctr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/turf/open/floor/plating,/area/quartermaster/office) -"cts" = (/obj/structure/rack,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/turf/open/floor/plasteel/white,/area/gateway) -"ctt" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"ctu" = (/obj/structure/table,/obj/effect/turf_decal/bot,/obj/machinery/camera{c_tag = "Supply - Cargo Office"; dir = 1},/obj/machinery/newscaster{pixel_y = -28},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/item/storage/box/disks,/turf/open/floor/plasteel,/area/quartermaster/office) -"ctv" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/structure/disposalpipe/trunk{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"ctw" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/quartermaster/office) -"ctx" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"cty" = (/obj/effect/landmark/start/shaft_miner,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"ctz" = (/obj/structure/table,/obj/item/stamp/qm,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown,/obj/structure/cable{icon_state = "4-8"},/obj/item/coin/silver{pixel_x = -12},/obj/item/key{pixel_x = 8; pixel_y = 4},/turf/open/floor/plasteel,/area/quartermaster/qm) -"ctA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{name = "Cargo Bay"; req_one_access_txt = "31;48"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"ctB" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"ctC" = (/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel,/area/quartermaster/storage) -"ctD" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/medical/virology) -"ctE" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/modular_computer/console/preset/engineering,/obj/structure/cable{icon_state = "1-2"},/obj/structure/window/reinforced/spawner/north,/turf/open/floor/plasteel,/area/engine/workshop) -"ctF" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/medical/virology) -"ctG" = (/turf/closed/wall,/area/engine/workshop) -"ctH" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"ctI" = (/obj/structure/table/reinforced,/obj/item/paper_bin,/obj/item/pen,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/engine,/area/science/explab) -"ctJ" = (/obj/structure/plasticflaps,/turf/open/floor/plating,/area/engine/workshop) -"ctK" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop) -"ctL" = (/obj/machinery/light/small{dir = 8},/obj/machinery/camera{c_tag = "Xenobiology - Pen 5"; dir = 4},/turf/open/floor/engine,/area/science/xenobiology) -"ctM" = (/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/obj/machinery/camera{c_tag = "Xenobiology - Pen 6"; dir = 8; pixel_y = -22},/turf/open/floor/engine,/area/science/xenobiology) -"ctN" = (/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"ctO" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/sign/warning/biohazard{pixel_x = -32},/turf/open/floor/plasteel/white,/area/medical/virology) -"ctP" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"ctQ" = (/obj/structure/grille,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating/airless,/area/science/xenobiology) -"ctR" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"ctS" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/sign/warning/biohazard{pixel_x = -32; pixel_y = 32},/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"ctT" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/light{dir = 1; light_color = "#c1caff"},/obj/machinery/camera{c_tag = "Xenobiology - Aft"; network = list("ss13","rd")},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"ctU" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 10},/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"ctV" = (/obj/structure/chair{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc/highcap/five_k{areastring = "/area/hallway/secondary/exit"; name = "Escape Shuttle Hallway APC"; pixel_y = -28},/turf/open/floor/plasteel/white/corner,/area/hallway/secondary/exit) -"ctW" = (/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"ctX" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/toolcloset,/turf/open/floor/plasteel,/area/engine/workshop) -"ctY" = (/obj/structure/sign/departments/xenobio{pixel_x = -32; pixel_y = 32},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"ctZ" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cua" = (/obj/structure/chair/comfy/black{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cub" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cuc" = (/obj/machinery/door/airlock/virology/glass{name = "Monkey Pen"; req_access_txt = "39"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"cud" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/camera{c_tag = "Xenobiology - Aft Access"; dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cue" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "8;55"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/science/xenobiology) -"cuf" = (/obj/machinery/light,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cug" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cuh" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cui" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cuj" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cuk" = (/obj/structure/chair/comfy/black{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cul" = (/obj/structure/chair/comfy/black,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cum" = (/obj/structure/rack,/obj/item/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/storage/firstaid/regular{empty = 1; name = "First-Aid (empty)"},/obj/item/healthanalyzer{pixel_x = 4; pixel_y = -4},/obj/item/healthanalyzer{pixel_x = 4; pixel_y = -4},/obj/item/healthanalyzer{pixel_x = 4; pixel_y = -4},/obj/item/assembly/prox_sensor,/obj/item/assembly/prox_sensor,/obj/item/assembly/prox_sensor,/obj/item/assembly/prox_sensor,/obj/item/assembly/prox_sensor,/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab) -"cun" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/food/snacks/meat/steak,/obj/machinery/camera{c_tag = "Xenobiology - Test Chamber"; dir = 1},/turf/open/floor/engine,/area/science/xenobiology) -"cuo" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/hallway/primary/aft) -"cup" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cuq" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cur" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cus" = (/obj/machinery/light/small,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cut" = (/obj/docking_port/stationary{dir = 2; dwidth = 7; height = 9; id = "whiteship_home"; name = "SS13: Merchant Dock"; width = 13},/turf/open/space/basic,/area/space) -"cuu" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/toolcloset,/turf/open/floor/plasteel,/area/engine/workshop) -"cuv" = (/obj/structure/bed,/obj/item/bedsheet/medical,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"cuw" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/kirbyplants/photosynthetic,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/workshop) -"cux" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation) -"cuy" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space/nearstation) -"cuz" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/space/basic,/area/space/nearstation) -"cuA" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/space/basic,/area/space/nearstation) -"cuB" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation) -"cuC" = (/obj/structure/lattice/catwalk,/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 10},/turf/open/space/basic,/area/space/nearstation) -"cuD" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space/nearstation) -"cuE" = (/obj/structure/lattice,/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space/nearstation) -"cuF" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/junction{dir = 1},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/workshop) -"cuG" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space/nearstation) -"cuH" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/engine/workshop) -"cuI" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/table,/obj/machinery/airalarm{pixel_y = 24},/obj/item/storage/toolbox/emergency,/obj/item/screwdriver,/turf/open/floor/plasteel,/area/engine/workshop) -"cuJ" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/table,/obj/machinery/light{dir = 1},/obj/item/storage/toolbox/mechanical,/obj/item/screwdriver,/turf/open/floor/plasteel,/area/engine/workshop) -"cuK" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/closet/secure_closet/engineering_welding,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/engine/workshop"; dir = 1; name = "Engineering Workshop APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/engine/workshop) -"cuL" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/engine/workshop) -"cuM" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/structure/chair{dir = 1},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/workshop) -"cuN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/turf/closed/wall,/area/engine/workshop) -"cuO" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/storage/primary) -"cuP" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/atmospheric_technician,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cuQ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/gateway) -"cuR" = (/turf/closed/wall,/area/router/air) -"cuS" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/mass_driver{dir = 1; id = "workshop_out"; name = "Router Driver"},/turf/open/floor/plating,/area/engine/workshop) -"cuT" = (/obj/structure/window/reinforced/spawner/west,/obj/machinery/conveyor{id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop) -"cuU" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/sign/poster/official/build{pixel_x = -32},/turf/open/floor/plasteel,/area/engine/workshop) -"cuV" = (/turf/open/floor/plasteel,/area/engine/workshop) -"cuW" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cuX" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay"; req_access_txt = "5"},/obj/effect/mapping_helpers/airlock/unres,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cuY" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"cuZ" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark/side{dir = 4},/area/science/robotics/lab) -"cva" = (/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/engine/workshop) -"cvb" = (/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/engine/workshop) -"cvc" = (/obj/structure/chair/stool,/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/workshop) -"cvd" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/workshop) -"cve" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) -"cvf" = (/turf/open/floor/plasteel/freezer,/area/medical/virology) -"cvg" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/workshop) -"cvh" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/computer/rdconsole/production{dir = 8},/turf/open/floor/plasteel,/area/engine/workshop) -"cvi" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/engine/workshop) -"cvj" = (/obj/machinery/light_switch{pixel_x = -24},/obj/machinery/conveyor{id = "DeliveryConveyer"},/turf/open/floor/plating,/area/quartermaster/sorting) -"cvk" = (/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 1; id = "DeliveryConveyer"},/turf/open/floor/plating,/area/quartermaster/sorting) -"cvl" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/router/air) -"cvm" = (/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/power/apc{areastring = "/area/maintenance/central"; dir = 1; name = "Airbridge Router APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/router/air) -"cvn" = (/obj/structure/table,/obj/item/destTagger,/obj/machinery/airalarm{pixel_y = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/router/air) -"cvo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/medical/virology) -"cvp" = (/obj/effect/turf_decal/bot,/obj/machinery/computer/cargo/request,/obj/machinery/camera{c_tag = "Airbridge Router"; pixel_x = 22},/obj/machinery/requests_console{department = "Airbridge Router"; name = "Airbridge Router RC"; pixel_y = 28},/turf/open/floor/plasteel,/area/router/air) -"cvq" = (/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor{dir = 1; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop) -"cvr" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/workshop) -"cvs" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/medical/virology) -"cvt" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 10},/area/science/robotics/lab) -"cvu" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cvv" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/requests_console{department = "Genetics"; name = "Genetics RC"; pixel_x = 30},/turf/open/floor/plasteel/white,/area/medical/genetics) -"cvw" = (/obj/structure/closet,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/item/wrench/medical,/obj/item/screwdriver,/obj/item/stock_parts/cell/high/plus,/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -30},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central) -"cvx" = (/obj/structure/table,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/item/storage/firstaid/regular{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/regular{pixel_x = 2; pixel_y = 4},/obj/item/storage/firstaid/regular{pixel_x = 2; pixel_y = 4},/obj/item/storage/toolbox/emergency,/obj/item/hypospray/mkii/tricord,/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -30},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"cvy" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) -"cvz" = (/obj/machinery/atmospherics/components/trinary/mixer{dir = 4; node1_concentration = 0.8; node2_concentration = 0.2; on = 1; target_pressure = 4500},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cvA" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/warning/securearea{pixel_x = -32; pixel_y = -32},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cvB" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/machinery/porta_turret/ai{dir = 1; req_access = list(16)},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"cvC" = (/obj/machinery/computer/nanite_cloud_controller,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/structure/window/reinforced/spawner,/turf/open/floor/plasteel/dark,/area/science/server{name = "Computer Core"}) -"cvD" = (/obj/effect/turf_decal/delivery,/obj/machinery/rnd/server,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"cvE" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/door/poddoor{id = "RDServer"; name = "RD Server Lockup"},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"cvF" = (/obj/item/caution,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"cvG" = (/obj/machinery/door/airlock/research/glass{name = "Xenobiology Lab Access"; req_access_txt = "55"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/xenobiology) -"cvH" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Toxins Mixing Lab"; req_access_txt = "7;8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor/heavy,/turf/open/floor/plasteel/white,/area/science/mixing) -"cvI" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/computer/telecomms/server{dir = 1; network = "tcommsat"},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cvJ" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) -"cvK" = (/obj/structure/chair/sofa/right,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/extinguisher_cabinet{pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/bridge) -"cvL" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cvM" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/landmark/event_spawn,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/gateway) -"cvN" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cvO" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/components/binary/valve{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cvP" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/camera{c_tag = "Custodial Closet"; dir = 1},/obj/structure/extinguisher_cabinet{pixel_y = -32},/turf/open/floor/plasteel,/area/janitor) -"cvQ" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/side,/area/science/robotics/lab) -"cvR" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/sorting/mail/flip{sortType = 23},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cvS" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/holopad,/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"cvT" = (/obj/structure/extinguisher_cabinet,/turf/closed/wall,/area/medical/medbay/central) -"cvU" = (/obj/structure/closet/crate/freezer/blood,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/reagent_dispensers/virusfood{pixel_x = -32},/obj/structure/extinguisher_cabinet{pixel_y = 32},/turf/open/floor/plasteel/white,/area/medical/virology) -"cvV" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = 26},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cvW" = (/obj/structure/chair/comfy/black,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cvX" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "8;55"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/turf/open/floor/plasteel,/area/science/xenobiology) -"cvY" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research/glass{name = "Xenobiology Lab Access"; req_access_txt = "55"},/obj/machinery/door/firedoor,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/science/xenobiology) -"cvZ" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/clipboard,/obj/item/stamp/denied{pixel_x = 4; pixel_y = 4},/obj/item/stamp,/obj/machinery/door/window/southright{name = "Customs Desk"; req_access_txt = "57"},/obj/machinery/door/poddoor/shutters/preopen{id = "HoPAft"; name = "HoP Aft Desk Shutters"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"cwa" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/item/flashlight/lamp,/obj/structure/window/reinforced/spawner,/obj/machinery/door/poddoor/shutters/preopen{id = "HoPAft"; name = "HoP Aft Desk Shutters"},/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"cwb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Mech Bay"; req_access_txt = "29"},/turf/open/floor/circuit,/area/science/robotics/mechbay) -"cwc" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/button/door{id = "cargoblock"; name = "Router Access Control"; pixel_x = -24; pixel_y = 24; req_access_txt = "31"},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"cwd" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"cwe" = (/obj/structure/closet/secure_closet/exile,/turf/open/floor/plasteel/white,/area/gateway) -"cwf" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cwg" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/medical/virology) -"cwh" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/item/stack/sheet/mineral/plasma,/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cwi" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cwj" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/cable,/turf/open/floor/plating,/area/medical/virology) -"cwk" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/lounge) -"cwl" = (/obj/structure/table,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/book/manual/wiki/infections,/obj/item/folder/white,/obj/machinery/requests_console{department = "Virology"; name = "Virology RC"; pixel_x = -32},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cwm" = (/obj/machinery/atmospherics/components/binary/valve,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cwn" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cwo" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/table,/obj/machinery/microwave,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cwp" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/structure/cable,/turf/open/floor/plating,/area/medical/virology) -"cwq" = (/obj/machinery/door/airlock/engineering{name = "Hot Loop"; req_one_access_txt = "10;24"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) -"cwr" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light{dir = 8},/turf/open/floor/plasteel,/area/engine/workshop) -"cws" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light_switch{pixel_x = -24},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"cwt" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) -"cwu" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cwv" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/sign/warning/vacuum/external,/turf/open/floor/plating,/area/maintenance/disposal) -"cww" = (/turf/closed/wall/r_wall,/area/engine/atmos) -"cwx" = (/obj/machinery/disposal/bin,/obj/structure/disposalpipe/trunk{dir = 4},/obj/effect/turf_decal/stripes/white/full,/turf/open/floor/plasteel,/area/engine/atmos) -"cwy" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/transit_tube/horizontal,/turf/open/floor/plating,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"cwz" = (/obj/structure/transit_tube/curved{dir = 8},/turf/open/space/basic,/area/space) -"cwA" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos) -"cwB" = (/turf/open/floor/plasteel,/area/engine/atmos) -"cwC" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"cwD" = (/obj/structure/transit_tube/diagonal/topleft,/turf/open/space/basic,/area/space) -"cwE" = (/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/workshop) -"cwF" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"cwG" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/effect/landmark/event_spawn,/obj/structure/disposalpipe/segment{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) -"cwH" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall,/area/crew_quarters/toilet/restrooms) -"cwI" = (/obj/structure/transit_tube/horizontal,/turf/open/space/basic,/area/space) -"cwJ" = (/obj/structure/lattice,/obj/structure/transit_tube/horizontal,/turf/open/space/basic,/area/space/nearstation) -"cwK" = (/obj/structure/transit_tube/crossing/horizontal,/turf/open/space/basic,/area/space) -"cwL" = (/obj/structure/transit_tube/horizontal,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/engine/atmos) -"cwM" = (/obj/effect/turf_decal/stripes/end{dir = 4},/obj/structure/transit_tube/station/reverse/flipped,/obj/structure/transit_tube_pod{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"cwN" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) -"cwO" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cwP" = (/obj/structure/bed,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/landmark/start/chief_engineer,/obj/item/bedsheet/ce,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/crew_quarters/heads/chief"; dir = 4; name = "Chief Engineer's Office APC"; pixel_x = 24},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/heads/chief) -"cwQ" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/storage/primary) -"cwR" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"cwS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Warehouse"; req_access_txt = "11"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/storage/primary) -"cwT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/medical/virology) -"cwU" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/mineral/titanium/blue,/area/hallway/primary/central) -"cwV" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) -"cwW" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/public/glass,/turf/open/floor/plasteel,/area/hallway/primary/central) -"cwX" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/machinery/door/airlock/public/glass,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cwY" = (/obj/effect/landmark/event_spawn,/obj/machinery/air_sensor/atmos/toxins_mixing_tank,/turf/open/floor/engine/vacuum,/area/science/mixing) -"cwZ" = (/obj/structure/table,/obj/item/storage/box/beanbag,/obj/item/gun/ballistic/revolver/doublebarrel,/obj/item/storage/hypospraykit/toxin,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/grimy,/area/crew_quarters/bar) -"cxa" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 6},/turf/open/space/basic,/area/space/nearstation) -"cxb" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"cxc" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"cxd" = (/obj/machinery/computer/monitor,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) -"cxe" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cxf" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cxg" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cxh" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/landmark/start/chemist,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"cxi" = (/obj/structure/rack,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/item/extinguisher,/obj/item/extinguisher,/obj/item/extinguisher,/obj/item/extinguisher,/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Engineering - Primary Tool Storage"; dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"cxj" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/reagent_dispensers/foamtank,/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"cxk" = (/obj/structure/tank_dispenser,/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/storage/primary) -"cxl" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall,/area/storage/primary) -"cxm" = (/obj/structure/closet,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/warehouse) -"cxn" = (/obj/machinery/portable_atmospherics/scrubber,/obj/item/t_scanner{pixel_x = -4},/obj/item/pipe,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating{icon_state = "platingdmg2"},/area/quartermaster/warehouse) -"cxo" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/light/small,/obj/machinery/camera{c_tag = "Supply - Warehouse Aft"; dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cxp" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/mob/living/simple_animal/bot/floorbot,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cxq" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cxr" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cxs" = (/obj/structure/table,/obj/machinery/light{dir = 8},/obj/machinery/airalarm{dir = 4; pixel_x = -23},/obj/item/storage/toolbox/electrical,/obj/item/hand_labeler,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"cxt" = (/obj/effect/landmark/start/cargo_technician,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/storage) -"cxu" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/storage) -"cxv" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cxw" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cxx" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining/glass{name = "Warehouse"; req_one_access_txt = "10;31"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cxy" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/quartermaster/storage) -"cxz" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"cxA" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/mining{name = "Mining Office"; req_access_txt = "48"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cxB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Cargo Office"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) -"cxC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) -"cxD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"cxE" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cxF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/quartermaster/office) -"cxG" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) -"cxH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/office) -"cxI" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) -"cxJ" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/junction{dir = 8},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) -"cxK" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) -"cxL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/office) -"cxM" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cxN" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"cxO" = (/obj/structure/table,/obj/item/storage/firstaid/regular,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cxP" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"cxQ" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/quartermaster/office) -"cxR" = (/obj/effect/landmark/start/shaft_miner,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cxS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cxT" = (/obj/structure/table,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/paper/guides/cogstation/letter_supp,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cxU" = (/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/office) -"cxV" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cxW" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Starboard Quarter Maintenance"; req_one_access_txt = "12;48"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/quartermaster/office) -"cxX" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft) -"cxY" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"cxZ" = (/obj/effect/turf_decal/delivery,/obj/machinery/button/door{id = "MiningConveyorBlastDoor"; name = "Mining Conveyor Access"; pixel_x = 8; pixel_y = -24; req_one_access_txt = "10;24;48"},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cya" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft) -"cyb" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cyc" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/door/airlock/external/glass{name = "Mining Dock"; req_one_access_txt = "10;24;48"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cyd" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer) -"cye" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"cyf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"cyg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"cyh" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Mining Office Maintenance"; req_one_access_txt = "10;24;48"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/quartermaster/miningoffice) -"cyi" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cyj" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cyk" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cyl" = (/obj/effect/turf_decal/tile/yellow,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cym" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cyn" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cyo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Aft Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/hallway/primary/aft) -"cyp" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/workshop) -"cyq" = (/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/power/apc{dir = 4; name = "Restrooms APC"; pixel_x = 24},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"cyr" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cys" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cyt" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/purple,/obj/machinery/power/apc{areastring = "/area/science/robotics/lab"; dir = 8; name = "Robotics Lab APC"; pixel_x = -25},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cyu" = (/obj/structure/closet/wardrobe/chemistry_white{anchored = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"cyv" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/engine/workshop) -"cyw" = (/obj/structure/sink{dir = 4; pixel_x = 11},/obj/structure/sign/poster/official/cleanliness{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"cyx" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cyy" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Medbay Lobby"},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white/side,/area/medical/medbay/lobby) -"cyz" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/workshop) -"cyA" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"cyB" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light{dir = 1},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/sign/poster/official/medical_green_cross{pixel_y = 32},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cyC" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cyD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Departures"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"cyE" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"cyF" = (/obj/structure/closet/secure_closet/chemical,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"cyG" = (/obj/machinery/chem_master,/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central) -"cyH" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cyI" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cyJ" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) -"cyK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"cyL" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cyM" = (/obj/structure/closet/secure_closet/personal/patient,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cyN" = (/obj/machinery/chem_dispenser/apothecary,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central) -"cyO" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft) -"cyP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft) -"cyQ" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft) -"cyR" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft) -"cyS" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft) -"cyT" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft) -"cyU" = (/obj/machinery/camera{c_tag = "Aft Maintenance - Central Starboard"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/aft) -"cyV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) -"cyW" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"cyX" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"cyY" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) -"cyZ" = (/obj/machinery/computer/arcade,/obj/machinery/light{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) -"cza" = (/obj/structure/chair{dir = 4},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) -"czb" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/paicard,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) -"czc" = (/obj/structure/chair{dir = 8},/obj/machinery/light_switch{pixel_x = 24},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/cafeteria,/area/hallway/secondary/exit) -"czd" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"cze" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"czf" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark/side{dir = 4},/area/gateway) -"czg" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/mob/living/simple_animal/hostile/retaliate/bat,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"czh" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"czi" = (/obj/structure/bed,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light_switch{pixel_x = 24},/obj/effect/landmark/start/chief_medical_officer,/obj/item/bedsheet/cmo,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"czj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/aft) -"czk" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/maintenance/aft) -"czl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Aft Maintenance"; req_access_txt = "12"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/hallway/secondary/exit) -"czm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"czn" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"czo" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"czp" = (/obj/structure/chair{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"czq" = (/obj/structure/table/glass,/obj/item/reagent_containers/food/drinks/coffee,/obj/item/pen/blue,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"czr" = (/obj/structure/table/glass,/obj/item/storage/toolbox/emergency,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"czs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"czt" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"czu" = (/obj/machinery/suit_storage_unit/cmo,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"czv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/firealarm{dir = 4; pixel_x = -28},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"czw" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"czx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"czy" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"czz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Gateway Chamber"; req_access_txt = "62"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/engine,/area/gateway) -"czA" = (/obj/machinery/modular_computer/console/preset/research{dir = 8},/obj/item/reagent_containers/food/drinks/coffee,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"czB" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"czC" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"czD" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"czE" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"czF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/medical/chemistry) -"czG" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"czH" = (/obj/machinery/button/door{id = "robotics2"; name = "Shutters Control Button"; pixel_x = 24; pixel_y = -24; req_access_txt = "29"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"czI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"czJ" = (/obj/item/beacon,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"czK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"czL" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical/genetics) -"czM" = (/obj/machinery/requests_console{department = "Chemistry"; departmentType = 2; name = "Chemistry RC"; pixel_x = 30; receive_ore_updates = 1},/turf/open/floor/plasteel/white,/area/medical/chemistry) -"czN" = (/obj/structure/closet/crate/trashcart,/obj/structure/sign/departments/custodian{pixel_x = 32},/obj/structure/disposalpipe/segment,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/department/chapel) -"czO" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance_hatch{name = "Waste Disposal"; req_one_access_txt = "12;50"},/obj/effect/turf_decal/delivery,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal) -"czP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/machinery/light/small{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central) -"czQ" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/maintenance/department/chapel) -"czR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/sorting/mail,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/maintenance/department/chapel) -"czS" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/door/airlock{name = "Custodial Closet"; req_access_txt = "26"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/janitor) -"czT" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/janitor) -"czU" = (/obj/machinery/firealarm{pixel_y = 26},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel,/area/janitor) -"czV" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/maintenance/disposal) -"czW" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/chair/office/light{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central) -"czX" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/rust,/area/maintenance/disposal) -"czY" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light/small{brightness = 3; dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel,/area/janitor) -"czZ" = (/obj/effect/landmark/start/janitor,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/janitor) -"cAa" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/structure/chair/sofa/right,/obj/item/reagent_containers/food/drinks/bottle/vermouth/empty,/obj/item/reagent_containers/food/snacks/grown/cannabis{pixel_x = -4; pixel_y = 2},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal) -"cAb" = (/obj/machinery/firealarm{pixel_y = 26},/obj/structure/chair/sofa/left,/obj/item/storage/box/hug/medical,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass{dir = 8},/turf/open/floor/plasteel,/area/maintenance/disposal) -"cAc" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/spawner/structure/window,/turf/open/floor/plating,/area/medical/medbay/central) -"cAd" = (/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal) -"cAe" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/janitor) -"cAf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/janitor) -"cAg" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/janitor) -"cAh" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/maintenance_hatch{name = "Custodial Closet"; req_access_txt = "12;26"},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/janitor) -"cAi" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/maintenance/disposal) -"cAj" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/maintenance/disposal) -"cAk" = (/obj/effect/turf_decal/stripes/line,/obj/item/reagent_containers/pill/floorpill,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/glass,/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass{dir = 1},/turf/open/floor/plasteel,/area/maintenance/disposal) -"cAl" = (/obj/effect/turf_decal/stripes/line,/obj/item/stack/tile/plasteel{pixel_x = 10; pixel_y = 4},/obj/item/camera,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/glass{dir = 8},/turf/open/floor/plasteel,/area/maintenance/disposal) -"cAm" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cAn" = (/obj/structure/disposalpipe/junction/flip,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/disposal) -"cAo" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cAp" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/workshop) -"cAq" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/maintenance/disposal) -"cAr" = (/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/maintenance/disposal) -"cAs" = (/obj/structure/mopbucket,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/janitor) -"cAt" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/window/southleft{name = "Cloning Access"; req_one_access_txt = "9;45"},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cAu" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"cAv" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/medical/medbay/central) -"cAw" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/soap,/obj/item/grenade/chem_grenade/cleaner,/obj/item/grenade/chem_grenade/cleaner,/obj/item/grenade/chem_grenade/cleaner,/obj/item/reagent_containers/spray/cleaner{pixel_x = 4; pixel_y = -1},/obj/structure/disposalpipe/segment,/obj/item/reagent_containers/spray/cleaner{pixel_x = -8; pixel_y = 4},/obj/machinery/requests_console{department = "Custodial Closet"; name = "Custodial RC"; pixel_x = -32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/janitor) -"cAx" = (/obj/structure/chair{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/landmark/start/janitor,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/janitor) -"cAy" = (/obj/item/cigbutt,/turf/open/floor/plating,/area/maintenance/disposal) -"cAz" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/grille/broken,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plating,/area/maintenance/disposal) -"cAA" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/closed/wall,/area/storage/primary) -"cAB" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cAC" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/freezer,/area/medical/virology) -"cAD" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Isolation Room A"; req_access_txt = "39"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cAE" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/item/caution,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cAF" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{name = "Detective's Office"; req_access_txt = "4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"cAG" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/landmark/start/virologist,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cAH" = (/obj/structure/table,/obj/item/storage/box/beakers,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cAI" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cAJ" = (/obj/structure/table/wood,/obj/item/storage/book/bible/booze,/obj/item/beacon{pixel_y = -8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office) -"cAK" = (/obj/machinery/computer/med_data,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cAL" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/security{name = "Detective's Office"; req_access_txt = "4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/detectives_office) -"cAM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"cAN" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"cAO" = (/obj/effect/landmark/start/detective,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"cAP" = (/obj/structure/table/wood,/obj/item/storage/fancy/cigarettes,/obj/item/lighter{pixel_x = -4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/newscaster/security_unit{pixel_y = -30},/obj/machinery/camera{c_tag = "Detective's Office"; dir = 1},/obj/item/reagent_containers/food/drinks/bottle/hcider{pixel_x = 3; pixel_y = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"cAQ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/hor) -"cAR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office) -"cAS" = (/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark/side{dir = 8},/area/gateway) -"cAT" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/hallway/primary/aft) -"cAU" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) -"cAV" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cAW" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cAX" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cAY" = (/obj/machinery/door/airlock{name = "Catering"; req_one_access_txt = "25;28"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/bar) -"cAZ" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cBa" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/workshop) -"cBb" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/main) -"cBc" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cBd" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) -"cBe" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cBf" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cBg" = (/obj/structure/chair,/obj/effect/turf_decal/tile/neutral,/obj/effect/landmark/start/assistant,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cBh" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cBi" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cBj" = (/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cBk" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/landmark/start/station_engineer,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) -"cBl" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{name = "Power Monitoring"; req_access_txt = "10"},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/engine_smes{name = "Power Monitoring"}) -"cBm" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/rnd/production/techfab/department/engineering,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/workshop) -"cBn" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) -"cBo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cBp" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cBq" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"cBr" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"cBs" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"cBt" = (/obj/structure/closet/l3closet/scientist,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"cBu" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/sign/departments/security{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cBv" = (/obj/structure/table/glass,/obj/effect/turf_decal/tile/neutral,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cBw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Central Maintenance"; req_one_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/hallway/primary/port/fore) -"cBx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) -"cBy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/break_room) -"cBz" = (/obj/structure/filingcabinet/filingcabinet,/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel,/area/quartermaster/qm) -"cBA" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/structure/sign/warning/vacuum/external{pixel_y = 32},/obj/machinery/camera{c_tag = "Aft Hall - Fore"; pixel_x = 22},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cBB" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/engine/workshop) -"cBC" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/closed/wall/r_wall,/area/maintenance/aft/secondary{name = "Aft Air Hookup"}) -"cBD" = (/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cBE" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cBF" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/central) -"cBG" = (/obj/machinery/light,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cBH" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cBI" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/table/wood,/obj/machinery/recharger,/obj/machinery/light_switch{pixel_y = -24},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cBJ" = (/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/structure/table/wood,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/machinery/power/apc{name = "Engineering Foyer APC"; pixel_y = -24},/obj/item/storage/firstaid/regular,/obj/structure/cable,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cBK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cBL" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cBM" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"cBN" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"cBO" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"cBP" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"cBQ" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"cBR" = (/obj/structure/window/reinforced,/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/machinery/light,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/crew_quarters/bar) -"cBS" = (/obj/effect/turf_decal/tile/bar,/obj/effect/turf_decal/tile/bar{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/crew_quarters/bar) -"cBT" = (/obj/machinery/airalarm{dir = 1; pixel_y = -22},/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cBU" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/crew_quarters/bar) -"cBV" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/carpet/green,/area/crew_quarters/bar) -"cBW" = (/obj/structure/sign/plaques/golden{pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/green,/area/crew_quarters/bar) -"cBX" = (/obj/structure/chair/stool/bar,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/carpet/green,/area/crew_quarters/bar) -"cBY" = (/obj/machinery/newscaster{pixel_y = -28},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/carpet/green,/area/crew_quarters/bar) -"cBZ" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cCa" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cCb" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/sign/departments/security{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cCc" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cCd" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/sleeper{dir = 8},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/white,/area/medical{name = "Medical Booth"}) -"cCe" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cCf" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Central Maintenance - Fore"; dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/maintenance/central) -"cCg" = (/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cCh" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"cCi" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Monkey Pen"; req_access_txt = "39"},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cCj" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cCk" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/medical/virology) -"cCl" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/medical/virology) -"cCm" = (/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cCn" = (/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/port/fore) -"cCo" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/medical/virology) -"cCp" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/port/fore) -"cCq" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark/side{dir = 8},/area/hallway/primary/central) -"cCr" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/medical/virology) -"cCs" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark,/area/chapel/office) -"cCt" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Chapel Confessions"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/airalarm{dir = 8; pixel_x = 23},/turf/open/floor/plasteel/dark,/area/chapel/main) -"cCu" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable,/turf/open/floor/plating,/area/medical/virology) -"cCv" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/freezer,/area/medical/virology) -"cCw" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable,/turf/open/floor/plating,/area/medical/virology) -"cCx" = (/obj/structure/chair/office/light,/obj/effect/landmark/start/virologist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cCy" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/caution,/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cCz" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Isolation Room B"; req_access_txt = "39"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cCA" = (/obj/machinery/computer/security/wooden_tv,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/grimy,/area/security/detectives_office) -"cCB" = (/obj/machinery/light,/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/office) -"cCC" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/chapel/main) -"cCD" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/freezer,/area/medical/virology) -"cCE" = (/obj/machinery/portable_atmospherics/canister/water_vapor,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/junction/flip,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/janitor) -"cCF" = (/obj/machinery/conveyor_switch/oneway{id = "recycler"; name = "Recycler Conveyor Control"},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plating,/area/maintenance/disposal) -"cCG" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/central) -"cCH" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cCI" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cCJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/wood,/area/library) -"cCK" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/public/glass{name = "Library Access"},/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/library) -"cCL" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cCM" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/disposalpipe/junction,/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=bridge1"; location = "router"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/central) -"cCN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs/left,/area/hallway/primary/central) -"cCO" = (/obj/structure/table,/obj/machinery/airalarm{pixel_y = 24},/obj/item/hand_labeler,/obj/item/reagent_containers/glass/bottle/formaldehyde,/obj/item/paper/guides/jobs/medical/morgue,/obj/item/paper/guides/cogstation/cdn_med{pixel_x = -6; pixel_y = 1},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"cCP" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/landmark/start/depsec/engineering,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) -"cCQ" = (/obj/structure/bed,/obj/item/bedsheet/medical,/obj/machinery/light,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/freezer,/area/medical/virology) -"cCR" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/break_room) -"cCS" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/freezer,/area/medical/virology) -"cCT" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/stairs/medium,/area/hallway/primary/aft) -"cCU" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cCV" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plating,/area/maintenance/department/security) -"cCW" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) -"cCX" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/grimy,/area/crew_quarters/heads/hos) -"cCY" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cCZ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cDa" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cDb" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/item/storage/toolbox/mechanical,/obj/item/clothing/glasses/science,/obj/item/pen,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/medical/virology) -"cDc" = (/obj/structure/table,/obj/machinery/light,/obj/structure/bedsheetbin,/obj/item/clothing/glasses/hud/health,/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/freezer,/area/medical/virology) -"cDd" = (/obj/structure/bed,/obj/item/bedsheet/medical,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/freezer,/area/medical/virology) -"cDe" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/medical/virology) -"cDf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/medical/virology) -"cDg" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{id = "DeliveryConveyer"},/turf/open/floor/plating,/area/quartermaster/sorting) -"cDh" = (/obj/machinery/computer/card/minor/cmo{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/keycard_auth{pixel_x = -24},/obj/item/paper/guides/cogstation/letter_cmo,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"cDi" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/closet/crate/solarpanel_small,/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/storage/primary) -"cDj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) -"cDk" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/maintenance{name = "Security Maintenance"; req_access_txt = "12"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/hallway/primary/port/fore) -"cDl" = (/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cDm" = (/obj/structure/plasticflaps,/obj/structure/disposalpipe/segment,/obj/machinery/conveyor{dir = 1; id = "DeliveryConveyer"},/turf/open/floor/plating,/area/quartermaster/sorting) -"cDn" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/router/air) -"cDo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/air) -"cDp" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) -"cDq" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) -"cDr" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/dark/side{dir = 1},/area/security/courtroom) -"cDs" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/sign/warning/securearea{pixel_x = -32},/obj/item/kirbyplants{icon_state = "applebush"},/obj/machinery/airalarm{dir = 1; pixel_y = -22},/turf/open/floor/plasteel/dark/side,/area/bridge) -"cDt" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Captain's Quarters"; req_access_txt = "20"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/captain) -"cDu" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/crew_quarters/heads/captain) -"cDv" = (/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"cDw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain) -"cDx" = (/obj/machinery/light_switch{pixel_x = -4; pixel_y = 24},/obj/structure/extinguisher_cabinet{pixel_x = 6; pixel_y = 32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet/blue,/area/crew_quarters/heads/captain) -"cDy" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/turf/open/floor/plating,/area/crew_quarters/heads/hor) -"cDz" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/security/checkpoint/supply) -"cDA" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/computer/secure_data{dir = 8},/obj/machinery/newscaster/security_unit{pixel_x = 30},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"cDB" = (/obj/item/storage/secure/safe{pixel_x = -24},/obj/machinery/light{dir = 8},/obj/structure/dresser,/obj/item/storage/lockbox/medal,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) -"cDC" = (/obj/structure/chair/office/dark{dir = 4},/obj/effect/landmark/start/captain,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/captain) -"cDD" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/computer/security{dir = 8},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/security/checkpoint/supply"; dir = 4; name = "Cargo Security Checkpoint APC"; pixel_x = 24},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"cDE" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) -"cDF" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) -"cDG" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) -"cDH" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/gateway) -"cDI" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/gateway) -"cDJ" = (/obj/machinery/computer/crew,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"cDK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "Gateway Chamber"; req_access_txt = "62"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/engine,/area/gateway) -"cDL" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/obj/machinery/camera{c_tag = "Medbay - Apothecary"; dir = 8; network = list("ss13","medbay"); pixel_y = -22},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cDM" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/table/glass,/obj/item/book/manual/wiki/chemistry,/obj/item/book/manual/wiki/chemistry{pixel_x = 3; pixel_y = 3},/obj/item/clothing/glasses/science,/obj/item/clothing/glasses/science{pixel_x = 2; pixel_y = 4},/turf/open/floor/plasteel,/area/medical/chemistry) -"cDN" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/engine,/area/gateway) -"cDO" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cDP" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cDQ" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cDR" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/light_switch{pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cDS" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) -"cDT" = (/obj/structure/table,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/item/stack/cable_coil/red,/obj/item/stack/cable_coil/red{pixel_x = 3},/turf/open/floor/plasteel,/area/gateway) -"cDU" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) -"cDV" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/command{name = "Gateway Atrium"; req_access_txt = "62"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/gateway) -"cDW" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) -"cDX" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cDY" = (/obj/structure/cable{icon_state = "4-8"},/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/crew_quarters/heads/hor) -"cDZ" = (/obj/structure/table,/obj/machinery/computer/med_data/laptop,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Medical Officer's Desk"; departmentType = 5; name = "Chief Medical Officer RC"; pixel_y = 32},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"cEa" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/crew_quarters/heads/cmo) -"cEb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command{name = "Research Director's Office"; req_access_txt = "30"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/crew_quarters/heads/hor) -"cEc" = (/obj/effect/turf_decal/bot,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/navbeacon{codes_txt = "delivery;dir=1"; dir = 1; freq = 1400; location = "Bridge"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEd" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEe" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEf" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEg" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEj" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEk" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research/glass{name = "Research Sector"; req_one_access_txt = "29;47"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEl" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEm" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEn" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research/glass{name = "Research Sector"; req_one_access_txt = "29;47"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEo" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cEp" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cEq" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cEr" = (/obj/effect/turf_decal/bot,/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cEs" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEt" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEv" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research/glass{name = "Research Sector"; req_one_access_txt = "29;47"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/lab) -"cEx" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEy" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/lab) -"cEz" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cEA" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/disposalpipe/sorting/mail/flip{dir = 1; sortType = 24},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/lab) -"cEC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/science/lab) -"cED" = (/obj/structure/chair/stool,/obj/effect/landmark/start/scientist,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/lab) -"cEE" = (/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/maintenance/aft"; dir = 8; name = "Aft Maintenance APC"; pixel_x = -26},/turf/open/floor/plating,/area/maintenance/aft) -"cEF" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/junction{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cEG" = (/obj/structure/disposalpipe/junction/flip{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cEH" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cEI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cEJ" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/science/lab) -"cEL" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/science/lab) -"cEM" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEN" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cEO" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/door/airlock/research{name = "Robotics Lab"; req_access_txt = "29"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"cEP" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel/dark/side,/area/science/robotics/lab) -"cEQ" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cER" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay Locker Room"; req_access_txt = "5"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cES" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cET" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cEU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay Locker Room"; req_access_txt = "5"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cEV" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cEW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/start/paramedic,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cEX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cEY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cEZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFd" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFe" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFg" = (/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/medical/medbay/central) -"cFh" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFi" = (/obj/effect/landmark/start/paramedic,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFj" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFk" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/window/reinforced/spawner,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFl" = (/obj/structure/closet/secure_closet/medical1,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"cFm" = (/obj/structure/closet/crate/freezer/blood,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"cFn" = (/obj/structure/closet/l3closet,/obj/structure/disposalpipe/segment,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFo" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFp" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"cFq" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"cFr" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFs" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/noticeboard{pixel_y = 28},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/item/paper/guides/cogstation/letter_med,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFt" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/camera{c_tag = "Medbay - Port"; dir = 4},/obj/machinery/power/apc{areastring = "/area/medical/medbay/central"; dir = 8; name = "Medbay APC"; pixel_x = -24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFv" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFw" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/door/window/westright{name = "Treatment Center"; req_access_txt = "5"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"cFx" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"cFy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"cFz" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/item/clothing/gloves/color/latex,/obj/item/clothing/suit/apron/surgical,/obj/item/clothing/mask/surgical,/obj/item/healthanalyzer,/obj/item/clothing/neck/stethoscope,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"cFA" = (/obj/structure/table,/obj/item/storage/box/beakers{pixel_x = 5},/obj/item/storage/box/syringes{pixel_x = -4},/obj/item/reagent_containers/dropper,/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/medical/medbay/central) -"cFB" = (/obj/machinery/vending/snack/teal,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central) -"cFC" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/medical/medbay/central) -"cFD" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/start/paramedic,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFF" = (/obj/effect/landmark/start/paramedic,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central) -"cFG" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central) -"cFH" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Medbay Break Room"; req_access_txt = "5"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFI" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFJ" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFK" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/carpet/blue,/area/medical/medbay/central) -"cFL" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central) -"cFM" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central) -"cFN" = (/obj/structure/closet/secure_closet/medical1,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/cafeteria,/area/medical/medbay/central) -"cFO" = (/obj/structure/closet/crate/medical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFP" = (/obj/structure/table/wood,/obj/item/modular_computer/laptop/preset/civilian,/obj/item/reagent_containers/pill/patch/styptic,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/carpet/blue,/area/medical/medbay/central) -"cFQ" = (/obj/structure/chair/office/light{dir = 8},/obj/effect/landmark/start/medical_doctor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/carpet/blue,/area/medical/medbay/central) -"cFR" = (/obj/structure/closet/crate/medical,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFS" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cFT" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/virology/glass{name = "Virology Exterior Airlock"; req_access_txt = "39"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) -"cFU" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/virology) -"cFV" = (/obj/structure/table,/obj/item/storage/belt/utility,/obj/item/storage/belt/utility,/obj/item/multitool{pixel_x = 3},/obj/item/multitool{pixel_x = 3},/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = -1},/obj/item/storage/toolbox/mechanical{pixel_x = 2; pixel_y = -1},/obj/item/storage/toolbox/electrical{pixel_x = -1; pixel_y = 4},/obj/item/storage/toolbox/electrical{pixel_x = -1; pixel_y = 4},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/item/clothing/head/welding{pixel_x = -3; pixel_y = 5},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab) -"cFW" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "robotics2"; name = "robotics lab shutters"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plating,/area/science/robotics/lab) -"cFX" = (/obj/machinery/chem_heater,/obj/machinery/firealarm{dir = 8; pixel_x = 26},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central) -"cFY" = (/turf/open/floor/plasteel,/area/router/air) -"cFZ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/machinery/button/massdriver{id = "airbridge_out"; pixel_x = -8; pixel_y = 24},/turf/open/floor/plasteel,/area/router/air) -"cGa" = (/obj/machinery/conveyor{dir = 4; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air) -"cGb" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "MedSci Router"; req_access_txt = "5"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cGc" = (/obj/effect/turf_decal/tile/blue,/obj/machinery/light_switch{pixel_y = -24},/obj/structure/disposalpipe/junction{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cGd" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera{c_tag = "Medbay Locker Room"; dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cGe" = (/obj/structure/table,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light,/obj/item/reagent_containers/blood/OMinus{pixel_x = 4; pixel_y = 3},/obj/item/reagent_containers/food/drinks/coffee{pixel_x = 6},/obj/item/storage/box/masks{pixel_x = -4},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -30},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cGf" = (/obj/structure/window/reinforced/spawner,/obj/machinery/conveyor{dir = 4; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air) -"cGg" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/window/reinforced/spawner,/obj/machinery/conveyor{dir = 4; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air) -"cGh" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/window/reinforced/spawner,/obj/machinery/mass_driver{dir = 4; id = "airbridge_in"; name = "Router Driver"},/turf/open/floor/plating,/area/router/air) -"cGi" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cGj" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cGk" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cGl" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cGm" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cGn" = (/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cGo" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/science/research{name = "Research Sector"}) -"cGp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cGq" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cGr" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/research/glass{name = "Xenobiology Lab Access"; req_access_txt = "55"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cGs" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit) -"cGt" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit) -"cGu" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/research{name = "Research Sector"}) -"cGv" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cGw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Xenobiology Lab"; req_access_txt = "8;55"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cGx" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor,/obj/machinery/door/airlock/research{name = "Experimentation Lab"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) -"cGy" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cGz" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) -"cGA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cGB" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cGC" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cGD" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cGE" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cGF" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/engine,/area/science/storage) -"cGG" = (/obj/machinery/power/apc{areastring = "/area/science/storage"; dir = 4; name = "Toxins Storage APC"; pixel_x = 24},/obj/structure/cable,/turf/open/floor/engine,/area/science/storage) -"cGH" = (/obj/machinery/camera{c_tag = "Toxins Lab - Storage"; dir = 1},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/portable_atmospherics/pump,/turf/open/floor/engine,/area/science/storage) -"cGI" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/chair/office/light,/obj/effect/landmark/start/chemist,/turf/open/floor/plasteel,/area/medical/chemistry) -"cGJ" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/stripes/line{dir = 9},/turf/open/floor/engine,/area/science/storage) -"cGK" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/engine,/area/science/storage) -"cGL" = (/obj/structure/table,/obj/item/extinguisher,/obj/item/storage/toolbox/mechanical,/obj/item/wrench,/obj/item/clothing/mask/gas,/obj/item/extinguisher{pixel_x = -7; pixel_y = 3},/turf/open/floor/engine,/area/science/storage) -"cGM" = (/obj/structure/tank_dispenser,/turf/open/floor/engine,/area/science/storage) -"cGN" = (/obj/structure/closet/l3closet,/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cGO" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cGP" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/science/storage) -"cGQ" = (/obj/machinery/door/airlock/research{name = "Plasma Canister Storage"; req_access_txt = "7;8"},/turf/open/floor/engine,/area/science/storage) -"cGR" = (/obj/effect/landmark/start/scientist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/science/circuit) -"cGS" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit) -"cGT" = (/obj/item/radio/intercom{dir = 8; name = "Station Intercom (Common)"; pixel_x = 28},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit) -"cGU" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/door/airlock/medical{name = "Morgue"; req_access_txt = "5;6"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"cGV" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/science/storage) -"cGW" = (/obj/effect/landmark/blobstart,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/science/storage) -"cGX" = (/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/science/circuit) -"cGY" = (/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plasteel/white,/area/science/circuit) -"cGZ" = (/turf/open/floor/plating/airless,/area/science/storage) -"cHa" = (/obj/machinery/portable_atmospherics/canister/toxins,/obj/structure/sign/warning/fire{pixel_x = -32},/obj/machinery/camera{c_tag = "Toxins Lab - Plasma Storage"; dir = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/engine,/area/science/storage) -"cHb" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/science/circuit) -"cHc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit) -"cHd" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit) -"cHe" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/science/circuit) -"cHf" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/item/stock_parts/cell/high/plus,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/stack/cable_coil/red,/turf/open/floor/plasteel/white,/area/science/circuit) -"cHg" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/circuit) -"cHh" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel/white,/area/science/circuit) -"cHi" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/white,/area/science/circuit) -"cHj" = (/obj/structure/table,/obj/item/storage/hypospraykit/toxin{pixel_x = -5},/obj/item/storage/hypospraykit/fire{pixel_x = 5},/obj/item/clothing/glasses/sunglasses,/obj/item/clothing/glasses/sunglasses,/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/science/explab) -"cHk" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/explab) -"cHl" = (/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/explab) -"cHm" = (/obj/machinery/atmospherics/components/binary/pump,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/explab) -"cHn" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/explab) -"cHo" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"cHp" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"cHq" = (/obj/structure/closet/firecloset,/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/science/explab) -"cHr" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) -"cHs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) -"cHt" = (/obj/structure/disposalpipe/junction,/obj/machinery/light{dir = 4; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) -"cHu" = (/obj/machinery/firealarm{dir = 4; pixel_x = -28},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) -"cHv" = (/obj/structure/disposalpipe/segment,/obj/machinery/camera{c_tag = "Research - Experimentation Hall"; dir = 8; network = list("ss13","medbay")},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) -"cHw" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/warning/biohazard{pixel_x = -32},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) -"cHx" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/engine,/area/science/explab) -"cHy" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/engine,/area/science/explab) -"cHz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/engine,/area/science/explab) -"cHA" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/research{name = "Experimentation Lab"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/explab) -"cHB" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/landmark/blobstart,/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"cHC" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/science/explab"; dir = 4; name = "Experimentation Lab APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/explab) -"cHD" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/item/beacon,/turf/open/floor/engine,/area/science/explab) -"cHE" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/engine,/area/science/explab) -"cHF" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/engine,/area/science/explab) -"cHG" = (/obj/machinery/door/firedoor,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/airlock/research{name = "Experimentation Lab"; req_access_txt = "47"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"cHH" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"cHI" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/science/explab) -"cHJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/engine,/area/science/explab) -"cHK" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cHL" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cHM" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cHN" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cHO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) -"cHP" = (/obj/structure/chair/office/light{dir = 1; pixel_y = 3},/obj/effect/landmark/start/geneticist,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) -"cHQ" = (/obj/machinery/light,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/medical/medbay/central) -"cHR" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical{name = "Morgue"; req_one_access_txt = "9;45"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"cHS" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Genetics Lab"; req_access_txt = "9"},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics) -"cHT" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/rust,/area/medical/morgue) -"cHU" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/light_switch{pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/genetics) -"cHV" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/holopad,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"cHW" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/structure/table/reinforced,/obj/machinery/door/window/eastright{base_state = "left"; dir = 2; icon_state = "left"; name = "Chemistry Desk"; req_access_txt = "33"},/turf/open/floor/plasteel,/area/medical/chemistry) -"cHX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"cHY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/recharge_station,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/aft) -"cHZ" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor{name = "Airbridge Router"},/turf/open/floor/plating,/area/router/air) -"cIa" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/aft) -"cIb" = (/obj/structure/table,/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/item/storage/firstaid/radbgone,/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_x = 28},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/white,/area/medical/genetics) -"cIc" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"cId" = (/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/aft) -"cIe" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/maintenance/aft) -"cIf" = (/obj/structure/closet/crate/trashcart,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/effect/spawner/lootdrop/maintenance,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/aft) -"cIg" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/white,/area/medical/genetics) -"cIh" = (/obj/structure/plasticflaps,/obj/machinery/conveyor{dir = 4; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop) -"cIi" = (/obj/structure/window/reinforced/spawner,/obj/machinery/conveyor{dir = 4; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop) -"cIj" = (/obj/structure/chair,/obj/effect/landmark/start/geneticist,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/turf/open/floor/plasteel/white,/area/medical/genetics) -"cIk" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"cIl" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple,/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"cIm" = (/obj/structure/chair,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/geneticist,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"cIn" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/genetics) -"cIo" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/medical/glass{name = "Genetics Lab Maintenance"; req_access_txt = "9"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plating,/area/medical/genetics) -"cIp" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/turf/open/floor/plating,/area/maintenance/aft) -"cIq" = (/obj/structure/window/reinforced/spawner,/obj/structure/window/reinforced/spawner/east,/obj/machinery/conveyor{dir = 1; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop) -"cIr" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/firealarm{dir = 4; pixel_x = -28; pixel_y = -4},/obj/machinery/light_switch{pixel_x = -24; pixel_y = 10},/turf/open/floor/plasteel,/area/engine/workshop) -"cIs" = (/obj/machinery/door/airlock/atmos{name = "Atmospherics"; req_access_txt = "24"},/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/atmos) -"cIt" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/maintenance/starboard/aft) -"cIu" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"cIv" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIw" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIx" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/camera{c_tag = "Aft Hall"; network = list("ss13","rd")},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIy" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIz" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIA" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIB" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/item/kirbyplants/photosynthetic,/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIC" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cID" = (/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIE" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIF" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIG" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light{dir = 1; light_color = "#cee5d2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIH" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/firealarm{pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cII" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIJ" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIK" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIL" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIM" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIN" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Engineering Sector"},/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/delivery,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIP" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIQ" = (/obj/structure/disposalpipe/junction/yjunction{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIR" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIS" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIT" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIU" = (/obj/structure/disposalpipe/junction/flip{dir = 8},/obj/machinery/navbeacon{codes_txt = "patrol;next_patrol=evac"; location = "eng1"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIV" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIW" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 10},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIY" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cIZ" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cJa" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cJb" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cJc" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cJd" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cJe" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cJf" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Unisex Restrooms"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"cJg" = (/obj/structure/disposalpipe/segment,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/warehouse) -"cJh" = (/obj/structure/table,/obj/structure/bedsheetbin/towel,/obj/machinery/camera{c_tag = "Aft Restrooms"; dir = 8; pixel_y = -22},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel/freezer,/area/crew_quarters/toilet/restrooms) -"cJi" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/airalarm{dir = 1; locked = 0; pixel_y = -22},/turf/open/floor/plasteel,/area/quartermaster/office) -"cJj" = (/obj/machinery/computer/security/mining,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cJk" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/engine/workshop) -"cJl" = (/obj/structure/disposalpipe/segment{dir = 9},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/camera{c_tag = "Engine Room - Starboard Quarter"; dir = 8; pixel_y = -22},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"cJm" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/atmos) -"cJn" = (/obj/machinery/door/airlock/external{name = "Atmospherics External Airlock"; req_access_txt = "24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"cJo" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel/white/corner,/area/engine/atmos) -"cJp" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) -"cJq" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external/glass{name = "External Construction Access"; req_one_access_txt = "10;31"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cJr" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 5},/turf/open/space/basic,/area/space/nearstation) -"cJs" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/warehouse) -"cJt" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/light{dir = 8},/obj/machinery/power/apc{name = "AI Upload Foyer APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 5},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) -"cJu" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) -"cJv" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/engineering{name = "Engineering Router"; req_access_txt = "11"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"cJw" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"cJx" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{dir = 1},/turf/open/space/basic,/area/space/nearstation) -"cJy" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/rnd/production/circuit_imprinter,/turf/open/floor/plasteel,/area/engine/workshop) -"cJz" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor{dir = 8; id = "DeliveryConveyor"},/turf/open/floor/plating,/area/quartermaster/warehouse) -"cJA" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"cJB" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/visible,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/engineering{name = "Engine Room"}) -"cJC" = (/obj/machinery/door/airlock/engineering{name = "Gravity Generator"; req_access_txt = "11"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/firedoor/heavy,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"cJD" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/power/terminal,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"cJE" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/engine/gravity_generator) -"cJF" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/closed/wall/r_wall,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"cJG" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/cable{icon_state = "0-8"},/obj/structure/table,/obj/machinery/light/small,/obj/machinery/power/apc/highcap/five_k{areastring = "/area/engine/gravity_generator"; dir = 4; name = "Gravity Generator APC"; pixel_x = 26},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/engine/gravity_generator) -"cJH" = (/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/machinery/portable_atmospherics/canister,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel,/area/engine/atmos) -"cJI" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/engine/gravity_generator) -"cJJ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"cJK" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/components/binary/valve/digital{dir = 4},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"cJL" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"cJM" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/landmark/start/atmospheric_technician,/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"cJN" = (/obj/machinery/light/small,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"cJO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/engine/supermatter{name = "Thermo-Electric Generator"}) -"cJP" = (/obj/machinery/portable_atmospherics/scrubber,/obj/machinery/light/small,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"cJQ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"cJR" = (/obj/machinery/door/airlock/engineering{name = "Canister Storage"; req_one_access_txt = "10;24"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/door/firedoor/heavy,/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) -"cJS" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) -"cJT" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/corner,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) -"cJU" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) -"cJV" = (/obj/structure/plasticflaps,/obj/machinery/door/poddoor{id = "DeliveryDoor"; name = "Delivery Door"},/obj/effect/decal/cleanable/dirt,/obj/machinery/conveyor{dir = 8; id = "DeliveryConveyor"},/turf/open/floor/plating,/area/quartermaster/sorting) -"cJW" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 9},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"cJX" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"cJY" = (/obj/machinery/light,/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"cJZ" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) -"cKa" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) -"cKb" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) -"cKc" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{name = "Canister Storage"; req_access_txt = "10"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/storage{name = "Canister Storage"}) -"cKd" = (/obj/machinery/conveyor{dir = 8; id = "DeliveryConveyor"},/turf/open/floor/plating,/area/quartermaster/sorting) -"cKe" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "4-8"},/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/public/glass{name = "Airbridge Router"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/air) -"cKf" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/router/air) -"cKg" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/vending/engivend,/turf/open/floor/plasteel,/area/storage/primary) -"cKh" = (/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"cKi" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/door/airlock/medical{name = "Apothecary"; req_access_txt = "5"},/turf/open/floor/plasteel/showroomfloor,/area/medical/medbay/central) -"cKj" = (/obj/structure/closet/secure_closet/CMO,/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/item/paper/guides/cogstation/letter_cmo,/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"cKk" = (/obj/structure/chair/office/light{dir = 1; pixel_y = 3},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/effect/landmark/start/medical_doctor,/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"cKl" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/lobby) -"cKm" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/stairs,/area/medical/medbay/central) -"cKn" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cKo" = (/obj/structure/disposalpipe/sorting/mail{dir = 8; sortType = 9},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cKp" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 1},/turf/open/floor/plasteel,/area/medical/medbay/central) -"cKq" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"cKr" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cKs" = (/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cKt" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cKu" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cKv" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cKw" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/plating/airless,/area/science/xenobiology) -"cKx" = (/obj/structure/grille,/obj/structure/cable,/obj/structure/cable{icon_state = "0-2"},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plating/airless,/area/science/xenobiology) -"cKy" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/science/xenobiology) -"cKz" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cKA" = (/obj/machinery/atmospherics/components/binary/valve,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cKB" = (/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cKC" = (/obj/structure/chair/office/light{dir = 4},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/landmark/start/chief_medical_officer,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"cKD" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cKE" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/port/fore) -"cKF" = (/obj/effect/turf_decal/delivery,/obj/structure/reagent_dispensers/fueltank,/turf/open/floor/plasteel,/area/hallway/primary/central) -"cKG" = (/obj/effect/turf_decal/delivery,/obj/structure/closet/wardrobe/yellow,/turf/open/floor/plasteel,/area/hallway/primary/central) -"cKH" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/machinery/airalarm{pixel_y = 24},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cKI" = (/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/science/mixing) -"cKJ" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/mixing) -"cKK" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/science/mixing) -"cKL" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) -"cKM" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/science/mixing) -"cKN" = (/obj/structure/table/reinforced,/obj/item/assembly/signaler{pixel_x = -4},/obj/item/assembly/signaler,/obj/item/assembly/signaler{pixel_y = 8},/obj/item/assembly/signaler{pixel_x = 8; pixel_y = 4},/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/white,/area/science/mixing) -"cKO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/sign/departments/restroom{pixel_y = -32},/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cKP" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/structure/sign/departments/custodian{pixel_y = -32},/turf/open/floor/plating,/area/maintenance/aft) -"cKQ" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output,/turf/open/floor/engine/vacuum,/area/engine/atmos) -"cKR" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input,/turf/open/floor/engine/n2o,/area/engine/atmos) -"cKS" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output,/turf/open/floor/engine/n2o,/area/engine/atmos) -"cKT" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input,/turf/open/floor/engine/plasma,/area/engine/atmos) -"cKU" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output,/turf/open/floor/engine/plasma,/area/engine/atmos) -"cKV" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input,/turf/open/floor/engine/co2,/area/engine/atmos) -"cKW" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output,/turf/open/floor/engine/co2,/area/engine/atmos) -"cKX" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/closed/wall/r_wall,/area/engine/atmos) -"cKY" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/closed/wall/r_wall,/area/engine/atmos) -"cKZ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/space/basic,/area/space/nearstation) -"cLa" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/space/basic,/area/space/nearstation) -"cLb" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plating,/area/engine/atmos) -"cLc" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plating,/area/engine/atmos) -"cLd" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 5},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) -"cLe" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/engine/atmos) -"cLf" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/engine/atmos) -"cLg" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/violet/visible,/obj/structure/extinguisher_cabinet{pixel_y = 29},/turf/open/floor/plasteel,/area/engine/atmos) -"cLh" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"cLi" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/atmos) -"cLj" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{dir = 8},/turf/open/floor/plasteel/dark/side{dir = 1},/area/engine/atmos) -"cLk" = (/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "CO2 Outlet Pump"},/turf/open/floor/plasteel/dark/side{dir = 1},/area/engine/atmos) -"cLl" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"cLm" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/engine/atmos) -"cLn" = (/obj/effect/turf_decal/bot,/obj/machinery/light/small{dir = 8},/obj/structure/closet/secure_closet/engineering_personal,/obj/item/clothing/under/misc/overalls,/turf/open/floor/plasteel,/area/storage/primary) -"cLo" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/turf/open/floor/plasteel,/area/engine/atmos) -"cLp" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/atmos) -"cLq" = (/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/engine/atmos) -"cLr" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/storage/primary) -"cLs" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"cLt" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{dir = 1},/turf/open/floor/engine/n2,/area/engine/atmos) -"cLu" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{dir = 1},/turf/open/floor/engine/n2,/area/engine/atmos) -"cLv" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{dir = 1},/turf/open/floor/engine/o2,/area/engine/atmos) -"cLw" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{dir = 1},/turf/open/floor/engine/o2,/area/engine/atmos) -"cLx" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{dir = 1},/turf/open/floor/engine/air,/area/engine/atmos) -"cLy" = (/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{dir = 1},/turf/open/floor/engine/air,/area/engine/atmos) -"cLz" = (/obj/effect/turf_decal/bot,/obj/structure/closet/secure_closet/engineering_personal,/obj/item/clothing/under/misc/overalls,/turf/open/floor/plasteel,/area/storage/primary) -"cLA" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/camera{c_tag = "Virology - Starboard"; dir = 8; pixel_y = -22},/obj/machinery/power/apc{areastring = "/area/medical/virology"; dir = 4; name = "Virology Lab APC"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) -"cLB" = (/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/router/air) -"cLC" = (/obj/structure/bed,/obj/item/bedsheet/medical,/obj/machinery/camera{c_tag = "Virology - Port"; dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel/freezer,/area/medical/virology) -"cLD" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/freezer,/area/medical/virology) -"cLE" = (/obj/structure/closet/crate/medical,/turf/open/floor/plasteel,/area/router/air) -"cLF" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"cLG" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"cLH" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) -"cLI" = (/obj/structure/chair/office/light,/obj/effect/landmark/start/virologist,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel/white,/area/medical/virology) -"cLJ" = (/obj/structure/table,/obj/item/stack/packageWrap,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/wirecutters,/turf/open/floor/plasteel,/area/router/air) -"cLK" = (/obj/structure/window/reinforced/spawner/north,/obj/machinery/conveyor{id = "airbridge_off"},/turf/open/floor/plating,/area/router/air) -"cLL" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"cLM" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel/freezer,/area/medical/virology) -"cLN" = (/obj/structure/sink{dir = 4; pixel_x = 11},/turf/open/floor/plasteel/freezer,/area/medical/virology) -"cLO" = (/obj/structure/window/reinforced/spawner/north,/obj/machinery/conveyor{dir = 8; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air) -"cLP" = (/obj/structure/table,/obj/effect/turf_decal/tile/green{dir = 8},/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/item/storage/box/syringes,/obj/item/hand_labeler,/obj/item/radio/headset/headset_med,/obj/structure/sign/warning/biohazard{pixel_x = 32},/obj/item/radio/intercom{broadcasting = 1; frequency = 1485; listening = 0; name = "Station Intercom (Medical)"; pixel_y = -30},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/medical/virology) -"cLQ" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/conveyor{dir = 8; id = "airbridge_off"},/obj/machinery/door/poddoor{name = "Airbridge Router"},/turf/open/floor/plating,/area/router/air) -"cLR" = (/obj/structure/window/reinforced/spawner/north,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/mass_driver{dir = 8; id = "workshop_in"; name = "Router Driver"},/turf/open/floor/plating,/area/engine/workshop) -"cLS" = (/obj/machinery/light,/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel/freezer,/area/medical/virology) -"cLT" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/medical/virology) -"cLU" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 1; frequency = 1441; id = "inc_in"},/turf/open/floor/plating/airless,/area/medical/virology) -"cLV" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"cLW" = (/obj/machinery/light{dir = 4; light_color = "#c1caff"},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"cLX" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 6},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"cLY" = (/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/incinerator_output{dir = 4},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) -"cLZ" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"cMa" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/machinery/atmospherics/components/binary/pump/on{dir = 4},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) -"cMb" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/engine/atmos) -"cMc" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 6},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos) -"cMd" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 4; name = "N2 to Airmix"},/turf/open/floor/plasteel,/area/engine/atmos) -"cMe" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"cMf" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/tcommsat/computer) -"cMg" = (/obj/machinery/atmospherics/components/trinary/mixer/airmix{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"cMh" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) -"cMi" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/engine/atmos) -"cMj" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{dir = 1},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) -"cMk" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/dark/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"cMl" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) -"cMm" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"cMn" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "N2 to Pure"},/turf/open/floor/plasteel,/area/engine/atmos) -"cMo" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"cMp" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"cMq" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"cMr" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"cMs" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/green/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"cMt" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{dir = 4},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) -"cMu" = (/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/components/binary/pump/on{dir = 8},/turf/open/floor/engine/vacuum,/area/maintenance/disposal/incinerator) -"cMv" = (/obj/machinery/button/door/incinerator_vent_atmos_main{pixel_x = -24; pixel_y = 8},/obj/machinery/button/door/incinerator_vent_atmos_aux{pixel_x = -40; pixel_y = 8},/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"cMw" = (/obj/machinery/atmospherics/components/binary/valve/digital{name = "Waste Release"},/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"cMx" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 5},/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -30},/turf/open/floor/plasteel,/area/engine/atmos) -"cMy" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "Nitrogen Outlet"},/turf/open/floor/plasteel,/area/engine/atmos) -"cMz" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/light,/obj/machinery/camera{c_tag = "Atmospherics - Starboard Aft"; dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"cMA" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel,/area/engine/atmos) -"cMB" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "O2 to Airmix"},/turf/open/floor/plasteel,/area/engine/atmos) -"cMC" = (/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "O2 to Pure"},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"cMD" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/turf/open/floor/plasteel/white/corner,/area/engine/atmos) -"cME" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 9},/turf/open/floor/plasteel/white/corner,/area/engine/atmos) -"cMF" = (/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Air to Pure"},/turf/open/floor/plasteel/white/corner,/area/engine/atmos) -"cMG" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/turf/closed/wall/r_wall,/area/maintenance/disposal/incinerator) -"cMH" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/turf/closed/wall/r_wall,/area/engine/atmos) -"cMI" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 9},/turf/closed/wall/r_wall,/area/engine/atmos) -"cMJ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos) -"cMK" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/closed/wall/r_wall,/area/tcommsat/computer) -"cML" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"cMM" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"cMN" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"cMO" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"cMP" = (/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/floor/plating/airless,/area/engine/atmos) -"cMQ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/space/basic,/area/space/nearstation) -"cMR" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 9},/turf/open/space/basic,/area/space/nearstation) -"cMS" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/open/space/basic,/area/space/nearstation) -"cMT" = (/obj/structure/grille,/obj/machinery/atmospherics/pipe/simple/cyan/visible,/turf/closed/wall/r_wall,/area/engine/atmos) -"cMU" = (/obj/structure/window/reinforced/spawner/north,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/effect/turf_decal/stripes/line,/obj/machinery/conveyor{dir = 8; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop) -"cMV" = (/obj/machinery/conveyor{dir = 10; id = "workshop_off"},/turf/open/floor/plating,/area/engine/workshop) -"cMW" = (/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/machinery/vending/tool,/turf/open/floor/plasteel,/area/engine/workshop) -"cMX" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/table,/obj/item/storage/box/lights/mixed,/obj/item/multitool{pixel_x = 5; pixel_y = 3},/obj/item/multitool{pixel_x = 5; pixel_y = 3},/obj/item/multitool,/obj/item/multitool,/turf/open/floor/plasteel,/area/engine/workshop) -"cMY" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/table,/obj/machinery/camera{c_tag = "Engineering - Workshop"; dir = 1},/obj/item/clothing/gloves/color/yellow,/obj/item/t_scanner,/obj/item/t_scanner,/obj/item/t_scanner,/turf/open/floor/plasteel,/area/engine/workshop) -"cMZ" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high/plus,/turf/open/floor/plasteel,/area/engine/workshop) -"cNa" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/chair,/obj/effect/landmark/start/station_engineer,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/workshop) -"cNb" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/chair,/obj/effect/landmark/start/station_engineer,/turf/open/floor/plasteel,/area/engine/workshop) -"cNc" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/table,/obj/item/storage/toolbox/electrical,/obj/item/stack/cable_coil/red,/obj/item/stack/cable_coil/red,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/engine/workshop) -"cNd" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/closet/crate/engineering,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/workshop) -"cNe" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/disposalpipe/segment,/obj/item/radio/intercom{name = "Station Intercom (Common)"; pixel_y = -29},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/workshop) -"cNf" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/workshop) -"cNg" = (/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow,/obj/machinery/vending/assist,/turf/open/floor/plasteel,/area/engine/workshop) -"cNh" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/delivery,/obj/machinery/door/airlock/public/glass{name = "Airbridge Router"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/router/air) -"cNi" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/router/air) -"cNj" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/router/air) -"cNk" = (/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel,/area/router/air) -"cNl" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/machinery/light,/turf/open/floor/plasteel,/area/router/air) -"cNm" = (/obj/machinery/conveyor{dir = 8; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air) -"cNn" = (/obj/machinery/conveyor{dir = 10; id = "airbridge_off"},/turf/open/floor/plating,/area/router/air) -"cNo" = (/turf/closed/wall/rust,/area/engine/workshop) -"cNp" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/southleft{name = "Workshop Desk"; req_access_txt = "11"},/obj/item/paper_bin,/obj/item/pen,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/workshop) -"cNq" = (/obj/structure/table/reinforced,/obj/machinery/door/firedoor,/obj/machinery/door/window/southright{name = "Workshop Desk"; req_access_txt = "11"},/obj/item/folder/yellow,/turf/open/floor/plasteel,/area/engine/workshop) -"cNr" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/engine/workshop) -"cNs" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/turf/closed/wall,/area/engine/workshop) -"cNt" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/structure/disposalpipe/segment,/turf/closed/wall,/area/engine/workshop) -"cNu" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 4},/obj/machinery/door/airlock/engineering{name = "Engineering Workshop"; req_access_txt = "11"},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/delivery,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/workshop) -"cNv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/turf/closed/wall,/area/engine/workshop) -"cNw" = (/turf/closed/wall/r_wall,/area/router/air) -"cNx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/primary/aft) -"cNy" = (/turf/closed/wall/r_wall,/area/quartermaster/miningdock/airless) -"cNz" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/quartermaster/miningdock/airless) -"cNA" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/office) -"cNB" = (/turf/open/floor/plating,/area/quartermaster/miningdock/airless) -"cNC" = (/obj/effect/turf_decal/stripes/line,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai_upload_foyer) -"cND" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/quartermaster/miningoffice) -"cNE" = (/obj/effect/turf_decal/stripes/corner{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/machinery/light/small{brightness = 3; dir = 8},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) -"cNF" = (/obj/item/shovel,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) -"cNG" = (/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) -"cNH" = (/obj/effect/turf_decal/stripes/corner{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/sign/warning/electricshock{pixel_y = 32},/obj/machinery/light/small{dir = 4},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) -"cNI" = (/turf/open/floor/plating/airless,/area/router/aux) -"cNJ" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/machinery/camera{c_tag = "Medbay - Starboard"; network = list("ss13","rd")},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cNK" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 4},/turf/open/floor/plating{icon_state = "panelscorched"},/area/engine/teg_hot) -"cNL" = (/obj/machinery/atmospherics/components/unary/outlet_injector/on{dir = 8},/turf/open/floor/plating{icon_state = "panelscorched"},/area/engine/teg_cold) -"cNM" = (/obj/effect/decal/cleanable/dirt,/obj/structure/rack,/obj/item/circuitboard/machine,/obj/item/circuitboard/machine,/obj/item/circuitboard/machine,/obj/item/circuitboard/machine,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/wallframe/camera,/obj/item/stack/cable_coil,/obj/item/stack/cable_coil,/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) -"cNN" = (/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) -"cNO" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) -"cNP" = (/obj/effect/decal/cleanable/dirt,/obj/structure/frame/computer{dir = 8},/turf/open/floor/plating,/area/quartermaster/miningdock/airless) -"cNQ" = (/obj/structure/sign/warning{name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"},/turf/closed/wall/r_wall,/area/router/aux) -"cNR" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) -"cNS" = (/obj/machinery/power/apc{name = "Mining Dock APC"; pixel_y = -24},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) -"cNT" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/light_switch{pixel_y = -24},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) -"cNU" = (/obj/structure/table,/obj/effect/decal/cleanable/dirt,/obj/item/stack/sheet/plasteel/fifty,/turf/open/floor/plating,/area/quartermaster/miningdock/airless) -"cNV" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cNW" = (/obj/structure/lattice/catwalk,/obj/machinery/camera{c_tag = "Supply - Mining Exterior"; dir = 4},/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav) -"cNX" = (/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav) -"cNY" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/airlock/external/glass{name = "Refinery"; req_access_txt = "48"},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) -"cNZ" = (/obj/machinery/door/airlock/external/glass{name = "Refinery"; req_access_txt = "48"},/turf/open/floor/plasteel,/area/quartermaster/miningdock/airless) -"cOa" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 9},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/starboard/aft) -"cOb" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav) -"cOc" = (/obj/structure/lattice/catwalk,/obj/machinery/camera{c_tag = "Supply - Refinery Exterior"; pixel_x = 22},/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav) -"cOd" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/carpet{icon_state = "carpetsymbol"},/area/medical/medbay/lobby) -"cOe" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/starboard/aft) -"cOf" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav) -"cOg" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-8"},/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav) -"cOh" = (/obj/structure/lattice,/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav) -"cOi" = (/obj/machinery/conveyor_switch{id = "MiningConveyer"},/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) -"cOj" = (/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) -"cOk" = (/obj/machinery/light/small{dir = 4},/obj/structure/closet/toolcloset,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) -"cOl" = (/turf/closed/wall/r_wall,/area/quartermaster/miningdock/airless/no_grav) -"cOm" = (/obj/machinery/conveyor{dir = 4; id = "MiningConveyer"},/obj/structure/lattice/catwalk,/turf/open/space/basic,/area/quartermaster/miningdock/airless/no_grav) -"cOn" = (/obj/effect/turf_decal/loading_area{dir = 4},/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) -"cOo" = (/obj/structure/table,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) -"cOp" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) -"cOq" = (/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cOr" = (/obj/machinery/light/small,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) -"cOs" = (/obj/structure/closet/crate,/obj/item/stack/sheet/glass/fifty,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) -"cOt" = (/obj/structure/closet/crate,/obj/item/stack/rods/fifty,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) -"cOu" = (/obj/structure/closet/crate,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/metal/fifty,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) -"cOv" = (/obj/item/storage/toolbox/emergency,/obj/structure/table,/turf/open/floor/plating/airless,/area/quartermaster/miningdock/airless/no_grav) -"cOw" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hallway/secondary/exit) -"cOx" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-8"},/obj/machinery/power/apc{areastring = "/area/router/medsci"; dir = 1; name = "MedSci Router APC"; pixel_y = 24},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/router/medsci) -"cOy" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light/small{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel/white,/area/router/medsci) -"cOz" = (/obj/effect/turf_decal/delivery,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/turf/open/floor/plasteel/white,/area/router/medsci) -"cOA" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/plasteel,/area/router/medsci) -"cOB" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/turf/open/floor/plasteel,/area/router/medsci) -"cOC" = (/obj/effect/turf_decal/stripes/line{dir = 5},/obj/machinery/light_switch{pixel_x = 24},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/router/medsci) -"cOD" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 1},/obj/effect/landmark/event_spawn,/turf/open/floor/plating,/area/maintenance/aft) -"cOE" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/router/medsci) -"cOF" = (/obj/effect/turf_decal/stripes/line,/turf/open/floor/plasteel,/area/router/medsci) -"cOG" = (/obj/effect/turf_decal/stripes/line{dir = 6},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/router/medsci) -"cOH" = (/obj/machinery/computer/cargo/request{dir = 8},/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/router/medsci) -"cOI" = (/turf/closed/wall/r_wall,/area/router/medsci) -"cOJ" = (/obj/machinery/conveyor{id = "medsci_off"},/turf/open/floor/plating,/area/router/medsci) -"cOK" = (/obj/structure/table/reinforced,/obj/item/stack/packageWrap,/obj/item/hand_labeler,/obj/item/destTagger,/obj/machinery/light,/obj/machinery/button/massdriver{id = "medsci_out"; pixel_x = -8; pixel_y = 8},/obj/machinery/requests_console{department = "MedSci Router"; name = "MedSci Router RC"; pixel_y = -32},/turf/open/floor/plating,/area/router/medsci) -"cOL" = (/obj/machinery/conveyor{dir = 1; id = "medsci_off"},/turf/open/floor/plating,/area/router/medsci) -"cOM" = (/turf/closed/wall/r_wall,/area/janitor/aux) -"cON" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock{name = "Auxiliary Custodial Closet"; req_access_txt = "12"},/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plating,/area/janitor/aux) -"cOO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/janitor/aux) -"cOP" = (/obj/machinery/mass_driver{id = "medsci_out"; name = "Router Driver"},/turf/open/floor/plating,/area/router/medsci) -"cOQ" = (/obj/structure/reagent_dispensers/watertank,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/janitor/aux"; dir = 1; name = "Auxiliary Custodial Closet APC"; pixel_y = 24},/turf/open/floor/plasteel,/area/janitor/aux) -"cOR" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/turf/open/floor/plasteel,/area/janitor/aux) -"cOS" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/light_switch{pixel_y = 24},/obj/machinery/light/small{dir = 4},/obj/effect/decal/cleanable/cobweb/cobweb2,/obj/item/storage/box/lights/mixed,/obj/item/light/tube,/obj/item/radio/off,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/janitor/aux) -"cOT" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor{name = "MedSci Router"},/turf/open/floor/plating,/area/router/medsci) -"cOU" = (/obj/structure/plasticflaps,/obj/structure/fans/tiny,/obj/machinery/door/poddoor{name = "MedSci Router"},/obj/machinery/conveyor{dir = 1; id = "medsci_off"},/turf/open/floor/plating,/area/router/medsci) -"cOV" = (/obj/structure/closet/crate,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/item/storage/box/mousetraps,/obj/item/reagent_containers/glass/bucket,/obj/item/mop,/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel,/area/janitor/aux) -"cOW" = (/obj/structure/chair{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/landmark/event_spawn,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/janitor/aux) -"cOX" = (/obj/structure/table,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/item/modular_computer/laptop/preset/civilian,/turf/open/floor/plasteel,/area/janitor/aux) -"cOY" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/janitor/aux) -"cOZ" = (/obj/structure/closet/secure_closet/personal,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/machinery/camera{c_tag = "Custodial Closet - Auxiliary"; dir = 1},/turf/open/floor/plasteel,/area/janitor/aux) -"cPa" = (/obj/structure/mopbucket,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_y = -26},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel,/area/janitor/aux) -"cPb" = (/obj/machinery/disposal/bin,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/trunk{dir = 8},/turf/open/floor/plasteel,/area/janitor/aux) -"cPc" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/white,/area/medical/virology) -"cPd" = (/obj/machinery/conveyor{id = "sq_off"},/turf/open/floor/plating/airless,/area/router/aux) -"cPe" = (/obj/machinery/mass_driver{dir = 1; id = "sq_out"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) -"cPf" = (/obj/machinery/conveyor/auto,/turf/open/floor/plating/airless,/area/router/aux) -"cPg" = (/obj/machinery/mass_driver{dir = 1; id = "medsci_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) -"cPh" = (/obj/machinery/conveyor{dir = 1; id = "sq_off"},/turf/open/floor/plating/airless,/area/router/aux) -"cPi" = (/obj/machinery/conveyor{dir = 1; id = "viro_off"},/turf/open/floor/plating/airless,/area/router/aux) -"cPj" = (/obj/machinery/conveyor{dir = 9; id = "viro_off"},/turf/open/floor/plating/airless,/area/router/aux) -"cPk" = (/obj/machinery/conveyor{dir = 8; id = "viro_off"},/turf/open/floor/plating/airless,/area/router/aux) -"cPl" = (/obj/machinery/mass_driver{dir = 8; id = "viro_in"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) -"cPm" = (/obj/machinery/conveyor{dir = 8; id = "sq_off"},/turf/open/floor/plating/airless,/area/router/aux) -"cPn" = (/obj/machinery/conveyor{dir = 10; id = "sq_off"},/turf/open/floor/plating/airless,/area/router/aux) -"cPo" = (/obj/machinery/conveyor{dir = 4; id = "viro_off"},/turf/open/floor/plating/airless,/area/router/aux) -"cPp" = (/obj/machinery/mass_driver{dir = 4; id = "viro_out"; name = "Router Driver"},/turf/open/floor/plating/airless,/area/router/aux) -"cPq" = (/obj/machinery/conveyor{dir = 4; id = "sq_off"},/turf/open/floor/plating/airless,/area/router/aux) -"cPr" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/hydroponics/lobby) -"cPs" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/bridge) -"cPt" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel/dark,/area/security/checkpoint/customs) -"cPu" = (/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden,/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/engine/break_room) -"cPv" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/circuit,/area/science/robotics/mechbay) -"cPw" = (/turf/open/floor/plasteel/dark,/area/science/robotics/mechbay) -"cPx" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cPy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/sign/poster/contraband/lusty_xenomorph{pixel_y = 32},/turf/open/floor/plating,/area/maintenance/aft) -"cPz" = (/obj/structure/lattice,/obj/structure/transit_tube/curved{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation) -"cPA" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/structure/transit_tube/horizontal,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation) -"cPB" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/structure/transit_tube/crossing/horizontal,/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation) -"cPC" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/transit_tube/horizontal,/turf/open/floor/plasteel,/area/engine/atmos) -"cPD" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/engine/atmos) -"cPE" = (/obj/structure/disposalpipe/segment,/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/space/basic,/area/space/nearstation) -"cPF" = (/obj/structure/lattice,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/space/basic,/area/space/nearstation) -"cPG" = (/obj/effect/turf_decal/stripes/line,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/turretid{control_area = "/area/science/server"; icon_state = "control_stun"; name = "Computer Core turret control"; pixel_x = -3; pixel_y = -23; req_access_txt = "65"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/science/server{name = "Computer Core"}) -"cPH" = (/obj/machinery/conveyor_switch{id = "EngiCargoConveyer"},/obj/structure/cable,/obj/machinery/power/apc{areastring = "/area/quartermaster/sorting"; dir = 8; name = "Delivery Office APC"; pixel_x = -26},/turf/open/floor/plasteel,/area/quartermaster/sorting) -"cPI" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engineering Foyer"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) -"cPJ" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering{name = "Engineering Foyer"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) -"cPK" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{name = "Engineering Access"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) -"cPL" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/engineering/glass{name = "Engineering Access"; req_one_access_txt = "10;24"},/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/disposalpipe/segment,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/engine/break_room) -"cPM" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/table,/obj/machinery/recharger,/obj/machinery/requests_console{department = "Security"; departmentType = 5; name = "Security RC"; pixel_x = 32},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/checkpoint/supply) -"cPN" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"cPO" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plating,/area/maintenance/starboard/aft) -"cPP" = (/obj/effect/landmark/start/paramedic,/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"cPQ" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{areastring = "/area/medical/genetics"; dir = 8; name = "Genetics Lab APC"; pixel_x = -26},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/aft) -"cPR" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) -"cPS" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue,/obj/machinery/door/firedoor,/obj/machinery/door/airlock/command/glass{name = "CMO's Office"; req_access_txt = "40"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/white,/area/crew_quarters/heads/cmo) -"cPT" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/crew_quarters/heads/cmo) -"cPU" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cPV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/holopad,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cPW" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cPX" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/white,/area/science/xenobiology) -"cPY" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/firedoor,/obj/effect/turf_decal/caution/stand_clear{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/science/xenobiology) -"cPZ" = (/obj/effect/turf_decal/stripes/line,/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/door/firedoor,/obj/effect/turf_decal/caution/stand_clear{dir = 1},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/xenobiology) -"cQa" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/science/xenobiology) -"cQb" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cQc" = (/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cQd" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cQe" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/window/reinforced/spawner,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/button/door{id = "xenobio2"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) -"cQf" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/turf/open/floor/plating,/area/science/xenobiology) -"cQg" = (/obj/machinery/door/window/westright{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio1"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) -"cQh" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cQi" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cQj" = (/obj/machinery/door/window/eastleft{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio2"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) -"cQk" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/obj/structure/cable,/turf/open/floor/plating,/area/science/xenobiology) -"cQl" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/window/reinforced/spawner/north,/obj/structure/cable{icon_state = "4-8"},/obj/machinery/button/door{id = "xenobio1"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) -"cQm" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cQn" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cQo" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable,/turf/open/floor/plating,/area/science/xenobiology) -"cQp" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cQq" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cQr" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/window/reinforced/spawner,/obj/machinery/button/door{id = "xenobio4"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/science/xenobiology) -"cQs" = (/obj/machinery/door/window/westright{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio3"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) -"cQt" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cQu" = (/obj/machinery/door/window/eastleft{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio4"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) -"cQv" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/window/reinforced/spawner/north,/obj/machinery/button/door{id = "xenobio3"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) -"cQw" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/light{dir = 8; light_color = "#e8eaff"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cQx" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 8},/obj/structure/window/reinforced/spawner,/obj/machinery/button/door{id = "xenobio6"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/science/xenobiology) -"cQy" = (/obj/machinery/door/window/westright{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio5"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) -"cQz" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cQA" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cQB" = (/obj/machinery/door/window/eastleft{name = "Containment Pen"; req_one_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/poddoor/preopen{id = "xenobio6"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) -"cQC" = (/obj/structure/table/reinforced,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/structure/window/reinforced/spawner/north,/obj/machinery/button/door{id = "xenobio5"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/turf/open/floor/plasteel,/area/science/xenobiology) -"cQD" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cQE" = (/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cQF" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 9},/obj/structure/cable{icon_state = "2-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cQG" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/science/xenobiology) -"cQH" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/button/door{id = "xenobio7"; name = "Containment Blast Doors"; pixel_y = 4; req_access_txt = "55"},/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/xenobiology) -"cQI" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 8; layer = 2.9},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/item/clothing/mask/gas,/obj/item/clothing/glasses/science,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/science/xenobiology) -"cQJ" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/xenobiology) -"cQK" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/general/visible,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/xenobiology) -"cQL" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/science/xenobiology) -"cQM" = (/obj/machinery/door/window/southright{name = "Secure Xenobiological Containment"; req_one_access_txt = "55"},/obj/machinery/door/poddoor/preopen{id = "xenobio7"; name = "containment blast door"},/turf/open/floor/engine,/area/science/xenobiology) -"cQN" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/xenobiology) -"cQO" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/science/xenobiology) -"cQP" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/turf/open/floor/plating,/area/science/xenobiology) -"cQQ" = (/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge) -"cQR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/bridge) -"cQS" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-8"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"cQT" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable,/obj/structure/cable{icon_state = "0-4"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"cQU" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/door/poddoor/preopen{id = "bridge blast"; name = "bridge blast door"},/turf/open/floor/plating,/area/bridge) -"cQV" = (/obj/item/kirbyplants{icon_state = "plant-02"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/bridge) -"cQW" = (/obj/structure/table/wood,/obj/item/paper_bin,/obj/machinery/camera{c_tag = "Bridge - Port Quarter"; dir = 1},/obj/machinery/keycard_auth{pixel_y = -24},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge) -"cQX" = (/obj/machinery/photocopier,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge) -"cQY" = (/obj/structure/reagent_dispensers/water_cooler,/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel/dark,/area/bridge) -"cQZ" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 8},/obj/structure/cable{icon_state = "1-8"},/turf/open/floor/plasteel/dark,/area/bridge) -"cRa" = (/obj/effect/turf_decal/stripes/end{dir = 4},/obj/machinery/conveyor{dir = 4; id = "MiningConveyer"},/obj/machinery/door/poddoor{id = "MiningConveyorBlastDoor"; name = "Asteroid Mining Load Door"},/turf/open/floor/plating/airless,/area/quartermaster/miningoffice) -"cRb" = (/obj/machinery/computer/cloning,/obj/effect/turf_decal/bot,/obj/structure/disposalpipe/segment,/obj/item/paper/guides/jobs/medical/cloning{pixel_x = -4},/turf/open/floor/plasteel,/area/medical/medbay/central) -"cRc" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/door/airlock/research{name = "Aft Observatory"; req_access_txt = "47"},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cRd" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/machinery/door/airlock/research{name = "Aft Observatory"; req_access_txt = "47"},/turf/open/floor/plasteel/dark,/area/science/misc_lab{name = "Research Observatory"}) -"cRe" = (/obj/machinery/computer/upload/ai{dir = 8},/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/turret_protected/ai) -"cRf" = (/obj/structure/window/reinforced/spawner/north,/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/machinery/flasher{id = "ID"; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/ai_monitored/turret_protected/ai) -"cRg" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/obj/machinery/atmospherics/components/unary/portables_connector/visible,/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/light,/turf/open/floor/plasteel/white/corner,/area/engine/atmos) -"cRh" = (/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/closed/wall/r_wall,/area/ai_monitored/turret_protected/ai_upload_foyer) -"cRi" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/turf/open/floor/plasteel/dark/side,/area/science/robotics/lab) -"cRj" = (/obj/effect/turf_decal/tile/purple{dir = 1},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/dark/side{dir = 6},/area/science/robotics/lab) -"cRk" = (/obj/structure/table,/obj/machinery/cell_charger,/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000; pixel_y = 3; pixel_x = 4},/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000; pixel_x = -6; pixel_y = 6},/obj/item/stock_parts/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/button/door{id = "robotics3"; name = "Shutters Control Button"; pixel_x = 24; pixel_y = -24; req_access_txt = "29"},/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab) -"cRl" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"cRm" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/light,/obj/effect/turf_decal/stripes/red/full,/obj/structure/disposalpipe/trunk{dir = 1},/obj/structure/sign/poster/official/cleanliness{pixel_y = -32},/obj/machinery/disposal/bin{name = "Corpse Disposal Unit"},/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"cRn" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"cRo" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"cRp" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 5},/obj/structure/cable{icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/landmark/start/roboticist,/turf/open/floor/plasteel/dark,/area/science/robotics/lab) -"cRq" = (/obj/machinery/rnd/production/circuit_imprinter/department/science,/obj/effect/turf_decal/stripes/line{dir = 1},/turf/open/floor/plasteel,/area/science/robotics/lab) -"cRr" = (/obj/machinery/droneDispenser,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/glass/fifty,/obj/effect/turf_decal/stripes/line{dir = 5; layer = 2.03},/turf/open/floor/plasteel,/area/science/robotics/lab) -"cRs" = (/obj/machinery/recharge_station,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 9},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plating,/area/ai_monitored/turret_protected/ai_upload_foyer) -"cRt" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/quartermaster/warehouse) -"cRu" = (/obj/effect/turf_decal/delivery,/turf/open/floor/plasteel,/area/science/mixing) -"cRv" = (/mob/living/simple_animal/opossum{desc = "Wubba lubba dub dub."; name = "Rick"},/turf/open/floor/plasteel/showroomfloor,/area/medical/morgue) -"cRw" = (/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/obj/item/paper/guides/cogstation/letter_med{pixel_y = 4},/obj/item/storage/backpack/duffelbag/med/surgery,/turf/open/floor/plasteel/white,/area/medical/medbay/zone2{name = "Medbay Treatment Center"}) -"cVq" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/atmos) -"cVO" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"dpO" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"dVR" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) -"dYm" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/engine,/area/science/storage) -"eCy" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = -27},/turf/open/floor/plasteel,/area/engine/atmos) -"eIh" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "N2O Outlet Pump"},/turf/open/floor/plasteel/white/corner{dir = 1},/area/engine/atmos) -"eKM" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = -30},/obj/machinery/atmospherics/pipe/manifold/supplymain/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"eTZ" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"eUF" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/space/basic,/area/space/nearstation) -"fgS" = (/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Plasma Outlet Pump"},/turf/open/floor/plasteel,/area/engine/atmos) -"fkx" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"fti" = (/obj/machinery/atmospherics/components/binary/pump,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"fui" = (/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/turf/open/space/basic,/area/space) -"fuE" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 10},/turf/open/space/basic,/area/space/nearstation) -"fuR" = (/obj/machinery/atmospherics/pipe/simple/cyan/hidden,/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_x = 30},/turf/open/floor/plasteel,/area/science/mixing) -"fIw" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 4},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) -"guK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/space/basic,/area/space) -"gDY" = (/obj/machinery/atmospherics/components/binary/pump{dir = 8; name = "Fuel Pipe to Incinerator"},/obj/machinery/light,/obj/machinery/atmospherics/components/binary/pump/on{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"gGG" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 8},/turf/open/space/basic,/area/space/nearstation) -"gVV" = (/obj/structure/window/reinforced{dir = 4; layer = 2.9},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/portable_atmospherics/canister/oxygen,/turf/open/floor/engine,/area/science/storage) -"hcR" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/closed/wall/r_wall,/area/bridge) -"hiV" = (/obj/effect/turf_decal/tile/yellow{dir = 4},/obj/effect/turf_decal/tile/yellow{dir = 1},/obj/machinery/atmospherics/pipe/simple/cyan/hidden{dir = 4},/turf/open/floor/plasteel,/area/tcommsat/computer) -"hlo" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) -"hlV" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/open/floor/plating/airless,/area/space/nearstation) -"hDz" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"hFa" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/turf_decal/stripes/line{dir = 6},/turf/open/floor/engine,/area/science/storage) -"hKC" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) -"hMZ" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Pure to Port"},/turf/open/floor/plasteel,/area/engine/atmos) -"hXk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall/r_wall,/area/engine/engineering{name = "Engine Room"}) -"ifC" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/manifold/orange/visible,/turf/open/space/basic,/area/space/nearstation) -"iAW" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"iQY" = (/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/engine/atmos) -"jiZ" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 5},/turf/closed/wall/r_wall,/area/engine/atmos) -"jml" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; layer = 2.4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plasteel,/area/engine/atmos) -"jon" = (/obj/machinery/atmospherics/components/unary/thermomachine/freezer{dir = 1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"jyu" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/open/space/basic,/area/space/nearstation) -"jMO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 8},/turf/closed/wall/r_wall,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"jXo" = (/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 10},/turf/closed/wall/r_wall,/area/engine/atmos) -"kxw" = (/obj/machinery/atmospherics/pipe/simple/violet/visible,/turf/open/space/basic,/area/space) -"kzb" = (/obj/machinery/atmospherics/pipe/manifold/orange/hidden{dir = 4},/turf/closed/wall/r_wall,/area/bridge) -"kOG" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 1; name = "Mix to Engine"},/turf/open/floor/plasteel,/area/engine/atmos) -"lcD" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Air to Port"},/turf/open/floor/plasteel,/area/engine/atmos) -"lRy" = (/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"mkx" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"mqB" = (/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"mxW" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 9},/turf/open/space/basic,/area/space/nearstation) -"mBP" = (/obj/effect/landmark/xeno_spawn,/turf/open/floor/plasteel,/area/science/mixing) -"mEa" = (/obj/machinery/atmospherics/pipe/manifold/cyan/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) -"mIm" = (/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/machinery/light{light_color = "#cee5d2"},/turf/open/floor/engine,/area/science/storage) -"mIT" = (/obj/structure/lattice/catwalk,/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/turf/open/space/basic,/area/space/nearstation) -"mKP" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/tcommsat/computer) -"mNN" = (/obj/machinery/space_heater,/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"ntC" = (/obj/machinery/atmospherics/components/binary/pump{name = "Port to Fuel Pipe"},/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"nvn" = (/obj/machinery/atmospherics/pipe/manifold/general/visible{dir = 1},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/engine/atmos) -"nAF" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; name = "Mix to Port"},/turf/open/floor/plasteel,/area/engine/atmos) -"nBM" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"nEX" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 9},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) -"nLV" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"ony" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 4},/turf/open/floor/plating,/area/engine/atmos) -"opd" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 4},/turf/open/space/basic,/area/space/nearstation) -"oMB" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/cyan/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden,/turf/open/floor/plating,/area/engine/atmos) -"pgu" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/orange/visible,/turf/open/space/basic,/area/space/nearstation) -"prx" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"qeq" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/space/basic,/area/space/nearstation) -"qgO" = (/obj/machinery/portable_atmospherics/scrubber,/turf/open/floor/plasteel,/area/engine/atmos) -"qlJ" = (/obj/structure/lattice/catwalk,/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/turf/open/space/basic,/area/space/nearstation) -"qvB" = (/obj/machinery/atmospherics/components/unary/thermomachine/heater{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"qHL" = (/obj/effect/spawner/structure/window/reinforced,/obj/machinery/atmospherics/pipe/manifold/yellow/visible{dir = 1},/turf/open/floor/plating,/area/engine/atmos) -"qWY" = (/obj/machinery/atmospherics/components/binary/pump/on{name = "Waste In"},/turf/open/floor/plasteel,/area/engine/atmos) -"rdF" = (/obj/machinery/atmospherics/pipe/simple/dark/visible{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) -"rTW" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 6},/turf/open/space/basic,/area/space/nearstation) -"rUl" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 8},/turf/open/floor/plasteel,/area/engine/atmos) -"sdp" = (/obj/structure/reagent_dispensers/foamtank,/turf/open/floor/engine,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"sHB" = (/obj/machinery/atmospherics/pipe/manifold/orange/visible{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"sRD" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) -"sVC" = (/obj/structure/lattice/catwalk,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supplymain/visible,/turf/open/space/basic,/area/space/nearstation) -"tjb" = (/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{dir = 9},/obj/machinery/meter,/turf/open/floor/plating,/area/engine/engineering{name = "Engine Room"}) -"tpQ" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible,/turf/open/space/basic,/area/space/nearstation) -"tuF" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 6},/turf/closed/wall/r_wall,/area/engine/atmos) -"tyI" = (/obj/machinery/atmospherics/pipe/simple/supplymain/visible{dir = 4},/turf/closed/wall/r_wall,/area/engine/atmos) -"tXV" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4; layer = 2.4},/turf/open/floor/plasteel,/area/engine/atmos) -"tZj" = (/obj/structure/tank_dispenser{pixel_x = -1},/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/atmos) -"tZC" = (/obj/machinery/atmospherics/pipe/manifold4w/orange/visible,/obj/machinery/meter,/turf/open/floor/plasteel,/area/engine/atmos) -"urj" = (/obj/machinery/atmospherics/pipe/simple/general/hidden{dir = 8; icon_state = "intact"},/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/bridge) -"uwK" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 6},/turf/open/floor/plasteel,/area/engine/secure_construction{name = "Engineering Construction Area"}) -"uAY" = (/obj/structure/table,/obj/item/storage/belt/utility,/obj/item/t_scanner,/turf/open/floor/plasteel,/area/engine/atmos) -"uVD" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 10},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 5},/turf/open/floor/plasteel,/area/engine/atmos) -"vcb" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 5},/obj/machinery/atmospherics/pipe/simple/orange/hidden{dir = 10},/turf/open/floor/plasteel,/area/engine/atmos) -"vsO" = (/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/closed/wall/r_wall,/area/engine/atmos) -"vxU" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible,/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/open/floor/plasteel,/area/engine/atmos) -"wbu" = (/obj/machinery/atmospherics/pipe/simple/violet/visible,/turf/closed/wall/r_wall,/area/engine/atmos) -"wPS" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/simple/violet/visible{dir = 9},/turf/open/space/basic,/area/space/nearstation) -"wWH" = (/obj/machinery/atmospherics/pipe/manifold4w/general/visible,/turf/open/floor/plasteel,/area/engine/atmos) -"xcO" = (/obj/effect/turf_decal/tile/green{dir = 4},/obj/effect/turf_decal/tile/green{dir = 1},/obj/machinery/atmospherics/pipe/simple/green/visible{dir = 4},/obj/machinery/atmospherics/components/binary/pump{dir = 0; name = "Mix Outlet Pump"},/turf/open/floor/plasteel,/area/engine/atmos) -"xjk" = (/obj/machinery/atmospherics/components/binary/pump{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"xkC" = (/obj/machinery/atmospherics/pipe/simple/orange/visible{dir = 9},/turf/open/floor/plasteel,/area/engine/atmos) -"xoj" = (/obj/structure/table,/obj/item/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/pen,/turf/open/floor/plasteel,/area/engine/atmos) -"xxP" = (/turf/closed/wall,/area/quartermaster/storage) -"xCy" = (/obj/machinery/atmospherics/components/binary/pump,/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{dir = 4},/turf/open/floor/plasteel,/area/engine/atmos) -"xKr" = (/obj/machinery/atmospherics/pipe/simple/yellow/visible{dir = 4},/obj/machinery/atmospherics/pipe/simple/orange/hidden,/turf/open/floor/plasteel,/area/engine/atmos) +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/turf/open/space/basic, +/area/space) +"aab" = ( +/obj/structure/sign/poster/official/anniversary_vintage_reprint, +/turf/closed/wall/r_wall, +/area/science/research{ + name = "Research Sector" + }) +"aac" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/maintenance/fore) +"aad" = ( +/turf/open/floor/engine{ + name = "Holodeck Projector Floor" + }, +/area/holodeck/rec_center) +"aae" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 4; + height = 12; + id = "arrivals_stationary"; + name = "cog arrivals"; + roundstart_template = /datum/map_template/shuttle/arrival/cog; + width = 9 + }, +/turf/open/space/basic, +/area/space) +"aaf" = ( +/turf/closed/wall, +/area/science/test_area) +"aag" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel/stairs/medium, +/area/hallway/secondary/entry) +"aah" = ( +/obj/structure/sign/warning/electricshock, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"aai" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/closed/wall/r_wall/rust, +/area/maintenance/fore) +"aaj" = ( +/turf/closed/wall/r_wall, +/area/maintenance/port/fore) +"aak" = ( +/obj/machinery/conveyor/auto{ + id = "pb" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"aal" = ( +/turf/closed/wall, +/area/maintenance/port/fore) +"aam" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aan" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/ai_monitored/security/armory) +"aao" = ( +/obj/machinery/power/solar{ + id = "forestarboard"; + name = "Fore-Starboard Solar Array" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/fore) +"aap" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aaq" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aar" = ( +/obj/machinery/conveyor/auto{ + dir = 8; + id = "pb" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"aas" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/window/reinforced/spawner/north, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aat" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/observatory"; + dir = 1; + name = "Observatory APC"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aau" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/port/fore"; + dir = 8; + name = "Port Bow Maintenance APC"; + pixel_x = -24 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aav" = ( +/obj/machinery/conveyor/auto{ + dir = 8; + id = "solar" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"aaw" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/test_area) +"aax" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"aay" = ( +/obj/structure/sign/warning/electricshock, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"aaz" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/ai_monitored/security/armory) +"aaA" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"aaB" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/kitchen/backroom"; + dir = 1; + name = "Kitchen Coldroom APC"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"aaC" = ( +/obj/structure/closet/secure_closet/lethalshots, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/storage/box/firingpins, +/obj/item/storage/box/firingpins, +/obj/effect/spawner/lootdrop/armory_contraband/metastation, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"aaD" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"aaE" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/camera{ + c_tag = "Port Bow Maintenance - Fore"; + network = list("ss13","rd") + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aaF" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"aaG" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/stairs/left, +/area/security/brig) +"aaH" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/machinery/camera/motion{ + c_tag = "Armory Motion Sensor"; + pixel_x = 22 + }, +/obj/structure/rack, +/obj/item/gun/energy/e_gun{ + pixel_y = -6 + }, +/obj/item/gun/energy/e_gun{ + pixel_y = -3 + }, +/obj/item/gun/energy/e_gun, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"aaI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aaJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"aaK" = ( +/obj/machinery/power/solar{ + id = "foreport"; + name = "Fore-Port Solar Array" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port) +"aaL" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/space/basic, +/area/solar/port) +"aaM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space/basic, +/area/solar/port) +"aaN" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/security/brig) +"aaO" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/space/basic, +/area/solar/starboard/fore) +"aaP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space/basic, +/area/solar/starboard/fore) +"aaQ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"aaR" = ( +/obj/machinery/vending/snack/random, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aaS" = ( +/turf/open/floor/plasteel, +/area/security/brig) +"aaT" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/space/basic, +/area/solar/starboard/fore) +"aaU" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"aaV" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/solar/starboard/fore) +"aaW" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/space/basic, +/area/space/nearstation) +"aaX" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aaY" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 21 + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"aaZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aba" = ( +/obj/machinery/door/airlock/external{ + name = "Arrival Shuttle Airlock" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/space/basic, +/area/solar/starboard/fore) +"abd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"abe" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/space/basic, +/area/solar/starboard/fore) +"abf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"abg" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abh" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/solar/port) +"abi" = ( +/obj/machinery/power/solar{ + id = "foreport"; + name = "Fore-Port Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/port) +"abj" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space/basic, +/area/solar/starboard/fore) +"abk" = ( +/obj/structure/closet/crate/secure/gear{ + name = "Grenade Crate" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/storage/box/flashbangs{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/storage/box/teargas{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier, +/obj/item/grenade/barrier, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"abl" = ( +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/structure/rack, +/obj/item/gun/energy/laser{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/gun/energy/laser, +/obj/item/gun/energy/laser{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"abm" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"abn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_y = 6 + }, +/obj/item/gun/ballistic/shotgun/riot, +/obj/item/gun/ballistic/shotgun/riot{ + pixel_y = -6 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"abo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"abp" = ( +/turf/closed/wall/r_wall, +/area/space/nearstation) +"abq" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/item/storage/box/rubbershot{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/storage/box/rubbershot, +/obj/item/storage/box/rubbershot{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"abr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"abs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abv" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/fore) +"abw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/suit/armor/bulletproof, +/obj/item/clothing/suit/armor/bulletproof{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001 + }, +/obj/item/clothing/head/helmet/alt{ + layer = 3.00001; + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"abx" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/port) +"aby" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space/basic, +/area/space/nearstation) +"abz" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/fore) +"abA" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"abB" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/closed/wall, +/area/crew_quarters/theatre/clown) +"abC" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/closed/wall, +/area/crew_quarters/theatre/clown) +"abD" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"abE" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"abF" = ( +/obj/machinery/mass_driver{ + dir = 8; + id = "sb_out"; + name = "Router Driver" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"abG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/box/trackimp{ + pixel_x = 4 + }, +/obj/item/storage/box/chemimp{ + pixel_x = -4 + }, +/obj/item/storage/lockbox/loyalty, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"abH" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/space/basic, +/area/space/nearstation) +"abI" = ( +/obj/structure/table, +/obj/structure/mirror{ + icon_state = "mirror_broke"; + pixel_x = -24 + }, +/obj/item/storage/briefcase, +/obj/item/circuitboard/machine/vending/donksofttoyvendor, +/obj/item/storage/pill_bottle/happy, +/obj/effect/decal/cleanable/dirt, +/obj/item/paper/fluff/cogstation/cluwne, +/turf/open/floor/plating, +/area/crew_quarters/theatre/clown) +"abJ" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "sb_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"abK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"abM" = ( +/turf/closed/wall/r_wall, +/area/router/aux) +"abN" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/checker, +/area/hallway/secondary/entry) +"abO" = ( +/obj/structure/chair/comfy/brown, +/obj/item/beacon, +/turf/open/floor/carpet/royalblue, +/area/bridge) +"abP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/gun/energy/ionrifle{ + pixel_y = 4 + }, +/obj/item/gun/energy/temperature/security{ + pixel_y = -4 + }, +/obj/item/clothing/suit/armor/laserproof, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"abQ" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plating, +/area/maintenance/fore) +"abR" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/router/aux) +"abS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/brig) +"abT" = ( +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/dorms/purple"; + name = "Crew Quarters A APC"; + pixel_y = -26 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"abU" = ( +/obj/machinery/space_heater, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/dorms/blue"; + name = "Crew Quarters B APC"; + pixel_y = -26 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/fore) +"abV" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"abW" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/router/aux) +"abX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/checkpoint) +"abY" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"abZ" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "sb_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"aca" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "pb_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"acb" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/maintenance/fore) +"acc" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "solitarylock"; + name = "Brig Lockdown" + }, +/turf/open/floor/plating, +/area/security/brig) +"acd" = ( +/obj/machinery/button/door{ + id = "armory"; + name = "Armory Blast Door Control"; + pixel_x = -28; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"ace" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "pb_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"acf" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "pb_out"; + name = "Router Driver" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"acg" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"ach" = ( +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"aci" = ( +/turf/closed/wall, +/area/medical{ + name = "Medical Booth" + }) +"acj" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "solar_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"ack" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/rack, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/suit/armor/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/clothing/head/helmet/riot, +/obj/item/shield/riot{ + pixel_x = -6 + }, +/obj/item/shield/riot{ + pixel_x = -6 + }, +/obj/item/shield/riot{ + pixel_x = -6 + }, +/obj/item/clothing/mask/gas/sechailer/swat{ + pixel_x = -4 + }, +/obj/item/clothing/mask/gas/sechailer/swat{ + pixel_x = -4 + }, +/obj/item/clothing/mask/gas/sechailer/swat{ + pixel_x = -4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"acl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Armory"; + req_one_access_txt = "3" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"acm" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"acn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aco" = ( +/turf/open/floor/plating, +/area/maintenance/port/fore) +"acp" = ( +/turf/open/floor/plating/airless, +/area/science/test_area) +"acq" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/conveyor{ + id = "solar_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"acr" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 7 + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"acs" = ( +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"act" = ( +/turf/closed/wall/r_wall, +/area/maintenance/fore) +"acu" = ( +/obj/structure/table, +/obj/machinery/light, +/obj/machinery/recharger, +/obj/item/assembly/signaler{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/assembly/signaler{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/item/assembly/signaler{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/electropack{ + pixel_x = -10 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"acv" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/space/basic, +/area/solar/starboard/fore) +"acw" = ( +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"acx" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"acy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/gun/energy/e_gun/advtaser{ + pixel_y = 6 + }, +/obj/item/gun/energy/e_gun/advtaser, +/obj/item/gun/energy/e_gun/advtaser{ + pixel_y = -6 + }, +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/ai_monitored/security/armory) +"acz" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "sb_in"; + name = "Router Driver" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"acA" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "sb_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"acB" = ( +/obj/machinery/conveyor{ + dir = 6; + id = "sb_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"acC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/poddoor{ + id = "armory"; + name = "Armory" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"acD" = ( +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"acE" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/closed/wall/r_wall, +/area/maintenance/fore) +"acF" = ( +/turf/closed/wall, +/area/crew_quarters/lounge) +"acG" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "pb_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"acH" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"acI" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"acJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/conveyor{ + id = "solar_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"acK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical{ + name = "Medical Booth" + }) +"acL" = ( +/obj/machinery/door/poddoor{ + id = "executionspaceblast" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"acM" = ( +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; + pixel_x = -32 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"acN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"acO" = ( +/obj/structure/sign/warning/electricshock, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"acP" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/maintenance/fore) +"acQ" = ( +/turf/closed/wall, +/area/crew_quarters/theatre/clown) +"acR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-16" + }, +/turf/open/floor/plasteel/checker, +/area/hallway/secondary/entry) +"acS" = ( +/obj/machinery/atmospherics/components/binary/valve/digital/on, +/turf/open/floor/plating, +/area/maintenance/fore) +"acT" = ( +/obj/structure/table/reinforced, +/obj/item/modular_computer/laptop/preset/civilian, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_x = 26 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"acU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/camera{ + c_tag = "Armory Access"; + network = list("ss13","rd") + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"acV" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/washing_machine, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"acW" = ( +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/deliveryChute, +/turf/open/floor/plating/airless, +/area/router/aux) +"acX" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/fore) +"acY" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"acZ" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"ada" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/ai_monitored/security/armory) +"adb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall/r_wall, +/area/security/brig) +"adc" = ( +/obj/machinery/conveyor{ + id = "sb_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"add" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/crew_quarters/observatory) +"ade" = ( +/obj/machinery/atmospherics/components/binary/valve/digital/on, +/turf/closed/wall/r_wall, +/area/maintenance/fore) +"adf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/crew_quarters/observatory) +"adg" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"adh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/crew_quarters/observatory) +"adi" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"adj" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/observatory) +"adk" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/conveyor{ + id = "solar_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"adl" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"adm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Fore Maintenance"; + req_one_access_txt = "12;46" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"adn" = ( +/obj/structure/sign/nanotrasen, +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"ado" = ( +/obj/machinery/power/solar{ + id = "forestarboard"; + name = "Fore-Starboard Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/fore) +"adp" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/turf/open/floor/plating, +/area/tcommsat/computer) +"adq" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/entry) +"adr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/kirbyplants{ + icon_state = "plant-16" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"ads" = ( +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"adt" = ( +/turf/open/floor/plating, +/area/maintenance/fore) +"adu" = ( +/obj/structure/sign/warning{ + name = "\improper CONSTRUCTION AREA"; + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"adv" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/turf/open/floor/plating, +/area/maintenance/fore) +"adw" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/conveyor/auto{ + dir = 1; + id = "solar" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"adx" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space/basic, +/area/solar/starboard/fore) +"ady" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating/airless, +/area/solar/starboard/fore) +"adz" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"adA" = ( +/obj/effect/turf_decal/tile/red, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"adB" = ( +/obj/structure/sign/poster/official/enlist{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"adC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/crew_quarters/observatory) +"adD" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/vending/security, +/turf/open/floor/plasteel, +/area/security/brig) +"adE" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/practice, +/obj/machinery/syndicatebomb/training, +/turf/open/floor/plasteel, +/area/security/brig) +"adF" = ( +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"adG" = ( +/obj/machinery/mass_driver{ + id = "serv_in"; + name = "Router Driver" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"adH" = ( +/obj/machinery/conveyor/auto{ + dir = 1; + id = "solar" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"adI" = ( +/obj/machinery/disposal/bin{ + name = "Service Delivery" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/hydroponics) +"adJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/closet, +/obj/item/clothing/under/misc/staffassistant, +/obj/item/clothing/under/misc/staffassistant, +/obj/item/clothing/under/misc/staffassistant, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"adK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/stairs/medium, +/area/security/brig) +"adL" = ( +/obj/machinery/mass_driver{ + id = "starboard_in"; + name = "Router Driver" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"adM" = ( +/turf/closed/wall, +/area/crew_quarters/observatory) +"adN" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"adO" = ( +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -27 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"adP" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"adQ" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"adR" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/storage/box/beakers, +/obj/item/hand_labeler, +/obj/item/folder/white{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/stamp, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"adS" = ( +/turf/closed/wall, +/area/construction) +"adT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/construction) +"adU" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"adV" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/starboard/fore"; + dir = 1; + name = "Starboard Bow Maintenance APC"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"adW" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/stairs/right, +/area/security/brig) +"adX" = ( +/obj/structure/chair/comfy/black{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"adY" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"adZ" = ( +/turf/open/floor/plating, +/area/tcommsat/computer) +"aea" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"aeb" = ( +/obj/structure/table, +/obj/item/modular_computer/laptop/preset/civilian, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/security/brig) +"aec" = ( +/turf/closed/wall/r_wall, +/area/construction) +"aed" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aee" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/space/basic, +/area/solar/port) +"aef" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aeg" = ( +/obj/structure/sign/warning/electricshock, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/security/armory) +"aeh" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aei" = ( +/obj/machinery/light, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/hallway/secondary/entry"; + dir = 8; + name = "Arrival Shuttle Hallway APC"; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aej" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/turf/open/floor/plating/airless, +/area/engine/engineering{ + name = "Engine Room" + }) +"aek" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/machinery/photocopier, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"ael" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"aem" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"aen" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aeo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/circuitboard/machine/sleeper, +/obj/structure/frame/machine, +/turf/open/floor/plasteel, +/area/construction) +"aep" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -24 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"aeq" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"aer" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aes" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/sign/poster/official/random{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"aet" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aeu" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"aev" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/maintenance/fore) +"aew" = ( +/turf/closed/wall/r_wall, +/area/security/prison) +"aex" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/table, +/obj/item/storage/hypospraykit/regular, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"aey" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"aez" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"aeA" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"aeB" = ( +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/toilet/fitness"; + name = "Fitness Toilets APC"; + pixel_y = -26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aeC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"aeD" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aeE" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plasteel, +/area/construction) +"aeF" = ( +/obj/structure/table, +/obj/item/assembly/infra, +/obj/item/assembly/voice{ + pixel_x = 4; + pixel_y = 12 + }, +/obj/item/assembly/health{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/open/floor/plating, +/area/construction) +"aeG" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/construction"; + dir = 1; + name = "Construction Area APC"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/construction) +"aeH" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aeI" = ( +/turf/closed/wall/r_wall, +/area/engine/engineering{ + name = "Engine Room" + }) +"aeJ" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/security/prison) +"aeK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/secondary/entry) +"aeL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aeM" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aeN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Router"; + req_one_access_txt = "1" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aeO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aeP" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space/basic, +/area/solar/starboard/fore) +"aeQ" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aeR" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"aeS" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"aeT" = ( +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"aeU" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"aeV" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aeW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Construction Area"; + req_access_txt = "12" + }, +/turf/open/floor/plasteel, +/area/construction) +"aeX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aeY" = ( +/turf/closed/wall, +/area/crew_quarters/toilet/fitness) +"aeZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"afa" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"afb" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"afc" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"afd" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"afe" = ( +/obj/machinery/door/airlock, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"aff" = ( +/turf/closed/wall, +/area/crew_quarters/fitness) +"afg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/binary/valve/digital/on, +/turf/open/floor/plating, +/area/maintenance/fore) +"afh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable, +/obj/machinery/power/apc/highcap/fifteen_k{ + areastring = /area/maintenance/solars/starboard/fore; + dir = 4; + name = "Starboard Bow Solars APC"; + pixel_x = 28 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"afi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"afj" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"afk" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"afl" = ( +/obj/effect/landmark/secequipment, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"afm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/construction) +"afn" = ( +/obj/machinery/biogenerator, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/prison) +"afo" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/landmark/start/mime, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/theatre/mime"; + dir = 4; + name = "Mime's Office APC"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/theatre/mime) +"afp" = ( +/turf/open/floor/plating, +/area/construction) +"afq" = ( +/obj/structure/table, +/obj/item/modular_computer/laptop/preset/civilian, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"afr" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/camera{ + pixel_y = -8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"afs" = ( +/obj/machinery/flasher{ + id = "executionflash"; + pixel_x = -25 + }, +/obj/structure/chair/e_chair, +/obj/effect/decal/cleanable/ash{ + pixel_y = -8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aft" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/maintenance/fore) +"afu" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"afv" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"afw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"afx" = ( +/obj/machinery/computer/holodeck{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"afy" = ( +/obj/structure/table, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"afz" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"afA" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"afB" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"afC" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"afD" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/closed/wall/r_wall, +/area/maintenance/port/fore) +"afE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/closed/wall, +/area/crew_quarters/theatre/clown) +"afF" = ( +/obj/machinery/sparker{ + id = "executionburn"; + pixel_x = 25 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"afG" = ( +/obj/structure/sink{ + pixel_y = 28 + }, +/obj/item/paper/guides/jobs/hydroponics, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/prison) +"afH" = ( +/obj/structure/table, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer, +/obj/item/clothing/mask/gas/sechailer, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Security RC"; + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"afI" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"afJ" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/plant_analyzer, +/obj/item/cultivator, +/obj/item/reagent_containers/glass/bucket, +/obj/item/reagent_containers/glass/bucket, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/prison) +"afK" = ( +/turf/closed/wall, +/area/crew_quarters/kitchen) +"afL" = ( +/obj/machinery/door/airlock, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"afM" = ( +/obj/structure/closet/crate/internals, +/obj/machinery/camera{ + c_tag = "Construction Area"; + pixel_x = 22 + }, +/obj/item/flashlight, +/obj/item/clothing/suit/hazardvest, +/obj/item/tank/internals/emergency_oxygen/engi, +/turf/open/floor/plating, +/area/construction) +"afN" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"afO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/washing_machine, +/turf/open/floor/plasteel/checker, +/area/hallway/secondary/entry) +"afP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"afQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"afR" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/structure/table/reinforced, +/obj/item/paicard, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"afS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"afT" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"afU" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/stairs/left, +/area/hallway/secondary/entry) +"afV" = ( +/obj/structure/closet/crate, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/clothing/gloves/color/white, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/structure/sign/poster/contraband/red_rum{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"afW" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/fore) +"afX" = ( +/obj/item/cigbutt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/camera{ + c_tag = "Port Bow Maintenance - Aft"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"afY" = ( +/obj/item/seeds/carrot, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/prison) +"afZ" = ( +/obj/machinery/disposal/bin{ + name = "Brig Catering" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5; + layer = 2.03 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"aga" = ( +/obj/structure/table, +/obj/item/paper/fluff/holodeck/disclaimer, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"agb" = ( +/obj/structure/table, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"agc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/closed/wall/r_wall, +/area/engine/engineering{ + name = "Engine Room" + }) +"agd" = ( +/obj/structure/fans/tiny/invisible, +/obj/docking_port/stationary{ + dwidth = 1; + height = 4; + name = "escape pod loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/turf/open/space/basic, +/area/space) +"age" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"agf" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"agg" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"agh" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"agi" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"agj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Observatory Access" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"agk" = ( +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"agl" = ( +/obj/machinery/disposal/bin{ + name = "Bar Catering" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6; + layer = 2.03 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/turf/open/floor/plasteel, +/area/crew_quarters/kitchen) +"agm" = ( +/obj/structure/table, +/obj/item/sharpener, +/obj/item/kitchen/knife, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"agn" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/closed/wall, +/area/crew_quarters/lounge) +"ago" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"agp" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"agq" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"agr" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"ags" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"agt" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"agu" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"agv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/brig) +"agw" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/displaycase/labcage{ + desc = "A glass lab container for storing smelly creatures."; + name = "stinky panda containment"; + start_showpiece_type = /mob/living/simple_animal/pet/redpanda/stinky + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"agx" = ( +/mob/living/simple_animal/bot/floorbot, +/turf/open/floor/plating, +/area/construction) +"agy" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"agz" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 9 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/fore) +"agA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/warning{ + name = "\improper CONSTRUCTION AREA"; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"agB" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/maintenance/fore) +"agC" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/turf/closed/wall/r_wall, +/area/engine/engineering{ + name = "Engine Room" + }) +"agD" = ( +/obj/machinery/seed_extractor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/prison) +"agE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"agF" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"agG" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/theatre/mime) +"agH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"agI" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/tower, +/obj/item/seeds/amanita, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/prison) +"agJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Fore Maintenance"; + req_one_access_txt = "12;46" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"agK" = ( +/obj/structure/chair/comfy/black, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"agL" = ( +/obj/machinery/power/tracker, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating/airless, +/area/solar/port) +"agM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"agN" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"agO" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Holodeck Door" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"agP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/prison) +"agQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"agR" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"agS" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"agT" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/suit_storage_unit/engine, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"agU" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 3 + }, +/obj/item/assembly/timer{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/t_scanner{ + pixel_x = -2; + pixel_y = 5 + }, +/obj/item/t_scanner, +/obj/item/assembly/igniter{ + pixel_x = 6; + pixel_y = -4 + }, +/obj/structure/sign/poster/contraband/missing_gloves{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"agV" = ( +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"agW" = ( +/turf/closed/wall/r_wall, +/area/security/processing) +"agX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + name = "Starboard Bow Solar Exterior Airlock"; + req_access_txt = "10;13" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"agY" = ( +/obj/structure/table, +/obj/item/storage/crayons, +/obj/item/toy/beach_ball/holoball, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"agZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aha" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"ahb" = ( +/obj/machinery/processor, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"ahc" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_y = 8 + }, +/obj/structure/sign/poster/official/cleanliness{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"ahd" = ( +/obj/structure/sink/kitchen{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"ahe" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ahf" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Labor Camp Shuttle Airlock" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"ahg" = ( +/turf/closed/wall/r_wall, +/area/security/warden) +"ahh" = ( +/obj/machinery/power/port_gen/pacman, +/turf/open/floor/plating, +/area/tcommsat/computer) +"ahi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = 28 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/blue, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"ahj" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Fore Maintenance - Fore"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"ahk" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/processing) +"ahl" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"ahm" = ( +/obj/structure/falsewall/reinforced, +/turf/closed/wall, +/area/maintenance/port/fore) +"ahn" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aho" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"ahp" = ( +/obj/machinery/gulag_item_reclaimer{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"ahq" = ( +/turf/open/floor/plasteel, +/area/security/processing) +"ahr" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/ambrosia, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/prison) +"ahs" = ( +/obj/machinery/light, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/machinery/camera{ + c_tag = "Kitchen"; + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"aht" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/item/storage/box/disks, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"ahu" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hydroponics) +"ahv" = ( +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; + pixel_x = 32 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"ahw" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"ahx" = ( +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"ahy" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/obj/machinery/door/poddoor/preopen{ + id = "solitarylock"; + name = "Brig Lockdown" + }, +/turf/open/floor/plating, +/area/security/warden) +"ahz" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/crew_quarters/fitness) +"ahA" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/crew_quarters/fitness) +"ahB" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + name = "Bathroom Stall" + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/fitness) +"ahC" = ( +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/fitness) +"ahD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/fore"; + dir = 1; + name = "Fore Maintenance APC"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"ahE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"ahF" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/structure/mirror{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/fitness) +"ahG" = ( +/obj/structure/sink{ + pixel_y = 28 + }, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/fitness) +"ahH" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"ahI" = ( +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/fitness"; + name = "Fitness Room APC"; + pixel_y = -26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"ahJ" = ( +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"ahK" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ahL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/crew_quarters/observatory) +"ahM" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"ahN" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ahO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"ahP" = ( +/turf/closed/wall, +/area/maintenance/solars/starboard/fore) +"ahQ" = ( +/obj/structure/closet/lasertag/blue, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"ahR" = ( +/obj/item/beacon, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"ahS" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"ahT" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/storage/bag/plants, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"ahU" = ( +/obj/machinery/vending/wardrobe/chef_wardrobe, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"ahV" = ( +/obj/structure/closet/lasertag/red, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"ahW" = ( +/obj/structure/closet/secure_closet/personal, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"ahX" = ( +/obj/machinery/deepfryer, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"ahY" = ( +/obj/machinery/vending/autodrobe, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/theatre/clown) +"ahZ" = ( +/obj/structure/table/glass, +/obj/item/storage/toolbox/emergency{ + pixel_y = 4 + }, +/obj/item/radio/off, +/obj/machinery/camera{ + c_tag = "Arrival Shuttle Hallway" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/hallway/secondary/entry) +"aia" = ( +/obj/effect/landmark/start/cook, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"aib" = ( +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/hallway/secondary/entry) +"aic" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/security/armory) +"aid" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/cotton, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/prison) +"aie" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"aif" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aig" = ( +/obj/machinery/camera{ + c_tag = "Observatory Holodeck"; + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"aih" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"aii" = ( +/obj/structure/closet, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/gps, +/turf/open/floor/plasteel, +/area/storage/tools) +"aij" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"aik" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ail" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"aim" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/maintenance/fore) +"ain" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/processing) +"aio" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"aip" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aiq" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/space/basic, +/area/solar/port) +"air" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stack/cable_coil/red{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/stack/cable_coil/red, +/obj/item/screwdriver, +/obj/item/multitool{ + pixel_x = -6; + pixel_y = -2 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"ais" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"ait" = ( +/obj/machinery/vending/dinnerware, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"aiu" = ( +/obj/effect/landmark/start/mime, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/checker, +/area/crew_quarters/theatre/mime) +"aiv" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks/beer, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aiw" = ( +/obj/machinery/vending/cola/random, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"aix" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/crew_quarters/kitchen) +"aiy" = ( +/obj/structure/bed, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/effect/landmark/start/clown, +/obj/item/bedsheet/clown, +/obj/structure/sign/plaques/kiddie/perfect_man{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/theatre/clown) +"aiz" = ( +/turf/closed/wall, +/area/maintenance/starboard/fore) +"aiA" = ( +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/construction) +"aiB" = ( +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/kitchen"; + name = "Kitchen APC"; + pixel_y = -26 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aiC" = ( +/turf/closed/wall, +/area/hallway/secondary/service) +"aiD" = ( +/obj/structure/closet/crate/wooden/toy, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Clown's Office"; + pixel_x = 22 + }, +/obj/item/clothing/under/rank/civilian/clown/yellow, +/obj/item/clothing/under/rank/civilian/clown/blue, +/obj/item/clothing/under/rank/civilian/clown/green, +/obj/item/toy/crayon/spraycan/lubecan, +/obj/item/megaphone/clown, +/turf/open/floor/plating, +/area/crew_quarters/theatre/clown) +"aiE" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel, +/area/security/processing) +"aiF" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Starboard Bow Maintenance"; + req_one_access_txt = "12;25;26;28;35;46" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aiG" = ( +/obj/structure/closet, +/obj/structure/window/reinforced, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"aiH" = ( +/obj/machinery/hydroponics/constructable, +/obj/item/seeds/grass, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/security/prison) +"aiI" = ( +/obj/structure/closet/boxinggloves, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"aiJ" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/secondary/entry) +"aiK" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/genpop, +/turf/open/floor/plasteel, +/area/security/brig) +"aiL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/prison) +"aiM" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/observatory) +"aiN" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aiO" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aiP" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aiQ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"aiR" = ( +/obj/structure/rack, +/obj/item/reagent_containers/glass/beaker/waterbottle, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"aiS" = ( +/obj/item/kirbyplants{ + icon_state = "plant-06" + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"aiT" = ( +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Port Bow Maintainance"; + req_one_access_txt = "1" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aiU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/deepfryer, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"aiV" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 10; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/construction) +"aiW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Observatory" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/observatory) +"aiX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/closed/wall, +/area/crew_quarters/observatory) +"aiY" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/machinery/door/window/eastright{ + name = "Bathroom Stall" + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/fitness) +"aiZ" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/observatory) +"aja" = ( +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/obj/item/caution, +/turf/open/floor/plating, +/area/construction) +"ajb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ajc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/basic, +/area/solar/port) +"ajd" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aje" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ajf" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"ajg" = ( +/obj/structure/table, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/item/reagent_containers/food/snacks/pie/cream, +/obj/item/instrument/bikehorn, +/obj/item/flashlight/lamp/bananalamp{ + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/theatre/clown) +"ajh" = ( +/obj/structure/table/glass, +/obj/item/paper_bin/construction, +/obj/item/storage/crayons, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/hallway/secondary/entry) +"aji" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"ajj" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ajk" = ( +/obj/effect/landmark/start/clown, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/theatre/clown) +"ajl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/mob/living/simple_animal/cockroach, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ajm" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/washing_machine, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"ajn" = ( +/obj/machinery/power/smes, +/turf/open/floor/plating, +/area/tcommsat/computer) +"ajo" = ( +/obj/structure/table, +/obj/item/toy/dummy, +/obj/structure/mirror{ + pixel_x = -24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/checker, +/area/crew_quarters/theatre/mime) +"ajp" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/observatory) +"ajq" = ( +/obj/effect/landmark/start/clown, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/theatre/clown"; + dir = 4; + name = "Clown's Office APC"; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/crew_quarters/theatre/clown) +"ajr" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/observatory) +"ajs" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/mint, +/obj/item/reagent_containers/food/condiment/mayonnaise, +/obj/item/bikehorn{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"ajt" = ( +/obj/machinery/atmospherics/components/binary/valve, +/turf/open/floor/plating, +/area/tcommsat/computer) +"aju" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"ajv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/theatre/mime) +"ajw" = ( +/turf/closed/wall, +/area/construction/secondary) +"ajx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"ajy" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/computer/prisoner/management, +/turf/open/floor/plasteel, +/area/security/brig) +"ajz" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ajA" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/genpop, +/turf/open/floor/plasteel, +/area/security/brig) +"ajB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/preopen{ + id = "briglockdown"; + name = "Brig Lockdown" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ajC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ajD" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/cook, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"ajE" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"ajF" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/construction/secondary) +"ajG" = ( +/obj/machinery/computer/arcade, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"ajH" = ( +/obj/structure/rack, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/head/hardhat/red{ + pixel_y = 6 + }, +/obj/item/clothing/mask/gas, +/obj/item/storage/toolbox/mechanical, +/obj/item/crowbar, +/obj/item/extinguisher, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ajI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ajJ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"ajK" = ( +/obj/structure/sign/warning{ + name = "\improper CONSTRUCTION AREA"; + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"ajL" = ( +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/lounge"; + name = "Lounge APC"; + pixel_y = -26 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/observatory) +"ajM" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder{ + pixel_y = 6 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -8; + pixel_y = 6 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"ajN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ajO" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"ajP" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ajQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"ajR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/observatory) +"ajS" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"ajT" = ( +/obj/structure/weightmachine/weightlifter, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"ajU" = ( +/obj/structure/rack, +/obj/item/wrench, +/obj/item/light/tube, +/obj/item/radio/off, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/camera{ + c_tag = "Security - Interrogation Maintenance"; + dir = 1 + }, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/security/brig"; + dir = 4; + name = "Brig APC"; + pixel_x = 26 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"ajV" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall, +/area/crew_quarters/theatre/mime) +"ajW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/observatory) +"ajX" = ( +/obj/item/pipe{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/melee/baseball_bat, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/machinery/camera{ + c_tag = "Secondary Construction Area" + }, +/turf/open/floor/plating, +/area/construction/secondary) +"ajY" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ajZ" = ( +/obj/item/multitool, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/tcommsat/computer"; + dir = 1; + name = "Telecomms Access APC"; + pixel_y = 28 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"aka" = ( +/turf/closed/wall, +/area/crew_quarters/bar) +"akb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Mime's Office"; + req_access_txt = "46" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/crew_quarters/theatre/mime) +"akc" = ( +/obj/machinery/computer/slot_machine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/construction/secondary) +"akd" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint) +"ake" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/rnd/production/techfab/department/service, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"akf" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency{ + pixel_y = 4 + }, +/obj/item/electronics/firelock, +/obj/item/electronics/firealarm, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/construction/secondary) +"akg" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"akh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/construction/secondary) +"aki" = ( +/obj/structure/closet/toolcloset, +/turf/open/floor/plating, +/area/construction/secondary) +"akj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + name = "Starboard Bow Solar Exterior Airlock"; + req_access_txt = "10;13" + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"akk" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 10; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/construction/secondary) +"akl" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/computer/shuttle/labor{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"akm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass, +/turf/open/floor/plasteel, +/area/construction/secondary) +"akn" = ( +/obj/machinery/power/solar_control{ + id = "forestarboard"; + name = "Starboard Bow Solar Control" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"ako" = ( +/obj/machinery/button/flasher{ + id = "executionflash"; + pixel_x = 7; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"akp" = ( +/obj/structure/closet/secure_closet/warden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"akq" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/table/reinforced, +/obj/item/storage/box/prisoner, +/obj/item/razor, +/obj/item/paper/guides/jobs/security/labor_camp, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/security/processing) +"akr" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/computer/prisoner/gulag_teleporter_computer{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security - Prison Shuttle Dock"; + dir = 8; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"aks" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"akt" = ( +/obj/machinery/computer/prisoner/management, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/central"; + dir = 1; + name = "Brig Control APC"; + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"aku" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"akv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"akw" = ( +/obj/structure/bed, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"akx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Secondary Construction Area"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/construction/secondary) +"aky" = ( +/obj/machinery/computer/crew, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"akz" = ( +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/router/service) +"akA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/security/warden) +"akB" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"akC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"akD" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/hand_labeler{ + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akE" = ( +/turf/closed/wall/r_wall, +/area/router/sec) +"akF" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akG" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"akH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"akI" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"akJ" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Telecommunications Maintenance"; + req_access_txt = "61" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/tcommsat/computer) +"akK" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"akL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security - Brig"; + pixel_x = 22 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akM" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"akN" = ( +/turf/open/space/basic, +/area/router/aux) +"akO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/computer/security/labor{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"akP" = ( +/obj/structure/plasticflaps, +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor{ + name = "Security Router" + }, +/turf/open/floor/plating, +/area/router/sec) +"akQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"akR" = ( +/obj/structure/punching_bag, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"akS" = ( +/obj/structure/rack, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/item/soap/nanotrasen, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/fitness) +"akT" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"akU" = ( +/obj/machinery/door/window/northleft{ + name = "Showers" + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/fitness) +"akV" = ( +/obj/structure/rack, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/item/storage/firstaid/regular, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/fitness) +"akW" = ( +/obj/structure/table/wood, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/item/reagent_containers/hypospray/medipen, +/obj/item/reagent_containers/hypospray/medipen, +/obj/item/reagent_containers/hypospray/medipen, +/obj/item/reagent_containers/hypospray/medipen, +/obj/structure/sign/departments/restroom{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"akX" = ( +/turf/closed/wall, +/area/crew_quarters/dorms/purple) +"akY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"akZ" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"ala" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/secondary/entry) +"alb" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"alc" = ( +/obj/structure/fermenting_barrel, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"ald" = ( +/obj/machinery/chem_master/condimaster, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"ale" = ( +/turf/closed/wall, +/area/crew_quarters/dorms/blue) +"alf" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"alg" = ( +/obj/structure/frame/machine, +/obj/item/circuitboard/computer/arcade/minesweeper, +/turf/open/floor/plating, +/area/construction/secondary) +"alh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ali" = ( +/turf/open/floor/plating, +/area/construction/secondary) +"alj" = ( +/obj/machinery/gulag_teleporter, +/turf/open/floor/plasteel, +/area/security/processing) +"alk" = ( +/obj/item/caution, +/turf/open/floor/plating, +/area/construction/secondary) +"all" = ( +/obj/structure/table/glass, +/obj/item/wrench{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/reagent_containers/glass/bottle/mutagen{ + pixel_x = -4 + }, +/turf/open/floor/grass, +/area/hydroponics) +"alm" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/turf/open/floor/grass, +/area/hydroponics) +"aln" = ( +/obj/machinery/hydroponics/constructable, +/turf/open/floor/grass, +/area/hydroponics) +"alo" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"alp" = ( +/obj/machinery/washing_machine, +/turf/open/floor/plasteel, +/area/construction/secondary) +"alq" = ( +/obj/machinery/conveyor/auto{ + id = "sec" + }, +/turf/open/floor/plating, +/area/router/sec) +"alr" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"als" = ( +/obj/machinery/mass_driver{ + dir = 1; + id = "sec_out"; + name = "Router Driver" + }, +/turf/open/floor/plating, +/area/router/sec) +"alt" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Labor Camp Shuttle Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"alu" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"alv" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Labor Camp Shuttle Airlock"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"alw" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/start/warden, +/obj/machinery/camera{ + c_tag = "Security - Brig Control"; + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"alx" = ( +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aly" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"alz" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"alA" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms/purple) +"alB" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"alC" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"alD" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"alE" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms/purple) +"alF" = ( +/obj/machinery/photocopier, +/obj/machinery/newscaster/security_unit{ + pixel_y = -28 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/paper/guides/cogstation/letter_sec, +/turf/open/floor/plasteel, +/area/security/warden) +"alG" = ( +/obj/effect/decal/cleanable/blood/old, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"alH" = ( +/obj/structure/table, +/obj/item/storage/box/beakers{ + pixel_x = -8 + }, +/obj/item/storage/box/ingredients{ + pixel_x = 6 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"alI" = ( +/obj/structure/weightmachine/stacklifter, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"alJ" = ( +/obj/machinery/vending/hydroseeds, +/turf/open/floor/grass, +/area/hydroponics) +"alK" = ( +/obj/effect/landmark/xmastree, +/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"alL" = ( +/obj/structure/weightmachine/weightlifter, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"alM" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"alN" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"alO" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms/purple) +"alP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/fore) +"alQ" = ( +/obj/structure/dresser, +/turf/open/floor/carpet/blue, +/area/crew_quarters/dorms/blue) +"alR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/secondary/entry) +"alS" = ( +/obj/structure/table/wood, +/obj/item/trash/plate, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/rag, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"alT" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/dorms/blue) +"alU" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"alV" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/dorms/blue) +"alW" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/processing) +"alX" = ( +/obj/structure/table, +/obj/item/storage/box/ingredients, +/obj/item/clothing/head/chefhat, +/obj/item/reagent_containers/glass/beaker, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"alY" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/t_scanner, +/turf/open/floor/plating, +/area/construction/secondary) +"alZ" = ( +/turf/closed/wall/r_wall, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"ama" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/warden) +"amb" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"amc" = ( +/turf/closed/wall, +/area/storage/tools) +"amd" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ame" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/warden) +"amf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"amg" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"amh" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/machinery/recharger, +/obj/item/pen/red{ + pixel_y = 4 + }, +/obj/item/pen/blue{ + pixel_x = -4; + pixel_y = -4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ami" = ( +/obj/structure/sign/poster/contraband/grey_tide{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"amj" = ( +/turf/closed/wall/rust, +/area/maintenance/port/fore) +"amk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/maintenance/port/fore) +"aml" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"amm" = ( +/obj/structure/closet/crate/secure/weapon{ + desc = "A secure clothing crate."; + name = "formal uniform crate"; + req_access_txt = "3" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"amn" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating, +/area/construction/secondary) +"amo" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"amp" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Fore Maintenance"; + req_one_access_txt = "12;46" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"amq" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"amr" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Starboard Bow Maintenance"; + req_one_access_txt = "12;25;26;28;35;46" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ams" = ( +/obj/machinery/camera{ + c_tag = "Fitness Toilets"; + pixel_x = 22 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/fitness) +"amt" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"amu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"amv" = ( +/obj/structure/punching_bag, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"amw" = ( +/obj/structure/sign/poster/contraband/eat{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"amx" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"amy" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"amz" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"amA" = ( +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"amB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/warden) +"amC" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"amD" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"amE" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/cable, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/crew_quarters/bar"; + dir = 8; + name = "Bar APC"; + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"amF" = ( +/obj/effect/landmark/start/cook, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = -30 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"amG" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/chapel/main) +"amH" = ( +/obj/item/crowbar/large{ + pixel_y = 3 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/construction/secondary) +"amI" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/warden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"amJ" = ( +/obj/structure/lattice, +/obj/structure/sign/departments/botany{ + pixel_x = -32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"amK" = ( +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"amL" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"amM" = ( +/obj/machinery/light, +/obj/machinery/disposal/bin{ + name = "Kitchen Mailbox" + }, +/obj/effect/turf_decal/delivery/white, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"amN" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/storage/tools) +"amO" = ( +/obj/item/bedsheet/mime, +/obj/structure/bed, +/obj/effect/landmark/start/mime, +/obj/machinery/camera{ + c_tag = "Mime's Office"; + pixel_x = 22 + }, +/turf/open/floor/plasteel/checker, +/area/crew_quarters/theatre/mime) +"amP" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/hallway/secondary/entry) +"amQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastleft{ + name = "Reception Window" + }, +/obj/machinery/door/window/westleft{ + name = "Warden's Desk"; + req_one_access_txt = "2" + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"amR" = ( +/obj/machinery/light/small, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/construction/secondary) +"amS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"amT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plating, +/area/construction/secondary) +"amU" = ( +/obj/structure/beebox, +/obj/item/queen_bee/bought, +/turf/open/floor/grass, +/area/hydroponics) +"amV" = ( +/turf/open/floor/grass, +/area/hydroponics) +"amW" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/pill/patch/silver_sulf{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/reagent_containers/pill/patch/silver_sulf{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/pill/patch/styptic{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/reagent_containers/pill/patch/styptic{ + pixel_x = -4 + }, +/obj/item/book/manual/hydroponics_pod_people{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/paper/guides/jobs/hydroponics{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/open/floor/grass, +/area/hydroponics) +"amX" = ( +/obj/machinery/suit_storage_unit/security, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"amY" = ( +/turf/closed/wall, +/area/chapel/main) +"amZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ana" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"anb" = ( +/obj/structure/table, +/obj/item/lipstick/black, +/obj/item/lipstick/random{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/theatre/mime) +"anc" = ( +/obj/item/cigbutt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/construction/secondary) +"and" = ( +/turf/closed/wall/r_wall, +/area/chapel/main) +"ane" = ( +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"anf" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/construction/secondary"; + dir = 1; + name = "Secondary Construction Area APC"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/construction/secondary) +"ang" = ( +/turf/closed/wall/r_wall, +/area/engine/storage_shared{ + name = "Electrical Substation" + }) +"anh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/clothing/glasses/regular, +/obj/machinery/door/window/northright{ + name = "Medical Booth Desk"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"ani" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/poster/official/duelshotgun{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"anj" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"ank" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/easel, +/obj/item/canvas/nineteenXnineteen, +/obj/machinery/camera{ + c_tag = "Crew Lounge"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"anl" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"anm" = ( +/obj/machinery/conveyor/auto{ + dir = 8; + id = "disposal" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ann" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/goonplaque{ + desc = "It reads 'In honor of spacemen past, whose work allowed this station to find its new home. The fact that you stand on a station originally built light years away is a definitive representation of the ingenuity of the human spirit.' Beneath this is the image of a spaceman rocketing upwards by means of what appears to be a match and flatulence." + }, +/area/hallway/secondary/entry) +"ano" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/fore) +"anp" = ( +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"anq" = ( +/turf/closed/wall, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"anr" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"ans" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/destTagger, +/obj/machinery/button/door{ + id = "secblock"; + name = "Router Access Control"; + pixel_x = 8; + pixel_y = 24; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/router/sec) +"ant" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/kitchen/backroom) +"anu" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"anv" = ( +/obj/item/stack/sheet/plasteel{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/storage/box/beakers, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plating, +/area/construction) +"anw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"anx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plating, +/area/tcommsat/computer) +"any" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/pill/patch/styptic, +/obj/item/reagent_containers/pill/patch/styptic, +/obj/item/reagent_containers/pill/patch/styptic, +/obj/item/reagent_containers/pill/patch/styptic, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"anz" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"anA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Fitness Room Maintenance"; + req_one_access_txt = "12;46" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/crew_quarters/fitness) +"anB" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/sign/barsign{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"anC" = ( +/obj/machinery/computer/cargo/request, +/obj/effect/turf_decal/delivery, +/obj/machinery/requests_console{ + department = "Security Router"; + name = "Security Router RC"; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/router/sec) +"anD" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/secondary/entry) +"anE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"anF" = ( +/obj/machinery/smartfridge, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"anG" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"anH" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/security{ + name = "Security Checkpoint"; + req_access_txt = "1" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/security/checkpoint) +"anI" = ( +/obj/machinery/computer/arcade/orion_trail, +/turf/open/floor/carpet/blue, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"anJ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/item/paper_bin, +/obj/item/stamp/denied{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/stamp{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/pen, +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint"; + dir = 4; + name = "Security Checkpoint APC"; + pixel_x = 24 + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Security RC"; + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"anK" = ( +/turf/closed/wall/r_wall, +/area/security/detectives_office) +"anL" = ( +/obj/machinery/computer/arcade/minesweeper, +/turf/open/floor/carpet/blue, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"anM" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"anN" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/item/analyzer, +/obj/item/wrench{ + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"anO" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/storage/belt/utility, +/obj/item/extinguisher, +/turf/open/floor/plasteel, +/area/storage/tools) +"anP" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/carpet/blue, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"anQ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"anR" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"anS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/power/apc{ + areastring = "/area/storage/tools"; + name = "Auxiliary Tool Storage APC"; + pixel_y = -26 + }, +/obj/machinery/camera{ + c_tag = "Auxiliary Tool Storage"; + dir = 4; + pixel_y = -22 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"anT" = ( +/turf/open/floor/carpet/blue, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"anU" = ( +/turf/closed/wall/r_wall, +/area/security/brig) +"anV" = ( +/turf/open/floor/plating, +/area/maintenance/solars/port) +"anW" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "sec_off" + }, +/turf/open/floor/plating, +/area/router/sec) +"anX" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"anY" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"anZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aoa" = ( +/obj/item/clockwork/component/geis_capacitor/fallen_armor, +/obj/structure/table/bronze, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"aob" = ( +/obj/structure/closet/emcloset, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aoc" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/requests_console{ + department = "Recreation"; + name = "Recreation RC"; + pixel_y = -32 + }, +/obj/item/storage/box/drinkingglasses, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"aod" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/warden) +"aoe" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms/purple) +"aof" = ( +/obj/structure/sign/poster/official/foam_force_ad{ + pixel_y = 32 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"aog" = ( +/turf/open/floor/grass, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"aoh" = ( +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"aoi" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms/purple) +"aoj" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"aok" = ( +/obj/structure/chair/wood/normal{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "Dorm1"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + pixel_x = -7; + pixel_y = -24; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms/purple) +"aol" = ( +/obj/machinery/button/door{ + id = "Dorm3"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + pixel_x = 7; + pixel_y = -24; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/carpet/blue, +/area/crew_quarters/dorms/blue) +"aom" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/dorms/blue) +"aon" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet/blue, +/area/crew_quarters/dorms/blue) +"aoo" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/ears/earmuffs, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/construction/secondary) +"aop" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/construction/secondary) +"aoq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/warden) +"aor" = ( +/obj/machinery/shower{ + dir = 1 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/fitness) +"aos" = ( +/obj/structure/window/reinforced, +/obj/structure/closet/athletic_mixed, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"aot" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"aou" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"aov" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/grass, +/area/hydroponics) +"aow" = ( +/mob/living/simple_animal/banana_spider{ + name = "Henry" + }, +/turf/open/floor/grass, +/area/hydroponics) +"aox" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/secondary/entry) +"aoy" = ( +/obj/machinery/computer/secure_data, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Security Checkpoint"; + pixel_x = 22 + }, +/obj/machinery/newscaster/security_unit{ + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"aoz" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 4; + name = "4maintenance loot spawner" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/construction/secondary) +"aoA" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/item/flashlight/lamp, +/obj/machinery/door/window/westright{ + name = "Security Checkpoint"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"aoB" = ( +/obj/structure/bed, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/camera{ + c_tag = "Security - Prison Beds"; + dir = 8; + pixel_y = -22 + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/security/prison"; + dir = 4; + name = "Prison APC"; + pixel_x = 26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"aoC" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"aoD" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"aoE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/main) +"aoF" = ( +/turf/closed/wall/r_wall, +/area/security/main) +"aoG" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"aoH" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Port Bow Solars External Access"; + req_access_txt = "10;13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aoI" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/grass, +/area/hydroponics) +"aoJ" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"aoK" = ( +/turf/closed/wall/r_wall, +/area/router/service) +"aoL" = ( +/obj/structure/chair/stool, +/turf/open/floor/carpet/blue, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"aoM" = ( +/obj/structure/closet/crate, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/capacitor, +/turf/open/floor/plating, +/area/construction) +"aoN" = ( +/obj/structure/closet/crate/internals, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_x = -26 + }, +/obj/item/clothing/head/hardhat/orange, +/obj/item/clothing/head/hardhat/orange, +/turf/open/floor/plasteel, +/area/storage/tools) +"aoO" = ( +/turf/open/floor/plasteel, +/area/storage/tools) +"aoP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aoQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"aoR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Brig Control"; + req_access_txt = "3" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/warden) +"aoS" = ( +/obj/structure/plasticflaps, +/obj/structure/fans/tiny, +/obj/machinery/conveyor{ + id = "serv_off" + }, +/obj/machinery/door/poddoor{ + id = "servblock"; + name = "Service Router" + }, +/turf/open/floor/plating, +/area/router/service) +"aoT" = ( +/obj/structure/plasticflaps, +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor{ + id = "servblock"; + name = "Service Router" + }, +/turf/open/floor/plating, +/area/router/service) +"aoU" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet/blue, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"aoV" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aoW" = ( +/obj/machinery/power/solar_control{ + dir = 4; + id = "foreport"; + name = "Port Bow Solar Control" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aoX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aoY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aoZ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"apa" = ( +/obj/structure/chair/sofa/right, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"apb" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"apc" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/brig) +"apd" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/engine/storage_shared{ + name = "Electrical Substation" + }) +"ape" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"apf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"apg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/router/sec) +"aph" = ( +/turf/open/floor/plasteel/dark, +/area/security/brig) +"api" = ( +/obj/machinery/door/window/southright{ + name = "Weightroom" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"apj" = ( +/obj/structure/window/reinforced, +/obj/structure/punching_bag, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"apk" = ( +/obj/structure/closet/lasertag/blue, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"apl" = ( +/obj/structure/chair/sofa/right, +/obj/item/clothing/head/beret/black, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"apm" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering{ + name = "Engine Room" + }) +"apn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/router/sec) +"apo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/construction) +"app" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/router/sec) +"apq" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"apr" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/button/massdriver{ + id = "sec_out"; + pixel_x = 24; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/router/sec) +"aps" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/security{ + name = "Security EVA Prep Room"; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"apt" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/construction) +"apu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"apv" = ( +/turf/closed/wall, +/area/hallway/secondary/entry) +"apw" = ( +/obj/structure/chair/sofa/left, +/obj/effect/landmark/start/assistant, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"apx" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/fitness) +"apy" = ( +/obj/machinery/vr_sleeper{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"apz" = ( +/obj/machinery/vr_sleeper{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"apA" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall, +/area/crew_quarters/dorms/purple) +"apB" = ( +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/grass, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"apC" = ( +/turf/closed/wall/r_wall, +/area/hydroponics) +"apD" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm1"; + name = "Room 1" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms/purple) +"apE" = ( +/obj/machinery/biogenerator, +/turf/open/floor/grass, +/area/hydroponics) +"apF" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"apG" = ( +/mob/living/simple_animal/chicken{ + name = "Featherbottom"; + real_name = "Featherbottom" + }, +/turf/open/floor/plating/asteroid, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"apH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/main) +"apI" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"apJ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/camera{ + c_tag = "Hydroponics - Fore"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"apK" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = -30 + }, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/grass, +/area/hydroponics) +"apL" = ( +/obj/structure/chair/sofa/left, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"apM" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/fitness) +"apN" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm3"; + name = "Room 3" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet/blue, +/area/crew_quarters/dorms/blue) +"apO" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall, +/area/crew_quarters/dorms/blue) +"apP" = ( +/obj/structure/table, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)" + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"apQ" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Solitary Confinement"; + req_one_access_txt = "2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"apR" = ( +/obj/structure/table/wood, +/obj/item/trash/plate, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"apS" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"apT" = ( +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/construction) +"apU" = ( +/obj/structure/table/wood, +/obj/item/trash/plate, +/obj/item/gun/ballistic/revolver/russian, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"apV" = ( +/turf/closed/wall/rust, +/area/chapel/main) +"apW" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/crew_quarters/kitchen) +"apX" = ( +/obj/structure/fermenting_barrel, +/turf/open/floor/grass, +/area/hydroponics) +"apY" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"apZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Fitness Toilets" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/fitness) +"aqa" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqb" = ( +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Secondary Construction Area"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/construction/secondary) +"aqc" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall/r_wall, +/area/medical{ + name = "Medical Booth" + }) +"aqd" = ( +/obj/structure/chair/sofa/right, +/obj/machinery/camera{ + c_tag = "Chapel - Fore" + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"aqe" = ( +/obj/machinery/conveyor{ + id = "serv_off" + }, +/turf/open/floor/plating, +/area/router/service) +"aqf" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqg" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Fitness Room"; + dir = 8; + pixel_y = -22 + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"aqh" = ( +/obj/structure/chair/sofa/left, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"aqi" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/pen, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"aqj" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_x = 26 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aqk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"aql" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/bar) +"aqm" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aqn" = ( +/turf/closed/wall/r_wall, +/area/medical{ + name = "Medical Booth" + }) +"aqo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"aqp" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/kitchen/backroom) +"aqq" = ( +/obj/structure/chair/stool, +/turf/open/floor/plasteel, +/area/storage/tools) +"aqr" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/storage/tools) +"aqs" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/maintenance/fore) +"aqt" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/modular_computer/laptop/preset/civilian, +/obj/structure/sign/poster/contraband/hacking_guide{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"aqu" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/maintenance/fore) +"aqv" = ( +/obj/structure/sign/poster/official/no_erp{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/fitness) +"aqw" = ( +/turf/closed/wall/r_wall/rust, +/area/maintenance/solars/port) +"aqx" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/kitchen/backroom) +"aqy" = ( +/obj/machinery/mass_driver{ + dir = 1; + id = "serv_out"; + name = "Router Driver" + }, +/turf/open/floor/plating, +/area/router/service) +"aqz" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqA" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable, +/turf/open/space/basic, +/area/solar/starboard/aft) +"aqB" = ( +/turf/closed/wall, +/area/hydroponics) +"aqC" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/hydroponics) +"aqD" = ( +/obj/machinery/vending/sustenance, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"aqE" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/router/sec) +"aqF" = ( +/turf/open/floor/plasteel, +/area/router/sec) +"aqG" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"aqH" = ( +/obj/machinery/power/apc{ + name = "Security Router APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/router/sec) +"aqI" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/open/floor/grass, +/area/hydroponics) +"aqJ" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/router/sec) +"aqK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"aqL" = ( +/turf/closed/wall, +/area/security/checkpoint) +"aqM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aqN" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock{ + name = "Service Hallway"; + req_one_access_txt = "25;26;28;35" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"aqO" = ( +/obj/machinery/door/airlock/engineering{ + name = "Engineering EVA"; + req_access_txt = "11" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"aqP" = ( +/obj/structure/chair/stool, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"aqQ" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/kitchen/backroom) +"aqR" = ( +/obj/item/grown/bananapeel, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/theatre/clown) +"aqS" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"aqT" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"aqU" = ( +/turf/closed/wall/r_wall, +/area/engine/storage{ + name = "Canister Storage" + }) +"aqV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Purple Dorms Maintenance"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/dorms/purple) +"aqW" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/item/book/manual/chef_recipes, +/obj/item/storage/box/donkpockets, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"aqX" = ( +/obj/structure/sign/warning/fire{ + desc = "A sign that states the labeled room's number."; + icon_state = "roomnum"; + name = "Room Number 1"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms/purple) +"aqY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aqZ" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"ara" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"arb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/barbershop"; + dir = 4; + name = "Barbershop APC"; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"arc" = ( +/obj/structure/closet/secure_closet/freezer/cream_pie, +/obj/item/toy/figure/clown, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/crew_quarters/theatre/clown) +"ard" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"are" = ( +/obj/machinery/chem_heater, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"arf" = ( +/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms/purple) +"arg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"arh" = ( +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms/purple) +"ari" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"arj" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/dorms/purple) +"ark" = ( +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"arl" = ( +/obj/machinery/vending/kink, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Locker Room"; + dir = 8; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"arm" = ( +/obj/structure/chair/sofa/right, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"arn" = ( +/obj/machinery/vending/tool, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"aro" = ( +/obj/structure/closet/firecloset, +/obj/machinery/camera{ + c_tag = "Starboard Bow Maintenance - Starboard"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"arp" = ( +/obj/machinery/conveyor/auto{ + dir = 8; + id = "disposal" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"arq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"arr" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"ars" = ( +/obj/structure/chair/stool, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/landmark/start/bartender, +/obj/item/clothing/under/costume/maid, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"art" = ( +/obj/structure/punching_bag, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"aru" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/dorms/blue) +"arv" = ( +/obj/structure/table, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"arw" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/public/glass{ + name = "Crew Quarters" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"arx" = ( +/obj/machinery/button/door{ + id = "kitchenlock"; + name = "Kitchen Lockup"; + pixel_x = -24 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"ary" = ( +/obj/machinery/food_cart, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"arz" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/dorms/blue) +"arA" = ( +/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden, +/turf/open/floor/carpet/blue, +/area/crew_quarters/dorms/blue) +"arB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"arC" = ( +/obj/structure/sign/warning/fire{ + desc = "A sign that states the labeled room's number."; + dir = 4; + icon_state = "roomnum"; + name = "Room Number 3"; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet/blue, +/area/crew_quarters/dorms/blue) +"arD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 8; + icon_state = "intact" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Blue Dorms Maintenance"; + req_one_access_txt = "12;46" + }, +/turf/open/floor/plating, +/area/crew_quarters/dorms/blue) +"arE" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard/central) +"arF" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4; + name = "hot loop to space" + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"arG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"arH" = ( +/obj/machinery/disposal/bin{ + name = "Detective's Mailbox" + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/delivery/white, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"arI" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/crew_quarters/fitness) +"arJ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"arK" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/item/destTagger, +/obj/machinery/button/massdriver{ + id = "serv_out"; + pixel_x = 8; + pixel_y = -4 + }, +/obj/machinery/requests_console{ + department = "Service Router"; + name = "Service Router RC"; + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/router/service) +"arL" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "serv_off" + }, +/turf/open/floor/plating, +/area/router/service) +"arM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/router/service) +"arN" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4; + name = "gas to sauna" + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"arO" = ( +/obj/machinery/door/firedoor, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"arP" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"arQ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"arR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/falsewall/reinforced{ + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/router/sec) +"arS" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/crew_quarters/dorms/purple) +"arT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"arU" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/structure/sign/warning/fire{ + desc = "A sign that states the labeled room's number."; + dir = 1; + icon_state = "roomnum"; + name = "Room Number 2"; + pixel_y = -28 + }, +/obj/machinery/camera{ + c_tag = "Dormitories - Purple"; + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms/purple) +"arV" = ( +/obj/machinery/vr_sleeper{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/structure/sign/poster/official/soft_cap_pop_art{ + pixel_x = -32 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"arW" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"arX" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"arY" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"arZ" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms/purple) +"asa" = ( +/obj/machinery/computer/arcade, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"asb" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms/purple) +"asc" = ( +/obj/machinery/disposal/bin, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"asd" = ( +/turf/closed/wall/rust, +/area/maintenance/starboard/fore) +"ase" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Purple Dorms" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms/purple) +"asf" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Blue Dorms" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/dorms/blue) +"asg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"ash" = ( +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/dorms/blue) +"asi" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"asj" = ( +/obj/effect/turf_decal/tile/red, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ask" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Security - Prison Fore"; + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/mob/living/simple_animal/mouse/brown/Tom, +/turf/open/floor/plasteel, +/area/security/prison) +"asl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external/glass{ + name = "Port Bow Solars External Access"; + req_access_txt = "10;13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"asm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/hallway/secondary/service"; + dir = 8; + name = "Service Hall APC"; + pixel_x = -24 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"asn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet/blue, +/area/crew_quarters/dorms/blue) +"aso" = ( +/obj/structure/sign/warning/fire{ + desc = "A sign that states the labeled room's number."; + dir = 8; + icon_state = "roomnum"; + name = "Room Number 4"; + pixel_y = -28 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Dormitories - Blue"; + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, +/turf/open/floor/carpet/blue, +/area/crew_quarters/dorms/blue) +"asp" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"asq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/crew_quarters/dorms/blue) +"asr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/fore) +"ass" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/light/small, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"ast" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/plasteel, +/area/engine/storage{ + name = "Canister Storage" + }) +"asu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/rust, +/area/maintenance/disposal) +"asv" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"asw" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"asx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"asy" = ( +/obj/effect/landmark/start/assistant, +/obj/machinery/holopad, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/hallway/secondary/entry) +"asz" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Security - Prison Bathroom"; + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"asA" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/open/floor/plating, +/area/router/service) +"asB" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"asC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"asD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"asE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/button/door{ + id = "servblock"; + name = "Router Access Control"; + pixel_x = 8; + pixel_y = 24; + req_one_access_txt = "12;25;26;28;35;46" + }, +/turf/open/floor/plasteel, +/area/router/service) +"asF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/security{ + name = "Labor Camp Arrivals" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"asG" = ( +/obj/structure/sign/warning/nosmoking/circle, +/turf/closed/wall/r_wall, +/area/engine/storage{ + name = "Canister Storage" + }) +"asH" = ( +/obj/machinery/camera{ + c_tag = "Port Bow Solar Maintenance"; + dir = 1 + }, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"asI" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/canister/toxins, +/turf/open/floor/plasteel, +/area/engine/storage{ + name = "Canister Storage" + }) +"asJ" = ( +/turf/closed/wall, +/area/crew_quarters/toilet) +"asK" = ( +/obj/machinery/vr_sleeper{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"asL" = ( +/turf/closed/wall, +/area/security/brig) +"asM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/storage{ + name = "Canister Storage" + }) +"asN" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"asO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"asP" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"asQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/router/service) +"asR" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"asS" = ( +/turf/closed/wall/r_wall, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"asT" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/mob/living/simple_animal/mouse/gray{ + desc = "A strangely observant rodent."; + name = "Remy" + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"asU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Router"; + req_access_txt = "11" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"asV" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"asW" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel, +/area/security/main) +"asX" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/item/tape, +/obj/item/radio/off, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"asY" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/item/clipboard, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"asZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/router/service) +"ata" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/main) +"atb" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"atc" = ( +/turf/closed/wall, +/area/security/main) +"atd" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/central"; + dir = 1; + name = "Service Router APC"; + pixel_y = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/router/service) +"ate" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark, +/area/router/service) +"atf" = ( +/turf/closed/wall/r_wall/rust, +/area/maintenance/starboard/central) +"atg" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/router/service) +"ath" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark, +/area/router/service) +"ati" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external, +/turf/open/floor/plasteel, +/area/router/service) +"atj" = ( +/obj/structure/window/reinforced, +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"atk" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"atl" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/router/service) +"atm" = ( +/obj/structure/table, +/obj/item/kitchen/rollingpin, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"atn" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"ato" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"atp" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm2"; + name = "Room 2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms/purple) +"atq" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/processing) +"atr" = ( +/obj/machinery/door/airlock{ + id_tag = "Dorm4"; + name = "Room 4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet/blue, +/area/crew_quarters/dorms/blue) +"ats" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Clown's Office"; + req_access_txt = "46" + }, +/turf/open/floor/plating, +/area/crew_quarters/theatre/clown) +"att" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"atu" = ( +/obj/machinery/computer/cargo/request{ + dir = 4 + }, +/turf/open/floor/plating, +/area/router/service) +"atv" = ( +/obj/machinery/atmospherics/components/binary/valve/digital/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"atw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/router/service) +"atx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/router/service) +"aty" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/router/service) +"atz" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"atA" = ( +/obj/machinery/vending/cigarette, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"atB" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/item/bikehorn/rubberducky, +/obj/structure/sign/poster/official/no_erp{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"atC" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"atD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/router/service) +"atE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/router/service) +"atF" = ( +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"atG" = ( +/turf/open/floor/plasteel/dark, +/area/router/service) +"atH" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/machinery/power/apc{ + areastring = "/area/security/processing"; + name = "Labor Shuttle Dock APC"; + pixel_y = -26 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/dark, +/area/security/processing) +"atI" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/warden) +"atJ" = ( +/turf/closed/wall/rust, +/area/crew_quarters/theatre/clown) +"atK" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"atL" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"atM" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"atN" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms/purple) +"atO" = ( +/obj/structure/table, +/obj/item/storage/bag/tray, +/obj/item/clothing/gloves/color/white, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/item/paper/guides/cogstation/cooks, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"atP" = ( +/obj/structure/table/wood, +/obj/item/trash/plate, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"atQ" = ( +/obj/structure/closet/lasertag/red, +/obj/structure/sign/poster/official/space_cops{ + pixel_x = -32 + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"atR" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/machinery/vending/wardrobe/bar_wardrobe, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"atS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Bar Backroom"; + req_access_txt = "25" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"atT" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms/purple) +"atU" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"atV" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"atW" = ( +/obj/machinery/disposal/bin{ + name = "Parolee Exit" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/brig) +"atX" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/item/stock_parts/cell/high/plus, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/storage/tools) +"atY" = ( +/obj/machinery/button/door{ + id = "Dorm2"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + pixel_x = -7; + pixel_y = 24; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms/purple) +"atZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/closed/wall, +/area/hallway/secondary/entry) +"aua" = ( +/obj/structure/chair/wood/normal, +/obj/machinery/button/door{ + id = "Dorm4"; + name = "Dormitory Door Lock"; + normaldoorcontrol = 1; + pixel_x = 7; + pixel_y = 24; + specialfunctions = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/dorms/blue) +"aub" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"auc" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aud" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/dorms/blue) +"aue" = ( +/obj/structure/closet/crate/hydroponics, +/obj/item/seeds/random, +/turf/open/floor/plating, +/area/router/service) +"auf" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/router/service) +"aug" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/storage/bag/plants, +/turf/open/floor/plasteel, +/area/hydroponics) +"auh" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/item/storage/box/dice, +/obj/item/toy/cards/deck, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aui" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Freezer AC Pump" + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/kitchen/backroom) +"auj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/router/service) +"auk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/router/service) +"aul" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/mob/living/simple_animal/mouse/brown{ + name = "Chewy" + }, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"aum" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/router/service) +"aun" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/vending/hydronutrients, +/turf/open/floor/plasteel, +/area/hydroponics) +"auo" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/machinery/reagentgrinder{ + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aup" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = 26 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bucket{ + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"auq" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/router/service) +"aur" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/router/service) +"aus" = ( +/turf/open/floor/engine, +/area/engine/gravity_generator) +"aut" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"auu" = ( +/obj/effect/landmark/start/botanist, +/turf/open/floor/plasteel/dark, +/area/router/service) +"auv" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms/purple) +"auw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aux" = ( +/obj/machinery/light/small, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms/purple) +"auy" = ( +/turf/open/floor/plasteel, +/area/hydroponics) +"auz" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/chem_master, +/turf/open/floor/plasteel, +/area/hydroponics) +"auA" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/hydroponics) +"auB" = ( +/obj/structure/dresser, +/turf/open/floor/carpet/purple, +/area/crew_quarters/dorms/purple) +"auC" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"auD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"auE" = ( +/obj/structure/bed, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"auF" = ( +/obj/structure/table/wood, +/turf/open/floor/carpet/blue, +/area/crew_quarters/dorms/blue) +"auG" = ( +/obj/machinery/light/small, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/blue, +/area/crew_quarters/dorms/blue) +"auH" = ( +/obj/structure/girder/displaced, +/obj/item/reagent_containers/rag, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"auI" = ( +/obj/structure/closet/secure_closet/brig, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"auJ" = ( +/obj/structure/bed, +/obj/item/bedsheet/blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/dorms/blue) +"auK" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/security/brig) +"auL" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"auM" = ( +/obj/machinery/door/firedoor, +/obj/structure/sign/poster/official/bless_this_spess{ + pixel_x = -32 + }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"auN" = ( +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"auO" = ( +/obj/structure/closet/crate/freezer, +/turf/open/floor/plating, +/area/router/service) +"auP" = ( +/obj/structure/chair/sofa/right, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/landmark/start/assistant/override, +/turf/open/floor/plasteel, +/area/security/main) +"auQ" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/public/glass, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"auR" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/engine/secure_construction"; + dir = 1; + name = "Engineering Construction Area APC"; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"auS" = ( +/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"auT" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"auU" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/stairs/left, +/area/router/service) +"auV" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"auW" = ( +/obj/structure/chair/sofa/left, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/sign/poster/official/the_owl{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/security/main) +"auX" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel/stairs/right, +/area/router/service) +"auY" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"auZ" = ( +/obj/structure/disposalpipe/junction/flip, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/fore) +"ava" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/router/service) +"avb" = ( +/turf/closed/wall, +/area/hallway/secondary/civilian) +"avc" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"avd" = ( +/obj/structure/sign/warning{ + name = "\improper COLD TEMPERATURES"; + pixel_x = 32 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"ave" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"avf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Starboard Bow Maintenance"; + req_one_access_txt = "12;25;26;28;35;46" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/hallway/secondary/civilian) +"avg" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/turnstile{ + name = "Genpop Entrance Turnstile"; + icon_state = "turnstile_map"; + dir = 8; + req_access_txt = "69" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"avh" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/storage/tools) +"avi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance/abandoned{ + name = "Port Bow Maintainance"; + req_one_access_txt = "13" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"avj" = ( +/obj/machinery/photocopier, +/turf/open/floor/carpet/red, +/area/security/brig) +"avk" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/item/plant_analyzer, +/obj/structure/table/glass, +/obj/machinery/plantgenes{ + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"avl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"avm" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/civilian) +"avn" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/stripes/white/full, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/sign/poster/official/spiderlings{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"avo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"avp" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/glass{ + name = "East Primary Hallway"; + req_one_access_txt = "10;12;25;26;28;35;46" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/router/service) +"avq" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/glass{ + name = "East Primary Hallway"; + req_one_access_txt = "10;12;25;26;28;35;46" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/router/service) +"avr" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/space/basic, +/area/solar/starboard/aft) +"avs" = ( +/turf/closed/wall, +/area/router/service) +"avt" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"avu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"avv" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/window/reinforced/spawner/north, +/turf/open/floor/plating, +/area/space/nearstation) +"avw" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/structure/sign/poster/official/wtf_is_co2{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/storage{ + name = "Canister Storage" + }) +"avx" = ( +/obj/structure/table, +/obj/item/hand_labeler, +/obj/item/crowbar/large, +/obj/item/crowbar{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/router/service) +"avy" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/window/reinforced/spawner/north, +/turf/open/floor/plating, +/area/space/nearstation) +"avz" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/router/service) +"avA" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"avB" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/router/service) +"avC" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"avD" = ( +/obj/structure/rack, +/obj/item/clothing/suit/space/fragile, +/obj/item/clothing/head/helmet/space/fragile, +/obj/item/storage/belt/utility, +/obj/item/tank/internals/air, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/router/service) +"avE" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4; + name = "generator to hot loop" + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"avF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"avG" = ( +/turf/closed/wall, +/area/security/prison) +"avH" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, +/obj/machinery/meter, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"avI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"avJ" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel, +/area/security/main) +"avK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"avL" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"avM" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/security/main) +"avN" = ( +/turf/closed/wall, +/area/crew_quarters/barbershop) +"avO" = ( +/obj/structure/table, +/obj/structure/bedsheetbin/color, +/obj/item/clothing/gloves/color/white, +/obj/machinery/camera{ + c_tag = "Laundry Room" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/barbershop) +"avP" = ( +/obj/structure/reagent_dispensers/keg, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"avQ" = ( +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"avR" = ( +/obj/machinery/washing_machine, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/barbershop) +"avS" = ( +/obj/machinery/washing_machine, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/barbershop) +"avT" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"avU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 6 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"avV" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"avW" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"avX" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/barbershop) +"avY" = ( +/obj/machinery/newscaster/security_unit{ + pixel_y = 32 + }, +/obj/machinery/turretid{ + name = "AI Chamber turret control"; + pixel_x = 5; + pixel_y = -24 + }, +/obj/machinery/door/window/westleft{ + name = "AI Core Access"; + req_access_txt = "65" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"avZ" = ( +/obj/effect/landmark/start/cook, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"awa" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/visible, +/obj/machinery/meter, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"awb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"awc" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/maintenance/fore) +"awd" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"awe" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"awf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"awg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Civilian Wing Hallway - Fore" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"awh" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/sign/poster/official/fruit_bowl{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"awi" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"awj" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"awk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"awl" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "applebush" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"awm" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/closed/wall/r_wall, +/area/maintenance/solars/port) +"awn" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/ai_slipper{ + uses = 10 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"awo" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"awp" = ( +/turf/closed/wall, +/area/hydroponics/lobby) +"awq" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/structure/window/reinforced/spawner/west, +/turf/open/floor/plating, +/area/space/nearstation) +"awr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aws" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall/r_wall, +/area/engine/storage{ + name = "Canister Storage" + }) +"awt" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/item/folder/red, +/obj/machinery/door/window/westleft{ + name = "Security Checkpoint"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"awu" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"awv" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/obj/structure/table, +/obj/item/clothing/gloves/color/white, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/kitchen/backroom) +"aww" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"awx" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hydroponics/lobby) +"awy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Laundry Room Maintenance"; + req_one_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/crew_quarters/barbershop) +"awz" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/barbershop) +"awA" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/plasteel, +/area/engine/storage{ + name = "Canister Storage" + }) +"awB" = ( +/obj/machinery/microwave, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/table/wood/fancy, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/crew_quarters/bar) +"awC" = ( +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/barbershop) +"awD" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"awE" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/storage/tools) +"awF" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/barbershop) +"awG" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/door/poddoor/preopen{ + id = "briglockdown"; + name = "Brig Lockdown" + }, +/obj/machinery/turnstile{ + name = "Genpop Entrance Turnstile"; + icon_state = "turnstile_map"; + dir = 8; + req_access_txt = "69" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"awI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"awJ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/flasher/portable, +/turf/open/floor/plasteel, +/area/security/brig) +"awK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"awL" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"awM" = ( +/obj/structure/rack, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/head/hardhat/red{ + pixel_y = 6 + }, +/obj/item/clothing/mask/gas, +/obj/item/tank/internals/air, +/obj/item/crowbar/large, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"awN" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/fore) +"awO" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/port/central"; + dir = 1; + name = "Central Port Maintenance APC"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"awP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"awQ" = ( +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/table, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/door/poddoor/preopen{ + id = "briglockdown"; + name = "Brig Lockdown" + }, +/turf/open/floor/plasteel, +/area/security/main) +"awR" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awS" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"awT" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + sortType = 7 + }, +/turf/open/floor/plasteel, +/area/security/main) +"awU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"awV" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/vending/assist, +/turf/open/floor/plasteel, +/area/storage/tools) +"awW" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4; + name = "cold loop to space" + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"awX" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"awY" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "solitarylock"; + name = "Solitary Lockdown"; + pixel_x = -24; + req_access_txt = "2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"awZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"axa" = ( +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"axb" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"axc" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/maintenance/solars/port) +"axd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"axe" = ( +/obj/structure/closet/crate, +/obj/item/storage/belt/utility, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plating, +/area/maintenance/fore) +"axf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"axg" = ( +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/machinery/camera{ + c_tag = "Arcade"; + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"axh" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/random{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"axi" = ( +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/genpop, +/turf/open/floor/plasteel, +/area/security/brig) +"axj" = ( +/obj/machinery/vr_sleeper{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"axk" = ( +/obj/item/storage/pill_bottle/penis_enlargement, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"axl" = ( +/obj/machinery/shower{ + dir = 8; + pixel_y = -4 + }, +/obj/item/soap/homemade, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"axm" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/closed/wall, +/area/security/prison) +"axn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"axo" = ( +/obj/structure/table, +/obj/item/tape, +/obj/item/wrench, +/obj/item/radio/off, +/turf/open/floor/plasteel, +/area/security/brig) +"axp" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"axq" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"axr" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"axs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"axt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"axu" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/brig) +"axv" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/item/clothing/accessory/armband/deputy, +/obj/item/encryptionkey/headset_sec, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/item/clothing/head/cowboyhat/sec, +/turf/open/floor/plasteel, +/area/security/brig) +"axw" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/main) +"axx" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/camera{ + c_tag = "Fore Maintenance - Aft"; + dir = 8; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/maintenance/fore) +"axy" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/botanist, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"axz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/reagent_dispensers/peppertank{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"axA" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/obj/item/clothing/accessory/armband/science, +/obj/item/encryptionkey/headset_sci, +/turf/open/floor/plasteel, +/area/security/brig) +"axB" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/obj/item/clothing/accessory/armband/medblue, +/obj/item/encryptionkey/headset_med, +/turf/open/floor/plasteel, +/area/security/brig) +"axC" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"axD" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Hydroponics Storage"; + req_access_txt = "35" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"axE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/kudzu{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"axF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"axG" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"axH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"axI" = ( +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"axJ" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"axK" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"axL" = ( +/obj/structure/sign/warning{ + name = "\improper CONSTRUCTION AREA"; + pixel_y = 32 + }, +/obj/item/assembly/prox_sensor, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"axM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"axN" = ( +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/computer/security{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"axO" = ( +/obj/structure/weightmachine/stacklifter, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"axP" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"axQ" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"axR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plating, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"axS" = ( +/obj/structure/closet/crate, +/obj/item/storage/box/lights/mixed, +/obj/item/clothing/mask/gas, +/obj/item/cane, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"axT" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/storage/crayons{ + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"axU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"axV" = ( +/turf/open/floor/plating/asteroid, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"axW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"axX" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"axY" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"axZ" = ( +/obj/machinery/requests_console{ + department = "AI"; + departmentType = 5; + pixel_y = 28 + }, +/obj/machinery/door/window/eastright{ + name = "AI Core Access"; + req_access_txt = "65" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aya" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"ayb" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"ayc" = ( +/obj/structure/kitchenspike, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/kitchen/backroom) +"ayd" = ( +/turf/closed/wall, +/area/hallway/primary/port/fore) +"aye" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/open/space/basic, +/area/space/nearstation) +"ayf" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"ayg" = ( +/obj/machinery/vending/wardrobe/hydro_wardrobe, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"ayh" = ( +/obj/machinery/door/airlock{ + name = "Bathroom" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"ayi" = ( +/obj/structure/table, +/obj/item/clipboard, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/pen, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"ayj" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/security/brig) +"ayk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/secondary/entry) +"ayl" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"aym" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/prison) +"ayn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/turf/open/floor/plating, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"ayo" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"ayp" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/barbershop) +"ayq" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/barbershop) +"ayr" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/barbershop) +"ays" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/drinks/soda_cans/space_up, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"ayt" = ( +/obj/structure/closet/crate, +/obj/item/reagent_containers/glass/beaker/waterbottle/large/empty, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/barbershop) +"ayu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 6 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/fore) +"ayv" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"ayw" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Service Hallway - Fore"; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"ayx" = ( +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"ayy" = ( +/turf/open/floor/carpet, +/area/chapel/main) +"ayz" = ( +/obj/structure/chair/pew/right{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"ayA" = ( +/obj/structure/window/reinforced, +/obj/structure/destructible/cult/tome, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"ayB" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"ayC" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"ayD" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"ayE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hydroponics/lobby) +"ayF" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"ayG" = ( +/obj/structure/chair/comfy/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"ayH" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/mob/living/simple_animal/cockroach, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"ayI" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ayJ" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/maintenance/solars/port) +"ayK" = ( +/obj/structure/flora/tree/jungle/small, +/turf/open/floor/plating/asteroid, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"ayL" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"ayM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"ayN" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"ayO" = ( +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/table, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "briglockdown"; + name = "Brig Lockdown" + }, +/turf/open/floor/plasteel, +/area/security/main) +"ayP" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"ayQ" = ( +/obj/machinery/vr_sleeper{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"ayR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/security/brig) +"ayS" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ayT" = ( +/obj/machinery/vending/security, +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ayU" = ( +/obj/vehicle/ridden/secway, +/obj/effect/turf_decal/bot, +/obj/item/key/security, +/turf/open/floor/plasteel, +/area/security/brig) +"ayV" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"ayW" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"ayX" = ( +/obj/structure/closet/wardrobe/mixed, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"ayY" = ( +/obj/machinery/vending/medical, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"ayZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aza" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table, +/obj/item/clothing/gloves/botanic_leather, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"azb" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/barbershop) +"azc" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"azd" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/clothing/mask/gas, +/obj/machinery/camera{ + c_tag = "Central Port Maintenace - Port" + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"aze" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "AI Chamber APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"azf" = ( +/obj/machinery/newscaster/security_unit{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"azg" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/storage{ + name = "Canister Storage" + }) +"azh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"azi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation Maintenance"; + req_access_txt = "63;12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/security/brig) +"azj" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"azk" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"azl" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security - Brig Aft"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"azm" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/carpet, +/area/crew_quarters/bar) +"azn" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"azo" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"azp" = ( +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/barbershop) +"azq" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plating, +/area/space/nearstation) +"azr" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_x = 26 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"azs" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"azt" = ( +/obj/structure/chair/pew/right{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"azu" = ( +/obj/structure/chair/pew{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"azv" = ( +/obj/machinery/door/window/westleft{ + name = "Holy Driver"; + req_one_access_txt = "22" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "Holydriver" + }, +/turf/open/floor/plating, +/area/chapel/main) +"azw" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "Holydriver" + }, +/turf/open/floor/plating, +/area/chapel/main) +"azx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"azy" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"azz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"azA" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/barbershop) +"azB" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"azC" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/barbershop) +"azD" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"azE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"azF" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tools) +"azG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/secondary/entry) +"azH" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/sign/departments/botany{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"azI" = ( +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"azJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"azK" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/machinery/door/window/westleft{ + name = "Boxing Ring" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"azL" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"azM" = ( +/obj/structure/table, +/obj/machinery/recharger{ + pixel_y = 2 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"azN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/security/prison) +"azO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/blobstart, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"azP" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"azQ" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"azR" = ( +/obj/structure/closet/secure_closet/bar, +/obj/structure/disposalpipe/segment, +/obj/item/clothing/under/costume/maid, +/obj/item/stack/spacecash/c10, +/obj/item/clothing/under/suit/waiter, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"azS" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/closet, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/cable_coil/red{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/stack/cable_coil/red, +/obj/item/wrench, +/obj/item/screwdriver{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"azT" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"azU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"azV" = ( +/obj/structure/kitchenspike, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/kitchen/backroom) +"azW" = ( +/obj/effect/landmark/start/botanist, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"azX" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/storage/tools) +"azY" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/apc{ + areastring = "/area/hydroponics/lobby"; + dir = 4; + name = "Hydroponics Lobby APC"; + pixel_x = 24 + }, +/obj/item/clothing/suit/beekeeper_suit, +/obj/item/melee/flyswatter, +/obj/item/clothing/head/beekeeper_head, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"azZ" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "chapelgun"; + name = "Holy Driver" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating, +/area/chapel/main) +"aAa" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/kitchen) +"aAb" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aAc" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aAd" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/processing) +"aAe" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aAf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/mineral_door/wood, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/barbershop) +"aAg" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction, +/obj/machinery/gibber, +/obj/machinery/camera{ + c_tag = "Kitchen Coldroom"; + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/kitchen/backroom) +"aAh" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/structure/easel, +/obj/item/canvas/nineteenXnineteen, +/obj/item/storage/crayons, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"aAi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aAj" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aAk" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aAl" = ( +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"aAm" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/machinery/door/airlock/freezer{ + name = "Kitchen Coldroom"; + req_access_txt = "28" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/kitchen/backroom) +"aAn" = ( +/obj/machinery/vending/wardrobe/sec_wardrobe, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/brig) +"aAo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/sign/poster/official/twelve_gauge{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"aAp" = ( +/obj/machinery/computer/security/telescreen/entertainment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/bar) +"aAq" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -12 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aAr" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aAs" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aAt" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/emergency, +/obj/machinery/camera{ + c_tag = "Hydroponics Storage"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aAu" = ( +/obj/structure/closet/crate/hydroponics, +/obj/effect/decal/cleanable/dirt, +/obj/item/circuitboard/machine/hydroponics, +/obj/item/circuitboard/machine/hydroponics, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aAv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/vending/security, +/turf/open/floor/plasteel, +/area/security/brig) +"aAw" = ( +/obj/machinery/door/poddoor{ + id = "chapelgun"; + name = "Chapel Launcher Door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/chapel/main) +"aAx" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aAy" = ( +/obj/machinery/atmospherics/components/binary/circulator{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aAz" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aAA" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/maintenance/fore) +"aAB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aAC" = ( +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"aAD" = ( +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"aAE" = ( +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aAF" = ( +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"aAG" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"aAH" = ( +/obj/structure/chair/pew{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/chapel/main) +"aAI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"aAJ" = ( +/obj/structure/transit_tube/station/reverse/flipped{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"aAK" = ( +/obj/structure/transit_tube/horizontal, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"aAL" = ( +/obj/machinery/shower{ + dir = 8 + }, +/obj/structure/sign/poster/official/cleanliness{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"aAM" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/public/glass{ + name = "Hydroponics"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aAN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aAO" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/crew_quarters/toilet) +"aAP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/brig) +"aAQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"aAR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Telecomms Access Maintenance"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aAS" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/obj/item/clothing/accessory/armband/engine, +/obj/item/encryptionkey/headset_eng, +/turf/open/floor/plasteel, +/area/security/brig) +"aAT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aAU" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aAV" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aAW" = ( +/obj/machinery/chem_master/condimaster{ + name = "BrewMaster 3000" + }, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aAX" = ( +/turf/open/floor/carpet/red, +/area/security/brig) +"aAY" = ( +/obj/structure/chair, +/turf/open/floor/carpet/red, +/area/security/brig) +"aAZ" = ( +/obj/structure/chair, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/carpet/red, +/area/security/brig) +"aBa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aBb" = ( +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aBc" = ( +/obj/structure/closet/secure_closet/hydroponics, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/beekeeper_suit, +/obj/item/melee/flyswatter, +/obj/item/clothing/head/beekeeper_head, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aBd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aBe" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aBf" = ( +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aBg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/junction, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aBh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aBi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aBj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/brig) +"aBk" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/crew_quarters/barbershop) +"aBl" = ( +/obj/structure/chair/comfy/brown, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/barbershop) +"aBm" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Dormitories" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"aBn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aBo" = ( +/obj/structure/table, +/obj/item/storage/pill_bottle/epinephrine, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/barbershop) +"aBp" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/machinery/computer/pod/old{ + density = 0; + icon = 'icons/obj/airlock_machines.dmi'; + icon_state = "airlock_control_standby"; + id = "chapelgun"; + name = "Mass Driver Controller"; + pixel_x = 24 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "Holydriver" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"aBq" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"aBr" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/barbershop) +"aBs" = ( +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"aBt" = ( +/obj/structure/chair/comfy/brown, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/barbershop) +"aBu" = ( +/obj/item/flashlight/lantern, +/turf/open/floor/carpet, +/area/chapel/main) +"aBv" = ( +/obj/structure/chair/pew/left{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"aBw" = ( +/obj/structure/chair/comfy/brown, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/barbershop) +"aBx" = ( +/obj/structure/window/plasma/reinforced{ + dir = 8 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/effect/turf_decal/tile/bar, +/obj/machinery/door/poddoor/preopen{ + id = "briglockdown"; + name = "Brig Lockdown" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aBy" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-16" + }, +/obj/machinery/camera{ + c_tag = "Port Bow Hall - Central"; + dir = 4; + network = list("ss13","medbay") + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aBz" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aBA" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/table, +/obj/item/healthanalyzer, +/obj/item/storage/hypospraykit/fire{ + pixel_x = -4 + }, +/obj/item/storage/hypospraykit/brute{ + pixel_x = 4 + }, +/obj/structure/sign/poster/official/nt_storm{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aBB" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aBC" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/main) +"aBD" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aBE" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aBF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/security/brig) +"aBG" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/crew_quarters/bar) +"aBH" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aBI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aBJ" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aBK" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/security/main) +"aBL" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/fore) +"aBM" = ( +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/abandoned_gambling_den"; + name = "Arcade APC"; + pixel_y = -26 + }, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aBN" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aBO" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock{ + name = "Hydroponics Storage"; + req_access_txt = "35" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aBP" = ( +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/wood, +/area/crew_quarters/barbershop) +"aBQ" = ( +/turf/open/floor/wood, +/area/crew_quarters/barbershop) +"aBR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/barbershop) +"aBS" = ( +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"aBT" = ( +/obj/item/razor, +/obj/item/toy/figure/chef{ + pixel_x = -6 + }, +/obj/item/toy/figure/bartender{ + pixel_x = 4 + }, +/obj/structure/table/wood/fancy, +/turf/open/floor/carpet, +/area/crew_quarters/bar) +"aBU" = ( +/obj/structure/window/reinforced/tinted, +/obj/structure/rack, +/obj/item/soap/nanotrasen, +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"aBV" = ( +/obj/item/flashlight/lantern, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"aBW" = ( +/obj/structure/window/reinforced, +/obj/item/clothing/head/hardhat/cakehat, +/obj/structure/table/wood/fancy, +/turf/open/floor/carpet, +/area/crew_quarters/bar) +"aBX" = ( +/obj/structure/table, +/obj/machinery/chem_dispenser/drinks, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aBY" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Security Maintenance"; + dir = 1; + network = list("ss13","medbay") + }, +/turf/open/floor/plating, +/area/maintenance/department/security) +"aBZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/barbershop) +"aCa" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/main) +"aCb" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aCc" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/item/clothing/accessory/armband/cargo, +/obj/item/encryptionkey/headset_cargo, +/turf/open/floor/plasteel, +/area/security/brig) +"aCd" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/highcap/fifteen_k{ + areastring = /area/maintenance/solars/port; + dir = 1; + name = "Port Solars APC"; + pixel_y = 26 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aCe" = ( +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/bar) +"aCf" = ( +/obj/machinery/light/small, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"aCg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/supply, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aCh" = ( +/obj/structure/mineral_door/wood{ + name = "Barbershop" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/barbershop) +"aCi" = ( +/obj/structure/closet/l3closet/security, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/brig) +"aCj" = ( +/obj/machinery/door/window/southleft{ + name = "Showers" + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"aCk" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/crew_quarters/toilet/fitness) +"aCl" = ( +/obj/structure/closet/bombcloset/security, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/security/brig) +"aCm" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aCn" = ( +/obj/machinery/vending/boozeomat, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aCo" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/fitness) +"aCp" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/fitness) +"aCq" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/closed/wall, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"aCr" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aCs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"aCt" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aCu" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/freezer, +/area/security/prison) +"aCv" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"aCw" = ( +/obj/structure/window/reinforced/tinted, +/obj/machinery/shower{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"aCx" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aCy" = ( +/obj/structure/table/wood, +/obj/item/storage/book/bible, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"aCz" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aCA" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"aCB" = ( +/obj/structure/chair/stool/bar, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/bar) +"aCC" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/security/prison) +"aCD" = ( +/obj/item/trash/plate, +/obj/item/kitchen/fork, +/obj/structure/table/wood/fancy, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aCE" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/button/door{ + id = "briglockdown"; + name = "Brig Lockdown"; + pixel_x = 24; + req_access_txt = "2" + }, +/obj/effect/turf_decal/arrows/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aCF" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aCG" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aCH" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/arrows/red{ + dir = 8 + }, +/obj/effect/turf_decal/arrows/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aCI" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/structure/sign/departments/botany{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aCJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/chapel/main) +"aCK" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/security/prison) +"aCL" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/paper/guides/cogstation/letter_sec, +/turf/open/floor/carpet/red, +/area/security/brig) +"aCM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/fun_police{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aCN" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aCO" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + layer = 2.9 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"aCP" = ( +/obj/structure/chair/sofa/left, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/landmark/start/botanist, +/obj/machinery/camera{ + c_tag = "Hydroponics Lobby" + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aCQ" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/grown/harebell, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"aCR" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_x = 1; + pixel_y = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aCS" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aCT" = ( +/obj/machinery/disposal/bin{ + name = "Hydroponics Mailbox" + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/delivery/white, +/obj/machinery/requests_console{ + department = "Hydroponics"; + name = "Hydroponics RC"; + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aCU" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plating, +/area/space/nearstation) +"aCV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/storage/tools) +"aCW" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aCX" = ( +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"aCY" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/biogenerator, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aCZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/electricshock, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aDa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/barbershop) +"aDb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/checkpoint) +"aDc" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Barbershop"; + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/barbershop) +"aDd" = ( +/obj/structure/chair/office/dark, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/barbershop) +"aDe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"aDf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/wood, +/area/crew_quarters/barbershop) +"aDg" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Central Maintenance"; + req_one_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/central) +"aDh" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/public/glass{ + name = "Port Bow Primary Hallway" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aDi" = ( +/obj/structure/closet/secure_closet/evidence, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aDj" = ( +/obj/structure/closet/wardrobe/green, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"aDk" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/door/window/eastright{ + name = "Bathroom Stall" + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"aDl" = ( +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"aDm" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"aDn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/transit_tube/horizontal, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/bridge) +"aDo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/barbershop) +"aDp" = ( +/obj/effect/spawner/structure/window, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/barbershop) +"aDq" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aDr" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Civilian Wing Hallway" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aDs" = ( +/obj/effect/turf_decal/tile/red, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/security/brig) +"aDt" = ( +/obj/structure/closet{ + name = "Evidence Closet 1" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aDu" = ( +/obj/structure/closet{ + name = "Evidence Closet 2" + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aDv" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"aDw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aDx" = ( +/obj/structure/closet/crate, +/obj/item/gun/ballistic/shotgun/toy/unrestricted, +/obj/item/gun/ballistic/shotgun/toy/unrestricted, +/obj/item/toy/gun, +/obj/item/toy/sword, +/obj/item/toy/sword, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"aDy" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aDz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/sign/departments/restroom{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"aDA" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aDB" = ( +/obj/structure/closet{ + name = "Evidence Closet 3" + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aDC" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aDD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"aDE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aDF" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"aDG" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aDH" = ( +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aDI" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"aDJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aDK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aDL" = ( +/obj/structure/closet{ + name = "Evidence Closet 4" + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aDM" = ( +/turf/closed/wall, +/area/maintenance/central) +"aDN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/central) +"aDO" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aDP" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/full, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aDQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aDR" = ( +/turf/open/floor/plating, +/area/maintenance/central) +"aDS" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/barbershop) +"aDT" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aDU" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aDV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aDW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/preopen{ + id = "briglockdown"; + name = "Brig Lockdown" + }, +/obj/machinery/turnstile{ + dir = 4; + name = "Genpop Exit Turnstile"; + req_access_txt = "70" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aDX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aDY" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/poddoor/preopen{ + id = "briglockdown"; + name = "Brig Lockdown" + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aDZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/wood, +/area/crew_quarters/barbershop) +"aEa" = ( +/obj/structure/transit_tube/horizontal, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aEb" = ( +/obj/structure/transit_tube/crossing/horizontal, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aEc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aEd" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/barbershop) +"aEe" = ( +/obj/structure/transit_tube/horizontal, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aEf" = ( +/obj/machinery/camera/motion{ + c_tag = "Telecomms Satellite Exterior - Port Bow"; + dir = 1; + network = list("tcomms") + }, +/turf/open/space/basic, +/area/space) +"aEg" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"aEh" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance{ + name = "Fore Maintenance"; + req_one_access_txt = "12;46" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/hallway/primary/port/fore) +"aEi" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"aEj" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"aEk" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"aEl" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aEm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aEn" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aEo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/structure/sign/poster/official/fashion{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"aEp" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aEq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aEr" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/lighter, +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aEs" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/machinery/atmospherics/components/binary/valve/digital/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aEt" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aEu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aEv" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aEw" = ( +/obj/structure/chair, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aEx" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aEy" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/brig) +"aEz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aEA" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aEB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aEC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aED" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/security_officer, +/turf/open/floor/carpet/red, +/area/security/brig) +"aEE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"aEF" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"aEG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aEH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aEI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"aEJ" = ( +/obj/item/kirbyplants{ + icon_state = "plant-08" + }, +/turf/open/floor/wood, +/area/crew_quarters/barbershop) +"aEK" = ( +/obj/structure/table, +/obj/item/razor, +/turf/open/floor/wood, +/area/crew_quarters/barbershop) +"aEL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aEM" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/grown/poppy, +/turf/open/floor/carpet, +/area/chapel/main) +"aEN" = ( +/obj/structure/table, +/obj/machinery/light, +/obj/item/razor, +/turf/open/floor/wood, +/area/crew_quarters/barbershop) +"aEO" = ( +/obj/structure/table, +/obj/item/clothing/accessory/pocketprotector/cosmetology, +/turf/open/floor/wood, +/area/crew_quarters/barbershop) +"aEP" = ( +/obj/item/kirbyplants, +/turf/open/floor/wood, +/area/crew_quarters/barbershop) +"aEQ" = ( +/turf/closed/wall/r_wall, +/area/maintenance/central) +"aER" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot, +/obj/structure/sign/warning/nosmoking{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aES" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id = "briglockdown"; + name = "Brig Lockdown" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"aET" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id = "briglockdown"; + name = "Brig Lockdown" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"aEU" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/fore) +"aEV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/central) +"aEW" = ( +/obj/structure/table, +/obj/machinery/computer/libraryconsole/bookmanagement, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"aEX" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/poster/official/safety_internals{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aEY" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aEZ" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/central"; + dir = 1; + name = "Emergency Storage APC"; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aFa" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/head/hardhat/red{ + pixel_y = 10 + }, +/obj/item/clothing/mask/gas, +/obj/item/tank/internals/air, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aFb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aFc" = ( +/obj/structure/table, +/obj/item/clothing/suit/toggle/owlwings, +/obj/item/clothing/under/costume/owl, +/obj/item/clothing/mask/gas/owl_mask, +/turf/open/floor/plating/asteroid, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"aFd" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aFe" = ( +/obj/machinery/photocopier, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"aFf" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=serv"; + location = "sec1" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aFg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aFh" = ( +/obj/structure/chair/pew/right{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/carpet, +/area/chapel/main) +"aFi" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=market"; + location = "sec2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aFj" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hos) +"aFk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/checkpoint) +"aFl" = ( +/obj/structure/chair/sofa/right, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/reagent_containers/glass/bottle/diethylamine, +/obj/structure/sign/poster/official/hydro_ad{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aFm" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hos) +"aFn" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"aFo" = ( +/obj/machinery/door/window/southleft{ + name = "Weightroom" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"aFp" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aFq" = ( +/obj/structure/table/wood, +/obj/item/candle{ + pixel_x = 4 + }, +/obj/item/candle{ + pixel_y = 8 + }, +/turf/open/floor/carpet, +/area/chapel/main) +"aFr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aFs" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aFt" = ( +/obj/structure/table/glass, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aFu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aFv" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/hallway/secondary/entry) +"aFw" = ( +/obj/structure/table, +/obj/item/multitool, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/camera{ + c_tag = "Central Maintenance - Power Monitoring"; + network = list("ss13","rd") + }, +/turf/open/floor/plating, +/area/maintenance/central) +"aFx" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/item/folder/blue, +/obj/machinery/door/window/westleft{ + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aFy" = ( +/obj/machinery/computer/monitor, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"aFz" = ( +/obj/structure/table, +/obj/item/multitool{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/item/stack/cable_coil/random, +/obj/item/crowbar, +/turf/open/floor/plating, +/area/maintenance/central) +"aFA" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/landmark/start/botanist, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aFB" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aFC" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aFD" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=AftH"; + location = "Hydroponics" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aFE" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/techstorage/tcomms, +/turf/open/floor/circuit, +/area/bridge) +"aFF" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aFG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/security/prison) +"aFH" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aFI" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Primary Tool Storage" + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"aFJ" = ( +/obj/structure/closet/crate/hydroponics, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/watertank, +/obj/item/grenade/chem_grenade/antiweed, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aFK" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/item/storage/box/beakers{ + pixel_y = 4 + }, +/obj/item/reagent_containers/dropper, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/item/pen/blue{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/item/pen/red{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/structure/table/glass, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aFL" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/chem_master, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aFM" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/crew_quarters/barbershop) +"aFN" = ( +/obj/structure/flora/junglebush/b, +/turf/open/floor/plating/asteroid, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"aFO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aFP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aFQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aFR" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aFS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aFT" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aFU" = ( +/obj/machinery/atmospherics/components/binary/circulator/cold{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aFV" = ( +/obj/structure/window/reinforced, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/table/wood/fancy, +/turf/open/floor/carpet, +/area/crew_quarters/bar) +"aFW" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aFX" = ( +/obj/machinery/computer/security/hos{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"aFY" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"aFZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/security/prison) +"aGa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/transit_tube/horizontal, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"aGb" = ( +/obj/machinery/suit_storage_unit/hos, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"aGc" = ( +/obj/item/coin/iron, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"aGd" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"aGe" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"aGf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aGg" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aGh" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/landmark/start/security_officer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aGi" = ( +/obj/machinery/porta_turret/ai{ + dir = 1; + req_access = list(16) + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aGj" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/toolbox/emergency{ + pixel_y = 4 + }, +/obj/item/analyzer{ + pixel_y = -4 + }, +/obj/item/flashlight{ + pixel_y = 4 + }, +/obj/item/flashlight{ + pixel_y = 4 + }, +/obj/item/extinguisher, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aGk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aGl" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/structure/window/reinforced, +/obj/structure/table, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/item/clipboard, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aGm" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/door/window/southright{ + name = "Hydroponics Desk"; + req_access_txt = "35" + }, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aGn" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/bridge) +"aGo" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/screwdriver, +/obj/item/wrench, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/multitool, +/obj/item/multitool, +/obj/item/wrench, +/turf/open/floor/plasteel, +/area/security/brig) +"aGp" = ( +/mob/living/simple_animal/mouse/brown, +/turf/open/floor/plating/asteroid, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"aGq" = ( +/turf/closed/wall/r_wall, +/area/bridge) +"aGr" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aGs" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/bridge) +"aGt" = ( +/obj/machinery/computer/card/minor/hos{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"aGu" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"aGv" = ( +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"aGw" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock{ + name = "Hydroponics Lobby"; + req_access_txt = "35" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"aGx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aGy" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aGz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/bridge"; + name = "Bridge APC"; + pixel_y = -24 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aGA" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"aGB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"aGC" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aGD" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/toilet"; + dir = 8; + name = "Dormitory Toilets APC"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/fore) +"aGE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"aGF" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aGG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aGH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medical Booth"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/medical{ + name = "Medical Booth" + }) +"aGI" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/reagent_containers/pill/patch/silver_sulf{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/reagent_containers/pill/patch/silver_sulf{ + pixel_x = -4; + pixel_y = 5 + }, +/obj/item/reagent_containers/pill/patch/silver_sulf{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/reagent_containers/pill/patch/silver_sulf{ + pixel_x = -4; + pixel_y = 3 + }, +/obj/item/reagent_containers/pill/patch/silver_sulf{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/item/reagent_containers/pill/patch/silver_sulf{ + pixel_x = -4; + pixel_y = 1 + }, +/obj/item/reagent_containers/pill/patch/silver_sulf{ + pixel_x = -4 + }, +/obj/item/reagent_containers/pill/patch/silver_sulf{ + pixel_x = -4; + pixel_y = -1 + }, +/obj/item/reagent_containers/pill/patch/styptic{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/reagent_containers/pill/patch/styptic{ + pixel_x = 4; + pixel_y = 5 + }, +/obj/item/reagent_containers/pill/patch/styptic{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/reagent_containers/pill/patch/styptic{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/reagent_containers/pill/patch/styptic{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/reagent_containers/pill/patch/styptic{ + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/reagent_containers/pill/patch/styptic{ + pixel_x = 4 + }, +/obj/item/reagent_containers/pill/patch/styptic{ + pixel_x = 4; + pixel_y = -1 + }, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aGJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aGK" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/central"; + dir = 1; + name = "Head of Security's APC"; + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "Security - Head of Security's Office"; + pixel_x = 22 + }, +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"aGL" = ( +/obj/structure/table/wood, +/obj/item/storage/firstaid/regular, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aGM" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aGN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"aGO" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aGP" = ( +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aGQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aGR" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/snacks/store/cake/chocolate, +/obj/machinery/door/poddoor/preopen{ + id = "kitchenlock"; + name = "Kitchen Lockup" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/kitchen) +"aGS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aGT" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"aGU" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aGV" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/structure/table, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"aGW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/bridge) +"aGX" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/bottle/vodka, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aGY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = -30 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"aGZ" = ( +/turf/open/floor/plasteel/stairs/medium, +/area/hallway/secondary/entry) +"aHa" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/locker"; + dir = 8; + name = "Locker Room APC"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aHb" = ( +/obj/structure/chair, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aHc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"aHd" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aHe" = ( +/obj/structure/sign/poster/official/bless_this_spess{ + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"aHf" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"aHg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aHh" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aHi" = ( +/obj/structure/chair/stool, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"aHj" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"aHk" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aHl" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aHm" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aHn" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plating, +/area/maintenance/central) +"aHo" = ( +/obj/structure/rack, +/obj/item/circuitboard/machine/telecomms/relay, +/obj/item/circuitboard/machine/telecomms/server, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"aHp" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aHq" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/obj/machinery/porta_turret/ai{ + dir = 1; + req_access = list(16) + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"aHr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/clown{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aHs" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/port/fore) +"aHt" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/port/fore) +"aHu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aHv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aHw" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aHx" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/closed/wall, +/area/security/detectives_office) +"aHy" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/security/detectives_office) +"aHz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/security/detectives_office) +"aHA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/detectives_office) +"aHB" = ( +/obj/structure/rack, +/obj/effect/turf_decal/bot, +/obj/item/storage/toolbox/emergency{ + pixel_y = 4 + }, +/obj/item/wrench, +/obj/item/wrench{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/light/tube, +/obj/item/light/tube{ + pixel_x = -2; + pixel_y = 2 + }, +/obj/item/extinguisher, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aHC" = ( +/obj/machinery/vending/cola/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aHD" = ( +/obj/machinery/modular_computer/console/preset/engineering, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aHE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"aHF" = ( +/turf/open/floor/plasteel/dark, +/area/bridge) +"aHG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"aHH" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aHI" = ( +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aHJ" = ( +/obj/machinery/light, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"aHK" = ( +/obj/structure/musician/piano, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"aHL" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/stack/medical/gauze, +/obj/item/reagent_containers/blood, +/obj/item/stack/medical/suture, +/obj/item/stack/medical/mesh, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"aHM" = ( +/turf/open/floor/plasteel, +/area/bridge) +"aHN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Security - Interrogation Room"; + pixel_x = 22 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aHO" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aHP" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hos) +"aHQ" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aHR" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/central"; + dir = 1; + name = "Security Office APC"; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aHS" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"aHT" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"aHU" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/mineral_door/woodrustic{ + name = "Nature Preserve" + }, +/turf/open/floor/plasteel, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"aHV" = ( +/obj/structure/flora/junglebush/large, +/turf/open/floor/plating/asteroid, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"aHW" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/head_of_security, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"aHX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aHY" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/cryopod) +"aHZ" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/door/window/eastleft{ + name = "Security Office Desk"; + req_one_access_txt = "63" + }, +/obj/item/folder/red, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stamp, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aIa" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"aIb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aIc" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"aId" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aIe" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"aIf" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"aIg" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aIh" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"aIi" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aIj" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aIk" = ( +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aIl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aIm" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/machinery/requests_console{ + department = "Kitchen"; + departmentType = 2; + name = "Kitchen RC"; + pixel_x = 30 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"aIn" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/security/prison) +"aIo" = ( +/obj/effect/decal/cleanable/oil, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aIp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aIq" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aIr" = ( +/obj/structure/table/reinforced, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/item/folder/red, +/obj/item/stamp/hos, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"aIs" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aIt" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aIu" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aIv" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/turf/open/floor/circuit/green, +/area/crew_quarters/cryopod) +"aIw" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aIx" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aIy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aIz" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"aIA" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aIB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aIC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/main) +"aID" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/main) +"aIE" = ( +/turf/open/floor/carpet/royalblue, +/area/bridge) +"aIF" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/recharger, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aIG" = ( +/obj/structure/table, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aIH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/carpet/royalblue, +/area/bridge) +"aII" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/royalblue, +/area/bridge) +"aIJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Fore Maintenance"; + req_one_access_txt = "12;46" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/hallway/primary/port/fore) +"aIK" = ( +/obj/structure/table/wood, +/obj/item/camera, +/obj/item/folder, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aIL" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aIM" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"aIN" = ( +/obj/structure/bed/roller, +/obj/machinery/iv_drip, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"aIO" = ( +/obj/structure/sign/directions/medical{ + dir = 8; + pixel_y = -24 + }, +/obj/structure/sign/directions/evac{ + dir = 1; + pixel_y = -32 + }, +/obj/structure/sign/directions/supply{ + dir = 8; + pixel_y = -40 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aIP" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aIQ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aIR" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/botanist, +/turf/open/floor/plasteel, +/area/hydroponics) +"aIS" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/ai, +/obj/item/radio/intercom{ + freerange = 1; + frequency = 1447; + name = "Private Channel"; + pixel_x = 27; + pixel_y = -7 + }, +/obj/item/radio/intercom{ + freerange = 1; + name = "Common Channel"; + pixel_x = 27; + pixel_y = 5 + }, +/obj/machinery/button/door{ + id = "AIShutter"; + layer = 3.6; + name = "AI Core Shutter Control"; + pixel_x = 24; + pixel_y = -24 + }, +/obj/item/radio/intercom{ + freerange = 1; + listening = 0; + name = "Custom Channel"; + pixel_x = -24; + pixel_y = -8 + }, +/obj/machinery/button/door{ + id = "AIChamberShutter"; + layer = 3.6; + name = "AI Chamber Shutter Control"; + pixel_x = -24; + pixel_y = -24 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aIT" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aIU" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aIV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation Monitoring"; + req_access_txt = "63" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aIW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aIX" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aIY" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aIZ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aJa" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aJb" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aJc" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aJd" = ( +/turf/closed/wall, +/area/chapel/office) +"aJe" = ( +/obj/machinery/computer/crew{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aJf" = ( +/obj/machinery/camera{ + c_tag = "Chapel - Aft"; + dir = 1 + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"aJg" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"aJh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"aJi" = ( +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"aJj" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/aft"; + dir = 8; + name = "Chapel APC"; + pixel_x = -26 + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"aJk" = ( +/obj/structure/table/wood, +/obj/item/candle, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"aJl" = ( +/obj/structure/bodycontainer/crematorium{ + id = "foo" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"aJm" = ( +/obj/machinery/light, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"aJn" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aJo" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"aJp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/camera/motion{ + c_tag = "AI"; + network = list("minisat") + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aJq" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/storage/box/beakers{ + pixel_y = 4 + }, +/obj/item/clothing/glasses/science, +/turf/open/floor/plasteel, +/area/hydroponics) +"aJr" = ( +/obj/structure/sign/directions/command{ + dir = 8; + pixel_y = -32 + }, +/obj/structure/sign/directions/security{ + dir = 8; + pixel_y = -24 + }, +/obj/structure/sign/directions/science{ + dir = 8; + pixel_y = -40 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aJs" = ( +/obj/structure/noticeboard{ + name = "Hydroponics Requests Board"; + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aJt" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/item/toy/figure/syndie, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/prison) +"aJu" = ( +/obj/structure/chair/comfy/brown, +/turf/open/floor/carpet/royalblue, +/area/bridge) +"aJv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"aJw" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aJx" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aJy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/stairs/right, +/area/security/brig) +"aJz" = ( +/obj/structure/chair/comfy/brown, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet/royalblue, +/area/bridge) +"aJA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Port Bow Hall - Dorms Access"; + network = list("ss13","rd") + }, +/obj/structure/sign/poster/official/random{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aJB" = ( +/obj/machinery/computer/security/mining{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aJC" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aJD" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/item/storage/belt/medical, +/obj/item/tank/internals/emergency_oxygen, +/obj/item/clothing/suit/space/eva/paramedic, +/obj/item/clothing/head/helmet/space/eva/paramedic, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"aJE" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"aJF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/fore) +"aJG" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"aJH" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/storage/tools) +"aJI" = ( +/obj/structure/closet/crate/hydroponics, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/cable, +/obj/item/shovel/spade, +/obj/item/wrench, +/obj/item/cultivator, +/obj/item/crowbar, +/obj/item/wirecutters, +/obj/item/reagent_containers/glass/bucket, +/obj/item/hatchet, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/hydroponics"; + name = "Hydroponics APC"; + pixel_y = -28 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"aJJ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"aJK" = ( +/obj/structure/filingcabinet, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/bridge) +"aJL" = ( +/turf/open/floor/circuit, +/area/bridge) +"aJM" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/circuit, +/area/bridge) +"aJN" = ( +/obj/machinery/camera{ + c_tag = "Security - Prison Aft"; + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aJO" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aJP" = ( +/obj/structure/chair/comfy/teal, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/sign/departments/botany{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Civilian Wing Hallway - Starboard"; + dir = 8; + pixel_y = -22 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aJQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aJR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"aJS" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"aJT" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aJU" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aJV" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"aJW" = ( +/obj/machinery/cryopod{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/circuit/green, +/area/crew_quarters/cryopod) +"aJX" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/modular_computer/console/preset/civilian{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/bridge) +"aJY" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/storage/box/lights/mixed, +/obj/item/stack/sheet/metal/fifty{ + pixel_x = -3; + pixel_y = -7 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"aJZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"aKa" = ( +/obj/structure/chair/stool, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aKb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/civilian) +"aKc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aKd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation"; + req_access_txt = "63" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aKe" = ( +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"aKf" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/storage/emergency/generic) +"aKg" = ( +/turf/open/floor/plasteel/stairs/right, +/area/hallway/secondary/entry) +"aKh" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet/red, +/area/security/brig) +"aKi" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aKj" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"aKk" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/start/detective, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aKl" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aKm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Emergency Storage" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aKn" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"aKo" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aKp" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"aKq" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/chapel/main) +"aKr" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/public/glass{ + name = "Emergency Storage" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/storage/emergency/generic) +"aKs" = ( +/obj/structure/table/wood, +/obj/item/trash/plate, +/obj/item/reagent_containers/food/drinks/drinkingglass, +/obj/item/reagent_containers/rag, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"aKt" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aKu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/storage/emergency/generic) +"aKv" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aKw" = ( +/obj/structure/table, +/obj/item/storage/box/dice, +/obj/item/toy/cards/deck, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aKx" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aKy" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/rnd/production/techfab/department/security, +/turf/open/floor/plasteel, +/area/security/brig) +"aKz" = ( +/turf/closed/wall, +/area/storage/emergency/generic) +"aKA" = ( +/obj/structure/table/wood, +/obj/machinery/button/door{ + id = "bridge blast"; + name = "Bridge Blast Door Control"; + pixel_x = -6; + pixel_y = -3; + req_access_txt = "19" + }, +/turf/open/floor/carpet/royalblue, +/area/bridge) +"aKB" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"aKC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Prison Wing"; + req_access_txt = "2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aKD" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aKE" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/donut_box, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/carpet/royalblue, +/area/bridge) +"aKF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Telecommunications Control Room"; + req_access_txt = "19;61" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aKG" = ( +/obj/structure/table/wood, +/obj/item/storage/toolbox/emergency, +/obj/item/crowbar/red, +/turf/open/floor/carpet/royalblue, +/area/bridge) +"aKH" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/full, +/obj/machinery/camera{ + c_tag = "Bridge - Fore"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aKI" = ( +/obj/structure/closet/cabinet, +/obj/item/screwdriver, +/obj/item/storage/crayons, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = 26 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"aKJ" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aKK" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/vending/snack/blue, +/turf/open/floor/plasteel, +/area/bridge) +"aKL" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aKM" = ( +/obj/machinery/camera{ + c_tag = "Chapel - Starboard"; + dir = 8; + pixel_y = -22 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"aKN" = ( +/obj/structure/chair/pew/left{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"aKO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/stairs/left, +/area/security/brig) +"aKP" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/bridge) +"aKQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/office) +"aKR" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aKS" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aKT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"aKU" = ( +/obj/structure/bodycontainer/morgue, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"aKV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"aKW" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aKX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Chapel Morgue"; + dir = 8; + pixel_y = -22 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"aKY" = ( +/obj/structure/chair/sofa/left, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aKZ" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"aLa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/machinery/door/poddoor/preopen{ + id = "hos" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hos) +"aLb" = ( +/obj/item/toy/prize/honk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"aLc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aLd" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aLe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aLf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"aLg" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"aLh" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aLi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Central Maintenance"; + req_one_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"aLj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aLk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/security/brig) +"aLl" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/autodrobe, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aLm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aLn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/flip, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aLo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aLp" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"aLq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aLr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aLs" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"aLt" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aLu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Visitation Maintainance"; + req_one_access_txt = "63" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/security/main) +"aLv" = ( +/obj/machinery/computer/cryopod{ + dir = 8; + pixel_x = 26 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"aLw" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-06" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aLx" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aLy" = ( +/obj/machinery/modular_computer/console/preset/command{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aLz" = ( +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aLA" = ( +/obj/item/candle{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/item/candle{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"aLB" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"aLC" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aLD" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"aLE" = ( +/obj/machinery/computer/communications{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aLF" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aLG" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"aLH" = ( +/obj/machinery/power/terminal{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"aLI" = ( +/obj/structure/table/wood, +/obj/item/storage/box/PDAs, +/obj/item/storage/box/ids{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/carpet/royalblue, +/area/bridge) +"aLJ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aLK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/bridge) +"aLL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/brig) +"aLM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"aLN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/morgue{ + name = "Confession Booth" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"aLO" = ( +/obj/item/toy/talking/owl, +/turf/open/floor/plating/asteroid, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"aLP" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_x = -26 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"aLQ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/bridge) +"aLR" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/item/storage/box/bodybags{ + pixel_y = 4 + }, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"aLS" = ( +/obj/structure/disposaloutlet{ + dir = 8; + name = "Corpse Outlet" + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/delivery/red, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"aLT" = ( +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aLU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/vending/assist, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aLV" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/camera{ + c_tag = "Central Maintenance - Aft"; + network = list("ss13","rd") + }, +/turf/open/floor/plating, +/area/maintenance/central) +"aLW" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aLX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/main) +"aLY" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"aLZ" = ( +/mob/living/simple_animal/chicken{ + desc = "At least it isn't a court kangaroo."; + name = "amusing cluck"; + real_name = "amusing cluck" + }, +/turf/open/floor/carpet, +/area/security/courtroom) +"aMa" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"aMb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aMc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 20 + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aMd" = ( +/obj/machinery/vending/wardrobe/chap_wardrobe, +/obj/machinery/camera{ + c_tag = "Chapel Office"; + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"aMe" = ( +/obj/machinery/door/window/northleft{ + name = "Game Room" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"aMf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aMg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/recharge_station, +/turf/open/floor/plating, +/area/maintenance/central) +"aMh" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/obj/item/reagent_containers/food/drinks/bottle/champagne, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Security's Desk"; + departmentType = 5; + name = "Head of Security RC"; + pixel_y = -32 + }, +/obj/machinery/keycard_auth{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"aMi" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aMj" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aMk" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"aMl" = ( +/obj/effect/landmark/start/bartender, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aMm" = ( +/obj/machinery/computer/med_data, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"aMn" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/sign/warning{ + name = "\improper WARNING: MOVING MACHINERY" + }, +/turf/closed/wall, +/area/maintenance/department/chapel) +"aMo" = ( +/obj/structure/disposalpipe/junction/yjunction, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aMp" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aMq" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aMr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Civilian Wing Hallway - Port" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aMs" = ( +/turf/closed/wall, +/area/maintenance/department/chapel) +"aMt" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"aMu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel{ + dir = 4; + icon_state = "chapel" + }, +/area/chapel/main) +"aMv" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel{ + dir = 8; + icon_state = "chapel" + }, +/area/chapel/main) +"aMw" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aMx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"aMy" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"aMz" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engine/storage{ + name = "Canister Storage" + }) +"aMA" = ( +/turf/closed/wall, +/area/janitor) +"aMB" = ( +/turf/closed/wall/r_wall, +/area/janitor) +"aMC" = ( +/obj/structure/table/wood, +/obj/item/kitchen/fork, +/obj/item/reagent_containers/food/snacks/salad/herbsalad, +/obj/item/candle{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"aMD" = ( +/turf/closed/wall/rust, +/area/maintenance/disposal) +"aME" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aMF" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"aMG" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aMH" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aMI" = ( +/turf/closed/wall/r_wall, +/area/maintenance/disposal) +"aMJ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/effect/landmark/start/assistant, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"aMK" = ( +/obj/vehicle/ridden/wheelchair, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"aML" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/chapel/office) +"aMM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/sign/poster/official/help_others{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aMN" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aMO" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aMP" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/bottle/wine, +/turf/open/floor/plasteel, +/area/security/brig) +"aMQ" = ( +/obj/machinery/computer/security{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aMR" = ( +/obj/effect/landmark/start/chaplain, +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/carpet, +/area/chapel/main) +"aMS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aMT" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aMU" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/fountain, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet, +/area/chapel/main) +"aMV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"aMW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aMX" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + dir = 1 + }, +/turf/open/floor/carpet/royalblue, +/area/bridge) +"aMY" = ( +/obj/structure/closet, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/courtroom) +"aMZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aNa" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"aNb" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"aNc" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/item/mop, +/obj/item/storage/box/mousetraps, +/obj/item/storage/box/mousetraps, +/obj/item/reagent_containers/spray/cleaner, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plasteel, +/area/janitor) +"aNd" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/paper_bin, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/courtroom) +"aNe" = ( +/obj/structure/closet/crate, +/obj/item/reagent_containers/food/snacks/spaghetti, +/obj/item/reagent_containers/food/snacks/spaghetti, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"aNf" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/clipboard, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/courtroom) +"aNg" = ( +/obj/machinery/computer/cargo/request{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aNh" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aNi" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aNj" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/table, +/obj/item/book/manual/wiki/security_space_law, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aNk" = ( +/obj/structure/table/glass, +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/pen{ + pixel_y = 8 + }, +/obj/item/pen, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/courtroom) +"aNl" = ( +/obj/structure/table/wood, +/obj/item/trash/plate, +/obj/item/reagent_containers/food/condiment/pack/ketchup{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/condiment/pack/mustard{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/candle{ + pixel_x = -8; + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"aNm" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aNn" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/reagent_containers/food/drinks/shaker, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aNo" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AIShutter"; + name = "AI Core Shutters" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"aNp" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aNq" = ( +/obj/machinery/door/window/northright{ + name = "Chapel Office"; + req_access_txt = "22" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"aNr" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aNs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aNt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aNu" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/bar) +"aNv" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aNw" = ( +/obj/machinery/atmospherics/components/binary/valve, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"aNx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/securearea, +/turf/open/floor/plating, +/area/engine/storage{ + name = "Canister Storage" + }) +"aNy" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"aNz" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 5 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aNA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access_txt = "2" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/security/main) +"aNB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Port Bow Primary Hallway" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aNC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/camera/motion{ + c_tag = "Telecomms Control Room"; + network = list("tcomms"); + pixel_x = 22 + }, +/obj/machinery/power/apc/highcap/fifteen_k{ + areastring = "/area/tcommsat/server"; + dir = 1; + name = "Telecomms Server APC"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"aND" = ( +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"aNE" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aNF" = ( +/obj/machinery/computer/secure_data{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aNG" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 2 + }, +/obj/structure/table, +/obj/item/taperecorder, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aNH" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Exterior Engineering Access"; + req_access_txt = "11;13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"aNI" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aNJ" = ( +/obj/structure/table, +/obj/item/flashlight/lamp, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aNK" = ( +/obj/structure/sign/nanotrasen{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aNL" = ( +/turf/open/floor/plasteel, +/area/security/courtroom) +"aNM" = ( +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Security RC"; + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aNN" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aNO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/courtroom) +"aNP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aNQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/securearea, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/engine/storage{ + name = "Canister Storage" + }) +"aNR" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hop) +"aNS" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/courtroom) +"aNT" = ( +/turf/closed/wall/r_wall, +/area/teleporter) +"aNU" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aNV" = ( +/obj/structure/table, +/obj/item/locator, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"aNW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"aNX" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/item/instrument/guitar, +/obj/machinery/camera{ + c_tag = "Bar - Port"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aNY" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=sec2"; + location = "bar" + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aNZ" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aOa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "E.V.A. Maintenance"; + req_one_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aOb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "E.V.A. Maintenance"; + req_one_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aOc" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"aOd" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"aOe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"aOf" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aOg" = ( +/obj/structure/chair/comfy/teal{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aOh" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aOi" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"aOj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aOk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/effect/turf_decal/delivery, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aOl" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aOm" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/structure/table/wood, +/obj/item/toy/windupToolbox, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aOn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aOo" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/hallway/primary/port/fore"; + dir = 4; + name = "Port Bow Primary Hallway APC"; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/maintenance/department/security) +"aOp" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1; + sortType = 31 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aOq" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/effect/turf_decal/delivery, +/obj/item/extinguisher, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aOr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21"; + pixel_y = 3 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/bridge) +"aOs" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/kirbyplants, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/bridge) +"aOt" = ( +/obj/structure/chair/stool, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"aOu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"aOv" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/gavelblock, +/obj/item/gavelhammer, +/obj/machinery/camera{ + c_tag = "Courtroom"; + network = list("ss13","rd") + }, +/turf/open/floor/carpet, +/area/security/courtroom) +"aOw" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aOx" = ( +/obj/structure/table/reinforced, +/obj/item/grenade/chem_grenade/smart_metal_foam{ + pixel_x = 4 + }, +/obj/item/radio, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aOy" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aOz" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Port Bow Hall"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aOA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/department/chapel) +"aOB" = ( +/turf/closed/wall/r_wall, +/area/security/courtroom) +"aOC" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"aOD" = ( +/obj/machinery/door/airlock{ + name = "Catering"; + req_one_access_txt = "25;28" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"aOE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"aOF" = ( +/obj/structure/closet/crate/freezer/surplus_limbs, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"aOG" = ( +/obj/structure/chair/comfy/teal{ + dir = 1 + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aOH" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"aOI" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 10 + }, +/obj/machinery/flasher{ + id = "ID"; + pixel_x = 8; + pixel_y = 24 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aOJ" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/fitness/cogpool) +"aOK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"aOL" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/security/brig) +"aOM" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"aON" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aOO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aOP" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/gravity_generator) +"aOQ" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4; + name = "cold loop to generator" + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aOR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/window/reinforced/spawner/east, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aOS" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aOT" = ( +/turf/closed/wall, +/area/crew_quarters/fitness/cogpool) +"aOU" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/crew_quarters/fitness/cogpool) +"aOV" = ( +/turf/open/floor/plasteel/stairs, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aOW" = ( +/obj/structure/closet/secure_closet/security/sec, +/obj/effect/turf_decal/bot, +/obj/item/clothing/accessory/armband/hydro, +/obj/item/encryptionkey/headset_service, +/obj/item/clothing/under/misc/vice_officer, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aOX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Pool" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel/white/side, +/area/crew_quarters/fitness/cogpool) +"aOY" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/structure/window/reinforced/spawner/west, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aOZ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"aPa" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Pool" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/side, +/area/crew_quarters/fitness/cogpool) +"aPb" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/hallway/primary/central) +"aPc" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aPd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aPe" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"aPf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"aPg" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aPh" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aPi" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"aPj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aPk" = ( +/obj/effect/landmark/start/depsec/science, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aPl" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aPm" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aPn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/start/depsec/medical, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aPo" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aPp" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aPq" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aPr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/central) +"aPs" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aPt" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"aPu" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/bridge) +"aPv" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aPw" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Hall - Courtroom Access"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/central) +"aPx" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aPy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aPz" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aPA" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aPB" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/paper/guides/jobs/security/courtroom, +/obj/item/pen, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/courtroom) +"aPC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aPD" = ( +/obj/machinery/door/airlock/security/glass{ + name = "Equipment Room"; + req_access_txt = "1" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aPE" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/toy/talking/AI{ + name = "Nanotrasen-brand toy AI"; + pixel_y = 6 + }, +/obj/item/clothing/glasses/meson, +/obj/machinery/status_display{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"aPF" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/locker) +"aPG" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + sortType = 21 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aPH" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/security/courtroom) +"aPI" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aPJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=bar"; + location = "serv" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aPK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aPL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aPM" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/courtroom) +"aPN" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/space/nearstation) +"aPO" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + dir = 8 + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aPP" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aPQ" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aPR" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/airless, +/area/crew_quarters/fitness/cogpool) +"aPS" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aPT" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aPU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"aPV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"aPW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"aPX" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/storage/fancy/donut_box, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aPY" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aPZ" = ( +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"aQa" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"aQb" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aQc" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"aQd" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"aQe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aQf" = ( +/obj/structure/table, +/obj/structure/bedsheetbin, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"aQg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"aQh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden, +/turf/open/floor/carpet/royalblue, +/area/bridge) +"aQi" = ( +/obj/structure/table, +/obj/item/modular_computer/laptop/preset/civilian, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"aQj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"aQk" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aQl" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aQm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet/red, +/area/security/brig) +"aQn" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/courtroom) +"aQo" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/security/courtroom) +"aQp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"aQq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"aQr" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/space/nearstation) +"aQs" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aQt" = ( +/obj/machinery/pool/controller, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aQu" = ( +/obj/structure/table, +/obj/item/toy/beach_ball{ + pixel_y = 12 + }, +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aQv" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"aQw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aQx" = ( +/obj/machinery/camera{ + c_tag = "Engine Room - Port Bow" + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"aQy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/chapel/main) +"aQz" = ( +/obj/structure/chair/comfy/teal, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aQA" = ( +/obj/structure/chair/stool, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"aQB" = ( +/obj/structure/table, +/obj/item/clothing/glasses/sunglasses{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aQC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"aQD" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aQE" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aQF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/circuit/green, +/area/crew_quarters/cryopod) +"aQG" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/plating, +/area/maintenance/port/central) +"aQH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aQI" = ( +/obj/structure/chair/comfy/teal, +/obj/machinery/light{ + dir = 1; + light_color = "#cee5d2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aQJ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"aQK" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/port/central) +"aQL" = ( +/turf/closed/wall, +/area/maintenance/port/central) +"aQM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aQN" = ( +/obj/structure/chair/comfy/brown, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet/royalblue, +/area/bridge) +"aQO" = ( +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aQP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-02" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aQQ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aQR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aQS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aQT" = ( +/obj/machinery/door/airlock/engineering{ + name = "Thermo-Electric Generator"; + req_one_access_txt = "10;24" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aQU" = ( +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"aQV" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"aQW" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain) +"aQX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aQY" = ( +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted, +/obj/structure/table, +/obj/item/toy/beach_ball/holoball/dodgeball, +/obj/item/toy/beach_ball/holoball/dodgeball, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"aQZ" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Service Hallway"; + req_one_access_txt = "25;26;28;35" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"aRa" = ( +/obj/structure/table/wood, +/obj/item/lighter, +/obj/item/multitool{ + pixel_x = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet/royalblue, +/area/bridge) +"aRb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/primary/central) +"aRc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/fitness/cogpool) +"aRd" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aRe" = ( +/obj/structure/table/wood, +/obj/item/storage/secure/briefcase, +/obj/item/assembly/flash, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/carpet/royalblue, +/area/bridge) +"aRf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aRg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aRh" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aRi" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aRj" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = 26 + }, +/obj/machinery/sleep_console{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"aRk" = ( +/obj/structure/disposalpipe/junction/yjunction, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aRl" = ( +/obj/structure/table/wood, +/obj/item/restraints/handcuffs, +/obj/item/laser_pointer/blue, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet/royalblue, +/area/bridge) +"aRm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aRn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aRo" = ( +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"aRp" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aRq" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aRr" = ( +/mob/living/simple_animal/chicken{ + name = "Kentucky"; + real_name = "Kentucky" + }, +/turf/open/floor/plating/asteroid, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"aRs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aRt" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aRu" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/space/basic, +/area/space/nearstation) +"aRv" = ( +/obj/structure/lattice, +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; + pixel_x = -32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"aRw" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"aRx" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"aRy" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"aRz" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"aRA" = ( +/obj/structure/table/optable, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/reagent_containers/blood/random, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"aRB" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aRC" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"aRD" = ( +/turf/closed/wall/r_wall/rust, +/area/engine/gravity_generator) +"aRE" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"aRF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/engine/storage_shared{ + name = "Electrical Substation" + }) +"aRG" = ( +/obj/machinery/power/generator, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aRH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/blobstart, +/obj/machinery/camera{ + c_tag = "Central Port Maintenance - Starboard"; + dir = 8; + pixel_y = -22 + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"aRI" = ( +/obj/structure/rack, +/obj/item/extinguisher, +/obj/item/crowbar, +/turf/open/floor/plating, +/area/maintenance/port/central) +"aRJ" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"aRK" = ( +/obj/structure/sign/departments/holy{ + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aRL" = ( +/mob/living/simple_animal/crab/kreb, +/turf/open/floor/plating/asteroid, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"aRM" = ( +/turf/open/floor/carpet, +/area/crew_quarters/bar) +"aRN" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aRO" = ( +/obj/structure/disposalpipe/junction/yjunction, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aRP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aRQ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aRR" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"aRS" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aRT" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aRU" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/main) +"aRV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"aRW" = ( +/turf/open/floor/plating, +/area/maintenance/port/central) +"aRX" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/space/basic, +/area/space/nearstation) +"aRY" = ( +/turf/closed/wall/r_wall, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"aRZ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/space/basic, +/area/space/nearstation) +"aSa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aSb" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aSc" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"aSd" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"aSe" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Chapel" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/chapel/main) +"aSf" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aSg" = ( +/obj/machinery/power/apc{ + name = "Security Maintainance APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/security) +"aSh" = ( +/obj/structure/table, +/obj/item/storage/fancy/donut_box, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet/red, +/area/security/brig) +"aSi" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aSj" = ( +/obj/structure/target_stake, +/obj/item/target/syndicate, +/turf/open/floor/plasteel, +/area/science/circuit) +"aSk" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aSl" = ( +/obj/machinery/computer/teleporter{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"aSm" = ( +/obj/machinery/teleport/station, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"aSn" = ( +/obj/machinery/teleport/hub, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"aSo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aSp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aSq" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space/basic, +/area/space/nearstation) +"aSr" = ( +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"aSs" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#d1dfff" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/camera{ + c_tag = "Bridge Access"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/bridge) +"aSt" = ( +/turf/closed/wall/r_wall, +/area/maintenance/department/eva) +"aSu" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/space/basic, +/area/space/nearstation) +"aSv" = ( +/turf/closed/wall, +/area/space/nearstation) +"aSw" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"aSx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aSy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/space/basic, +/area/space/nearstation) +"aSz" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aSA" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"aSB" = ( +/obj/machinery/door/airlock/command{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aSC" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"aSD" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aSE" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aSF" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/surgical_drapes, +/obj/item/scalpel, +/obj/item/circular_saw{ + pixel_y = 16 + }, +/obj/item/hemostat, +/obj/item/retractor, +/obj/item/surgicaldrill, +/obj/item/cautery, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"aSG" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"aSH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"aSI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aSJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Security Office"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/main) +"aSK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"aSL" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"aSM" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/space/basic, +/area/space/nearstation) +"aSN" = ( +/obj/structure/table, +/obj/machinery/computer/secure_data/laptop{ + dir = 8; + pixel_x = -2; + pixel_y = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/carpet/red, +/area/security/brig) +"aSO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aSP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aSQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aSR" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/tools) +"aSS" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "Chapel" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aST" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plating, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"aSU" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_x = -26 + }, +/obj/machinery/requests_console{ + department = "Bar"; + departmentType = 2; + name = "Bar RC"; + pixel_y = -30 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"aSV" = ( +/obj/item/toy/talking/AI, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/hallway/primary/central) +"aSW" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aSX" = ( +/obj/machinery/washing_machine, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"aSY" = ( +/obj/machinery/vending/medical, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"aSZ" = ( +/obj/structure/chair/stool, +/obj/machinery/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"aTa" = ( +/obj/structure/window/plasma/reinforced{ + dir = 4 + }, +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/prison) +"aTb" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Central Hall - Starboard"; + pixel_x = 22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aTc" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/components/binary/valve/digital/on, +/turf/open/floor/plating, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"aTd" = ( +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES" + }, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"aTe" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aTf" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aTg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/security/brig) +"aTh" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external/glass{ + name = "Telecommunications External Access"; + req_access_txt = "61" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"aTi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aTj" = ( +/obj/machinery/pool/filter{ + pixel_y = 16 + }, +/turf/open/pool, +/area/crew_quarters/fitness/cogpool) +"aTk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"aTl" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"aTm" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"aTn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/department/eva"; + dir = 8; + name = "EVA Maintenance APC"; + pixel_x = -24 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aTo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"aTp" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aTq" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"aTr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"aTs" = ( +/turf/closed/wall, +/area/maintenance/department/eva) +"aTt" = ( +/obj/structure/closet/secure_closet/detective, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aTu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aTv" = ( +/turf/open/pool, +/area/crew_quarters/fitness/cogpool) +"aTw" = ( +/obj/structure/pool/ladder{ + dir = 2; + pixel_y = 24 + }, +/turf/open/pool, +/area/crew_quarters/fitness/cogpool) +"aTx" = ( +/obj/structure/lattice, +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; + pixel_y = -32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"aTy" = ( +/obj/structure/lattice/catwalk, +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; + pixel_y = -32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"aTz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aTA" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aTB" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel{ + icon_state = "chapel" + }, +/area/chapel/main) +"aTC" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aTD" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aTE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"aTF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/carpet/red, +/area/security/brig) +"aTG" = ( +/turf/closed/wall, +/area/router/public) +"aTH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"aTI" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Public Router" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/router/public) +"aTJ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aTK" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Public Router" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/router/public) +"aTL" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Cryogenics"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/circuit/green, +/area/crew_quarters/cryopod) +"aTM" = ( +/turf/closed/wall/r_wall, +/area/router/public) +"aTN" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_x = -26 + }, +/obj/item/kirbyplants{ + icon_state = "plant-14" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aTO" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aTP" = ( +/obj/machinery/status_display/ai, +/turf/closed/wall/r_wall, +/area/security/courtroom) +"aTQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Thermo-Electric Generator" + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aTR" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/stamp, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/red, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet/red, +/area/security/brig) +"aTS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"aTT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"aTU" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aTV" = ( +/turf/closed/wall, +/area/gateway) +"aTW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"aTX" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"aTY" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aTZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4; + name = "hot loop to space" + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"aUa" = ( +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aUb" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"aUc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"aUd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aUe" = ( +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aUf" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"aUg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aUh" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aUi" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/gateway) +"aUj" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/item/destTagger, +/obj/machinery/requests_console{ + department = "Public Router"; + name = "Public Router RC"; + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/router/public) +"aUk" = ( +/turf/closed/wall/r_wall, +/area/gateway) +"aUl" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/router/public) +"aUm" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/router/public) +"aUn" = ( +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/computer/cargo/request, +/turf/open/floor/plasteel, +/area/router/public) +"aUo" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aUp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/closet/crate/science, +/turf/open/floor/plasteel, +/area/gateway) +"aUq" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/lounge/jazz) +"aUr" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 10 + }, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"aUs" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"aUt" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"aUu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/gateway) +"aUv" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/carpet/red, +/area/security/brig) +"aUw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Jazz Lounge" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/lounge/jazz) +"aUx" = ( +/obj/machinery/door/window/northright{ + name = "Game Room" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"aUy" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/official/do_not_question{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/security/prison) +"aUz" = ( +/obj/machinery/computer/telecomms/server{ + dir = 4; + network = "tcommsat" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/bridge) +"aUA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"aUB" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp, +/turf/open/floor/carpet/green, +/area/crew_quarters/heads/hop) +"aUC" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aUD" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/courtroom) +"aUE" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/courtroom) +"aUF" = ( +/obj/machinery/computer/bounty{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/crew_quarters/heads/hop) +"aUG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aUH" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/central) +"aUI" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"aUJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aUK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"aUL" = ( +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/courtroom) +"aUM" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/disposalpipe/junction, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aUN" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aUO" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/teleporter"; + dir = 4; + name = "Teleporter Room APC"; + pixel_x = 26 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"aUP" = ( +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aUQ" = ( +/obj/structure/table, +/obj/item/modular_computer/laptop/preset/civilian, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aUR" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 8; + icon_state = "intact" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aUS" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"aUT" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aUU" = ( +/obj/machinery/pool/drain, +/turf/open/pool, +/area/crew_quarters/fitness/cogpool) +"aUV" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aUW" = ( +/obj/structure/pool/Lboard, +/turf/open/pool, +/area/crew_quarters/fitness/cogpool) +"aUX" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/maintenance/port/central) +"aUY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"aUZ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"aVa" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aVb" = ( +/obj/structure/pool/Rboard, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aVc" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red, +/obj/item/kirbyplants{ + icon_state = "applebush" + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aVd" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aVe" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/port/central) +"aVf" = ( +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aVg" = ( +/obj/machinery/computer/cryopod{ + pixel_y = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/circuit/green, +/area/crew_quarters/cryopod) +"aVh" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/gateway) +"aVi" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/router/public) +"aVj" = ( +/obj/machinery/vending/cola/random, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/courtroom) +"aVk" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/gateway) +"aVl" = ( +/obj/machinery/vending/snack/random, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/courtroom) +"aVm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aVn" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/router/public) +"aVo" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/router/public) +"aVp" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (Common)"; + pixel_x = 28 + }, +/obj/machinery/camera{ + c_tag = "Public Router"; + dir = 8; + pixel_y = -22 + }, +/obj/machinery/button/massdriver{ + id = "public_out"; + pixel_x = 24; + pixel_y = -6 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "pubblock"; + name = "Router Access Control"; + pixel_x = 24; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/router/public) +"aVq" = ( +/obj/structure/table, +/turf/open/floor/plasteel/white, +/area/gateway) +"aVr" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/item/storage/box/cups, +/obj/structure/sign/poster/official/here_for_your_safety{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/security/main) +"aVs" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/lounge/jazz) +"aVt" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/space/basic, +/area/space/nearstation) +"aVu" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/courtroom) +"aVv" = ( +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aVw" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/security/brig) +"aVx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/lounge/jazz) +"aVy" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"aVz" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/carpet/red, +/area/security/brig) +"aVA" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/circuit/green, +/area/crew_quarters/cryopod) +"aVB" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering{ + name = "Engine Room" + }) +"aVC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/central) +"aVD" = ( +/obj/machinery/vending/clothing, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"aVE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Dormitory Toilets" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"aVF" = ( +/turf/open/floor/plasteel/white, +/area/science/circuit) +"aVG" = ( +/obj/machinery/ore_silo, +/obj/effect/turf_decal/bot_white, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/nuke_storage"; + dir = 4; + name = "Vault APC"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aVH" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/hallway/secondary/civilian"; + dir = 8; + name = "Civilian Wing Hallway APC"; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aVI" = ( +/obj/structure/table, +/obj/item/storage/box/zipties, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/carpet/red, +/area/security/brig) +"aVJ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/courtroom) +"aVK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/space/nearstation) +"aVL" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/courtroom) +"aVM" = ( +/obj/structure/chair/stool, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/eva) +"aVN" = ( +/obj/machinery/vending, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aVO" = ( +/obj/structure/table, +/obj/item/tape, +/obj/item/taperecorder{ + pixel_x = -4 + }, +/obj/item/radio/off, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/carpet/red, +/area/security/brig) +"aVP" = ( +/obj/structure/window/reinforced, +/obj/structure/displaycase/captain, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/captain) +"aVQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/security) +"aVR" = ( +/obj/structure/window/reinforced, +/obj/structure/filingcabinet, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/captain) +"aVS" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/port/central) +"aVT" = ( +/obj/structure/lattice, +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: WASTE EJECTION"; + pixel_x = -32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"aVU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aVV" = ( +/obj/structure/bed, +/obj/item/bedsheet/red, +/obj/structure/cable{ + icon_state = "2-8" + }, +/mob/living/simple_animal/bot/secbot/beepsky{ + desc = "It's Officer Beepsky! Powered by a potato and a shot of whiskey, and with a sturdier reinforced chassis, too. "; + health = 45; + maxHealth = 45; + name = "Officer Beepsky" + }, +/turf/open/floor/plating, +/area/maintenance/department/security) +"aVW" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/turf/open/floor/plasteel, +/area/gateway) +"aVX" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/gloves/color/latex, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"aVY" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"aVZ" = ( +/obj/machinery/computer/security/wooden_tv, +/turf/open/floor/plating, +/area/maintenance/department/security) +"aWa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/department/security) +"aWb" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"aWc" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"aWd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aWe" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/carpet/red, +/area/security/brig) +"aWf" = ( +/obj/effect/turf_decal/tile/red, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aWg" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/lawoffice) +"aWh" = ( +/obj/effect/landmark/start/lawyer, +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/lawoffice) +"aWi" = ( +/obj/machinery/cryopod{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/disposal"; + dir = 8; + name = "Cryogenics APC"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/circuit/green, +/area/crew_quarters/cryopod) +"aWj" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"aWk" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/modular_computer/laptop/preset/civilian, +/turf/open/floor/plasteel/dark/side, +/area/security/courtroom) +"aWl" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/photocopier, +/turf/open/floor/plasteel/dark/side, +/area/security/courtroom) +"aWm" = ( +/turf/open/floor/plasteel, +/area/gateway) +"aWn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aWo" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/cryopod) +"aWp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/computer/gateway_control{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/gateway) +"aWq" = ( +/obj/structure/rack, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/head/hardhat/red{ + pixel_y = 6 + }, +/obj/item/clothing/mask/gas, +/obj/item/extinguisher, +/obj/item/crowbar, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aWr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Central Maintenance"; + req_one_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/hallway/primary/port/fore) +"aWs" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aWt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/maintenance/central) +"aWu" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"aWv" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aWw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aWx" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/security/detectives_office) +"aWy" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aWz" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "Power Monitoring"; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/maintenance/central) +"aWA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/maintenance/central) +"aWB" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aWC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Defendent's Chair"; + req_one_access_txt = "63" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aWD" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/item/cigbutt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/router/public) +"aWE" = ( +/obj/structure/sign/warning{ + name = "\improper WARNING: MOVING MACHINERY" + }, +/turf/closed/wall/r_wall, +/area/janitor) +"aWF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/janitor) +"aWG" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/clothing/shoes/magboots, +/turf/open/floor/plasteel/checker, +/area/ai_monitored/storage/eva) +"aWH" = ( +/obj/machinery/disposal/bin{ + name = "Corpse Delivery" + }, +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/delivery/red, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"aWI" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/checker, +/area/ai_monitored/storage/eva) +"aWJ" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"aWK" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/item/storage/box/lights/mixed, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aWL" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/conveyor/auto{ + dir = 1; + id = "public" + }, +/turf/open/floor/plating, +/area/router/public) +"aWM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aWN" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/conveyor/auto{ + id = "public" + }, +/turf/open/floor/plating, +/area/router/public) +"aWO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/ai_monitored/storage/eva) +"aWP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/checker, +/area/ai_monitored/storage/eva) +"aWQ" = ( +/obj/structure/closet/crate/rcd, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/checker, +/area/ai_monitored/storage/eva) +"aWR" = ( +/obj/structure/lattice, +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; + pixel_x = 32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"aWS" = ( +/obj/structure/table, +/obj/item/storage/box/flashes{ + pixel_x = 8 + }, +/obj/item/storage/box/handcuffs{ + pixel_x = -8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/carpet/red, +/area/security/brig) +"aWT" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/window/reinforced/spawner/west, +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/router/public"; + dir = 4; + name = "Public Router APC"; + pixel_x = 24 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/router/public) +"aWU" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/lounge/jazz) +"aWV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/engine/engineering{ + name = "Engine Room" + }) +"aWW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"aWX" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/medical"; + dir = 8; + name = "Medical Booth APC"; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aWY" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom{ + frequency = 1359; + name = "Station Intercom (Security)"; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aWZ" = ( +/turf/closed/wall/r_wall, +/area/ai_monitored/nuke_storage) +"aXa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"aXb" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/central) +"aXc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXd" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 9 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/central) +"aXe" = ( +/obj/machinery/bookbinder, +/turf/open/floor/wood, +/area/library) +"aXf" = ( +/obj/machinery/photocopier, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/item/paper/fluff/cogstation/eva, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"aXg" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXh" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 6 + }, +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/engine/engineering{ + name = "Engine Room" + }) +"aXi" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aXj" = ( +/obj/structure/transit_tube/station/reverse, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Transit Tube Access"; + pixel_x = 22 + }, +/obj/structure/transit_tube_pod{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aXk" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXl" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXm" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"aXn" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aXo" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aXp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/reagent_dispensers/foamtank, +/turf/open/floor/plasteel, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"aXq" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aXr" = ( +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aXs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"aXt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/securearea, +/turf/open/floor/plating, +/area/gateway) +"aXu" = ( +/turf/closed/wall, +/area/security/courtroom/jury) +"aXv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Bar" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"aXw" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/kirbyplants{ + icon_state = "plant-08" + }, +/turf/open/floor/plasteel/dark/side, +/area/security/courtroom) +"aXx" = ( +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"aXy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/ai_monitored/storage/eva) +"aXz" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/checker, +/area/ai_monitored/storage/eva) +"aXA" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/security/courtroom/jury) +"aXB" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aXC" = ( +/obj/machinery/computer/bank_machine, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aXD" = ( +/obj/effect/turf_decal/bot_white/right, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/structure/closet/crate/silvercrate, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aXE" = ( +/obj/effect/turf_decal/bot_white, +/obj/structure/closet/crate/goldcrate, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aXF" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + name = "gas to hot loop" + }, +/turf/open/floor/plasteel/dark, +/area/engine/teg_hot) +"aXG" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/security/courtroom) +"aXH" = ( +/obj/structure/sign/warning/securearea, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aXI" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aXJ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aXK" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aXL" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/paper/fluff/jobs/security/beepsky_mom, +/turf/open/floor/plating, +/area/maintenance/department/security) +"aXM" = ( +/turf/closed/wall, +/area/maintenance/department/security) +"aXN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/ai_monitored/storage/eva) +"aXO" = ( +/obj/structure/chair, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"aXP" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Pool Maintenance"; + req_one_access_txt = "12" + }, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/crew_quarters/fitness/cogpool) +"aXQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/medical{ + name = "Medical Booth" + }) +"aXR" = ( +/turf/closed/wall, +/area/security/courtroom) +"aXS" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet/royalblue, +/area/bridge) +"aXT" = ( +/obj/structure/chair/comfy/brown{ + buildstackamount = 0; + dir = 1 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet/royalblue, +/area/bridge) +"aXU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/checker, +/area/ai_monitored/storage/eva) +"aXV" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/assembly/timer{ + pixel_x = 6; + pixel_y = -2 + }, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/stack/cable_coil/random{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/multitool, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/checker, +/area/ai_monitored/storage/eva) +"aXW" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aXX" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aXY" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aXZ" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aYa" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"aYb" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aYc" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/library) +"aYd" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aYe" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aYf" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/turf/open/floor/plasteel/white, +/area/gateway) +"aYg" = ( +/obj/effect/turf_decal/bot_white/right, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aYh" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/item/radio/off, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"aYi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aYj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aYk" = ( +/turf/open/floor/circuit/green, +/area/ai_monitored/nuke_storage) +"aYl" = ( +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aYm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aYn" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/storage/box/smart_metal_foam, +/obj/item/wrench, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/radio/off, +/obj/item/assembly/prox_sensor, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aYo" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Security" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"aYp" = ( +/obj/structure/fans/tiny/invisible, +/turf/open/space/basic, +/area/space) +"aYq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/security) +"aYr" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access_txt = "1" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/security) +"aYs" = ( +/obj/structure/rack, +/obj/item/tank/jetpack/carbondioxide, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aYt" = ( +/turf/open/floor/plating, +/area/maintenance/department/security) +"aYu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/checker, +/area/ai_monitored/storage/eva) +"aYv" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/item/analyzer, +/obj/item/storage/toolbox/electrical, +/obj/item/gps, +/turf/open/floor/plasteel/checker, +/area/ai_monitored/storage/eva) +"aYw" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aYx" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aYy" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/item/kirbyplants{ + icon_state = "plant-22" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark/side, +/area/bridge) +"aYz" = ( +/obj/effect/turf_decal/bot_white, +/obj/effect/landmark/start/ai/secondary, +/obj/machinery/camera{ + c_tag = "Vault"; + dir = 4; + network = list("vault") + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aYA" = ( +/obj/machinery/nuclearbomb/selfdestruct, +/obj/effect/turf_decal/box/white, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aYB" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aYC" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/security/detectives_office"; + dir = 1; + name = "Detective's Office APC"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"aYD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aYE" = ( +/obj/structure/closet/crate/trashcart, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aYF" = ( +/obj/structure/table/wood, +/obj/item/storage/box/evidence, +/obj/item/hand_labeler, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"aYG" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"aYH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aYI" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/photocopier, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/obj/item/paper/fluff/cogstation/secsolars, +/turf/open/floor/plasteel, +/area/security/main) +"aYJ" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aYK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Civilian Wing Hallway" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"aYL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"aYM" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aYN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/checker, +/area/ai_monitored/storage/eva) +"aYO" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"aYP" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aYQ" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aYR" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"aYS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/security/brig) +"aYT" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/customs) +"aYU" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"aYV" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"aYW" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/northright{ + name = "Customs Desk"; + req_access_txt = "57" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "HoPFore"; + name = "HoP Fore Desk Shutters" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"aYX" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/flashlight/lamp, +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "HoPFore"; + name = "HoP Fore Desk Shutters" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"aYY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Port Central Maintenance"; + req_one_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/security/courtroom) +"aYZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"aZa" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aZb" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/eva) +"aZc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aZd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "E.V.A. Maintenance"; + req_access_txt = "18" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"aZe" = ( +/obj/structure/sign/warning/biohazard{ + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"aZf" = ( +/obj/effect/turf_decal/bot_white/left, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aZg" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"aZh" = ( +/obj/structure/closet/crate, +/obj/machinery/light, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/window/reinforced/spawner/east, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/router/public) +"aZi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"aZj" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/caution{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/caution{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/caution{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/caution{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/extinguisher{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/extinguisher{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aZk" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/mass_driver{ + id = "public_out"; + name = "Router Driver" + }, +/turf/open/floor/plating, +/area/router/public) +"aZl" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/window/reinforced/spawner/west, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/router/public) +"aZm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/lounge/jazz) +"aZn" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera/motion{ + c_tag = "EVA"; + dir = 8; + pixel_y = -22 + }, +/turf/open/floor/plasteel/checker, +/area/ai_monitored/storage/eva) +"aZo" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"aZp" = ( +/obj/structure/lattice, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"aZq" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/bridge) +"aZr" = ( +/obj/structure/filingcabinet, +/obj/item/folder/documents, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aZs" = ( +/obj/structure/safe, +/obj/item/reagent_containers/food/drinks/bottle/vodka/badminka, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/lazarus_injector, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/item/stack/spacecash/c1000, +/obj/effect/turf_decal/bot_white/left, +/obj/item/stack/sheet/mineral/diamond, +/obj/item/clothing/under/costume/soviet, +/obj/item/clothing/suit/armor/vest/russian_coat, +/obj/item/clothing/head/helmet/rus_helmet, +/obj/machinery/light, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aZt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"aZu" = ( +/obj/machinery/blackbox_recorder, +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"aZv" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"aZw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/weldingtool, +/obj/item/flashlight, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aZx" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/checker, +/area/ai_monitored/storage/eva) +"aZy" = ( +/turf/closed/wall, +/area/lawoffice) +"aZz" = ( +/obj/structure/lattice, +/obj/machinery/camera{ + c_tag = "Routing Depot - Fore Exterior"; + dir = 4 + }, +/turf/open/space/basic, +/area/maintenance/department/eva) +"aZA" = ( +/obj/machinery/computer/card{ + dir = 8 + }, +/obj/item/paper/guides/cogstation/job_changes, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"aZB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"aZC" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/window/reinforced/spawner/north, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"aZD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/central"; + dir = 1; + name = "Chapel Maintenance APC"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"aZE" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/hallway/primary/central"; + dir = 8; + name = "Central Primary Hallway APC"; + pixel_x = -26 + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"aZF" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aZG" = ( +/obj/structure/lattice, +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; + pixel_y = 32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"aZH" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aZI" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/door/window/northleft{ + name = "Law Office Counter"; + req_access_txt = "38" + }, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"aZJ" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"aZK" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/storage/toolbox/electrical, +/obj/item/weldingtool, +/obj/item/multitool{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/assembly/signaler{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"aZL" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/poster/official/cohiba_robusto_ad{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"aZM" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/carpet, +/area/security/courtroom) +"aZN" = ( +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"aZO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/security) +"aZP" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/item/aiModule/reset/purge{ + pixel_y = 6 + }, +/obj/item/aiModule/reset{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/aiModule/core/full/custom{ + pixel_x = -4 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"aZQ" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/plasteel{ + pixel_x = 3; + pixel_y = -3 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"aZR" = ( +/turf/open/floor/plasteel/dark/corner, +/area/ai_monitored/storage/eva) +"aZS" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/ai_monitored/storage/eva) +"aZT" = ( +/obj/structure/closet/secure_closet/hos, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/item/storage/box/deputy, +/obj/item/paper/guides/cogstation/letter_hos, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"aZU" = ( +/obj/structure/chair, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom/jury) +"aZV" = ( +/obj/structure/chair, +/turf/open/floor/plasteel/dark, +/area/security/courtroom/jury) +"aZW" = ( +/obj/structure/chair, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom/jury) +"aZX" = ( +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/security/courtroom/jury) +"aZY" = ( +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/courtroom/jury) +"aZZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/corner, +/area/ai_monitored/storage/eva) +"baa" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel/dark, +/area/security/courtroom/jury) +"bab" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/space/basic, +/area/space/nearstation) +"bac" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/obj/item/storage/toolbox/emergency, +/obj/item/stack/sheet/rglass, +/obj/item/stack/sheet/rglass, +/turf/open/floor/plasteel/checker, +/area/ai_monitored/storage/eva) +"bad" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/stripes/white/full, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"bae" = ( +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"baf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Plaza - Starboard"; + dir = 8; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bag" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/storage/belt/utility, +/turf/open/floor/plasteel/checker, +/area/ai_monitored/storage/eva) +"bah" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plating, +/area/lawoffice) +"bai" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baj" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/beaker/waterbottle, +/turf/open/floor/plasteel/dark, +/area/security/courtroom/jury) +"bak" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/lawoffice) +"bal" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"bam" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/turf/open/space/basic, +/area/space/nearstation) +"ban" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"bao" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/white/full, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"bap" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/gloves/color/black, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/obj/item/clothing/suit/hazardvest, +/turf/open/floor/plasteel, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"baq" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bar" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/crew_quarters/bar) +"bas" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/bar) +"bat" = ( +/obj/structure/chair/stool/bar, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/carpet, +/area/crew_quarters/bar) +"bau" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bav" = ( +/obj/structure/chair/sofa/right, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/item/clipboard, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/lawoffice) +"baw" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/lawoffice) +"bax" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"bay" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"baz" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/book/manual/wiki/security_space_law, +/obj/structure/window/reinforced/spawner/north, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"baA" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/item/folder/blue, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"baB" = ( +/obj/structure/rack, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/head/hardhat/red{ + pixel_y = 6 + }, +/obj/item/clothing/mask/gas, +/obj/item/tank/internals/air, +/obj/item/extinguisher, +/obj/item/crowbar, +/turf/open/floor/plating, +/area/maintenance/department/security) +"baC" = ( +/obj/machinery/vending/cart, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"baD" = ( +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"baE" = ( +/obj/structure/bookcase/random/reference, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"baF" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"baG" = ( +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"baH" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/item/tank/internals/air, +/obj/item/crowbar, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/security) +"baI" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baK" = ( +/obj/structure/table/reinforced, +/obj/machinery/light, +/obj/item/kitchen/fork, +/obj/item/reagent_containers/food/snacks/pastatomato, +/obj/machinery/newscaster/security_unit{ + pixel_y = -30 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"baL" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"baM" = ( +/obj/structure/rack, +/obj/item/clothing/mask/gas, +/obj/item/tank/internals/air, +/obj/item/crowbar/large, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/department/security) +"baN" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"baO" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"baP" = ( +/obj/structure/closet/secure_closet/captains, +/obj/item/reagent_containers/food/drinks/flask/gold, +/obj/item/clothing/under/rank/captain/suit, +/obj/item/clothing/under/rank/captain/suit/skirt, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/item/clothing/head/centhat{ + name = "\improper green captain's hat" + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/captain) +"baQ" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"baR" = ( +/obj/structure/chair/sofa/left, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/lawoffice) +"baS" = ( +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/lawoffice) +"baT" = ( +/obj/machinery/iv_drip, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"baU" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"baV" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"baW" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/aiModule/core/full/asimov{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/effect/spawner/lootdrop/aimodule_neutral{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/spawner/lootdrop/aimodule_harmless{ + pixel_y = 6 + }, +/obj/item/aiModule/core/freeformcore{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/aiModule/supplied/freeform{ + pixel_x = -2 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"baX" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/displaycase, +/turf/open/floor/wood, +/area/library) +"baY" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"baZ" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bba" = ( +/obj/effect/landmark/start/assistant, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/circuit/green, +/area/crew_quarters/cryopod) +"bbb" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/carpet/royalblue, +/area/bridge) +"bbc" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet/royalblue, +/area/bridge) +"bbd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bbe" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bbf" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hop) +"bbg" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bbh" = ( +/turf/closed/wall, +/area/hallway/primary/aft) +"bbi" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"bbj" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall/r_wall, +/area/teleporter) +"bbk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Telecomms Admin"; + departmentType = 5; + name = "Telecomms RC"; + pixel_y = 30 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"bbl" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bbm" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/lawyer, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"bbn" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bbo" = ( +/obj/structure/closet/crate, +/obj/item/book/manual/wiki/security_space_law, +/obj/item/book/manual/wiki/security_space_law, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"bbp" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/carpet, +/area/security/courtroom) +"bbq" = ( +/obj/effect/landmark/start/librarian, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/library) +"bbr" = ( +/obj/structure/filingcabinet/employment, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"bbs" = ( +/obj/structure/table/wood, +/obj/item/camera, +/obj/item/pen/red, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"bbt" = ( +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bbu" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plating, +/area/space/nearstation) +"bbv" = ( +/turf/open/space, +/area/space) +"bbw" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bbx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bby" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bbz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bbA" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bbB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bbC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bbD" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bbE" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bbF" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bbG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bbH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"bbI" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bbJ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bbK" = ( +/obj/machinery/light, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bbL" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bbM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"bbN" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bbO" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bbP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "HoP Office Maintenance"; + req_access_txt = "57" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/security/checkpoint/customs) +"bbQ" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/fitness/cogpool"; + dir = 4; + name = "Pool APC"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/central) +"bbR" = ( +/obj/structure/closet/crate/hydroponics, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/item/reagent_containers/food/snacks/grown/wheat, +/obj/item/reagent_containers/food/snacks/grown/corn, +/obj/item/reagent_containers/food/snacks/grown/cocoapod, +/obj/item/reagent_containers/food/snacks/grown/chili, +/obj/item/reagent_containers/food/snacks/grown/soybeans, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/item/reagent_containers/food/snacks/grown/cherries, +/obj/structure/sign/poster/contraband/have_a_puff{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bbS" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/gateway) +"bbT" = ( +/turf/closed/wall/r_wall, +/area/quartermaster/sorting) +"bbU" = ( +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bbV" = ( +/turf/closed/wall/r_wall, +/area/quartermaster/warehouse) +"bbW" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/noticeboard{ + dir = 4; + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bbX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bbY" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bbZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bca" = ( +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bcb" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bcc" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"bcd" = ( +/obj/item/kirbyplants{ + icon_state = "plant-14" + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"bce" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor/auto{ + dir = 1; + id = "public" + }, +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor/preopen{ + id = "cargoblock"; + name = "Public Router" + }, +/turf/open/floor/plating, +/area/router/public) +"bcf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bcg" = ( +/obj/structure/plasticflaps, +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor/preopen{ + id = "cargoblock"; + name = "Public Router" + }, +/turf/open/floor/plating, +/area/router/public) +"bch" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"bci" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bcj" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor/auto{ + id = "cargo" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bck" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bcl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bcm" = ( +/obj/machinery/computer/cargo/request, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bcn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bco" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/morgue{ + name = "Confession Booth (Chaplain)"; + req_access_txt = "22" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"bcp" = ( +/obj/machinery/libraryscanner, +/obj/machinery/light, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/library) +"bcq" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"bcr" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom/jury) +"bcs" = ( +/obj/machinery/pdapainter, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"bct" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom/jury) +"bcu" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/camera{ + c_tag = "Aft Maintenance - Air Hookup" + }, +/turf/open/floor/plating, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"bcv" = ( +/obj/machinery/atmospherics/components/binary/valve/digital/on, +/turf/open/floor/plating, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"bcw" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/mixing) +"bcx" = ( +/obj/structure/chair/office/dark, +/obj/effect/landmark/start/head_of_personnel, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"bcy" = ( +/turf/closed/wall/r_wall, +/area/science/mixing) +"bcz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"bcA" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bcB" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/extinguisher, +/turf/open/floor/plasteel, +/area/gateway) +"bcC" = ( +/obj/machinery/power/apc{ + name = "Research Division Storage APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/gateway) +"bcD" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/plating, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"bcE" = ( +/obj/machinery/atmospherics/components/binary/valve/digital/on{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"bcF" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"bcG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bcH" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark/side, +/area/security/courtroom) +"bcI" = ( +/turf/closed/wall/r_wall, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"bcJ" = ( +/obj/machinery/button/door{ + id = "HoPAft"; + name = "Aft Shutters"; + pixel_x = -24; + pixel_y = -24; + req_access_txt = "57" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"bcK" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/public/glass{ + name = "Cryogenics" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/circuit/green, +/area/crew_quarters/cryopod) +"bcL" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom/jury) +"bcM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"bcN" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=bridge2"; + location = "court" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bcO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"bcP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom/jury) +"bcQ" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bcR" = ( +/turf/closed/wall, +/area/hallway/primary/central) +"bcS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Courtroom" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bcT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bcU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Jury Room Maintainance"; + req_one_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/security/courtroom/jury) +"bcV" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bcW" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/requests_console{ + department = "Bar"; + departmentType = 2; + name = "Bar RC"; + pixel_y = -30 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bcX" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/hallway/primary/central) +"bcY" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"bcZ" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"bda" = ( +/obj/structure/table, +/obj/item/hand_tele, +/obj/machinery/camera{ + c_tag = "Teleporter Room"; + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"bdb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/central) +"bdc" = ( +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"bdd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Pool"; + dir = 1 + }, +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/toy/poolnoodle/red, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"bde" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"bdf" = ( +/turf/open/floor/plasteel, +/area/science/mixing) +"bdg" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bdh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/toy/poolnoodle/blue, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"bdi" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"bdj" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/central) +"bdk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"bdl" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/closet/athletic_mixed, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/toy/poolnoodle/yellow, +/turf/open/floor/plasteel/white, +/area/crew_quarters/fitness/cogpool) +"bdm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"bdn" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"bdo" = ( +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 17 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"bdp" = ( +/obj/structure/chair/stool, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"bdq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"bdr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/central) +"bds" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/chaplain, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"bdt" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bdu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bdv" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bdw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/spawner/structure/window/reinforced/tinted, +/turf/open/floor/plating, +/area/chapel/office) +"bdx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bdy" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/hallway/primary/central) +"bdz" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bdA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"bdB" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb, +/obj/item/toy/eightball, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"bdC" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bdD" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bdE" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 8; + icon_state = "intact" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bdF" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#cee5d2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bdG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bdH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bdI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bdJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Telecommunications Control Room Maintenance"; + req_access_txt = "61" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/bridge) +"bdK" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bdL" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"bdM" = ( +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bdN" = ( +/obj/machinery/vending/snack/random, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Pool External Maintenance"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/crew_quarters/fitness/cogpool) +"bdP" = ( +/turf/closed/wall/mineral/wood, +/area/crew_quarters/fitness/cogpool) +"bdQ" = ( +/obj/machinery/door/airlock/command{ + name = "Bridge"; + req_access_txt = "19" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bdR" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bdS" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/bridge) +"bdT" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table/reinforced, +/obj/item/storage/toolbox/emergency, +/obj/item/hand_labeler, +/obj/item/hand_labeler, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bdU" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bdV" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bdW" = ( +/obj/structure/mineral_door/woodrustic{ + name = "Sauna" + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness/cogpool) +"bdX" = ( +/obj/structure/table/wood, +/obj/item/storage/box/donkpockets, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"bdY" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/mineral/wood, +/area/crew_quarters/fitness/cogpool) +"bdZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/quartermaster/sorting) +"bea" = ( +/obj/structure/disposalpipe/junction, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/sign/poster/official/report_crimes{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"beb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/security/courtroom/jury) +"bec" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bed" = ( +/obj/machinery/suit_storage_unit/rd, +/turf/open/floor/plasteel, +/area/science/mixing) +"bee" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bef" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"beg" = ( +/obj/effect/turf_decal/bot_white, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"beh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"bei" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"bej" = ( +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bek" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/science/mixing) +"bel" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bem" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4; + name = "hot loop to generator" + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"ben" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"beo" = ( +/turf/open/floor/plasteel/white, +/area/gateway) +"bep" = ( +/obj/structure/table/wood, +/obj/item/tape, +/obj/item/taperecorder{ + pixel_x = -4 + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/heads/hor"; + dir = 8; + name = "Research Director's Office APC"; + pixel_x = -24 + }, +/obj/item/reagent_containers/food/snacks/muffin/berry, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"beq" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4; + name = "generator to cold loop" + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"ber" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bes" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"bet" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"beu" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"bev" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (Common)"; + pixel_x = 28 + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"bew" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"bex" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bey" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 8 + }, +/turf/closed/wall/r_wall/rust, +/area/space/nearstation) +"bez" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/office) +"beA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall, +/area/chapel/main) +"beB" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"beC" = ( +/obj/structure/rack, +/obj/item/storage/toolbox/mechanical, +/obj/item/radio/off, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"beD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"beE" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/fans/tiny, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/maintenance/disposal) +"beF" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"beG" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/landmark/start/lawyer, +/obj/structure/chair/stool, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"beH" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"beI" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4 + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"beJ" = ( +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"beK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"beL" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"beM" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"beN" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"beO" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom/jury) +"beP" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/security/courtroom/jury) +"beQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall, +/area/security/detectives_office) +"beR" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"beS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/dark, +/area/security/courtroom/jury) +"beT" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"beU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"beV" = ( +/obj/machinery/button/door{ + id = "executionspaceblast"; + name = "Vent to Space"; + pixel_x = 25; + pixel_y = -5; + req_access_txt = "7" + }, +/obj/machinery/button/ignition{ + id = "executionburn"; + pixel_x = 24; + pixel_y = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"beW" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"beX" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (Common)"; + pixel_x = 28 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"beY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"beZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bfa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bfb" = ( +/obj/machinery/computer/card/minor/qm, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/keycard_auth{ + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bfc" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bfd" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfe" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bff" = ( +/turf/closed/wall/r_wall, +/area/quartermaster/qm) +"bfg" = ( +/obj/structure/closet, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom/jury) +"bfh" = ( +/turf/closed/wall/r_wall, +/area/science/server{ + name = "Computer Core" + }) +"bfi" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfj" = ( +/mob/living/simple_animal/butterfly, +/turf/open/floor/plating/asteroid, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"bfk" = ( +/mob/living/simple_animal/kiwi, +/turf/open/floor/plating/asteroid, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"bfl" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bfm" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/security) +"bfn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4; + name = "cold loop to space" + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"bfo" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"bfp" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber{ + dir = 4 + }, +/obj/machinery/sparker/toxmix{ + pixel_x = 25 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"bfq" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 5; + id = "laborcamp_home"; + name = "fore bay 1"; + roundstart_template = /datum/map_template/shuttle/labour/cog; + width = 9 + }, +/turf/open/space/basic, +/area/space) +"bfr" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#c1caff" + }, +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bfs" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "QM #1" + }, +/mob/living/simple_animal/bot/mulebot{ + beacon_freq = 1400; + home_destination = "QM #1"; + suffix = "#1" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bft" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/hallway/primary/central) +"bfu" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/gateway) +"bfv" = ( +/turf/open/floor/plating, +/area/crew_quarters/fitness/cogpool) +"bfw" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (Common)"; + pixel_x = 28 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bfx" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/gateway) +"bfy" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/components/unary/thermomachine/heater/on, +/turf/open/floor/plating, +/area/crew_quarters/fitness/cogpool) +"bfz" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"bfA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Bridge Access"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bfB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Chapel Morgue"; + req_access_txt = "22;27" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"bfC" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/qm) +"bfD" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bfE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/conveyor{ + dir = 5; + id = "mail" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bfF" = ( +/obj/machinery/space_heater, +/obj/structure/sign/poster/official/no_erp{ + pixel_y = 32 + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness/cogpool) +"bfG" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "EngiCargoConveyer" + }, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bfH" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/machinery/button/crematorium{ + id = "foo"; + pixel_x = 8; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"bfI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/highcap/fifteen_k{ + areastring = "/area/engine/storage_shared"; + dir = 1; + name = "Electrical Substation APC"; + pixel_y = 26 + }, +/turf/open/floor/plating, +/area/engine/storage_shared{ + name = "Electrical Substation" + }) +"bfJ" = ( +/turf/open/floor/wood, +/area/crew_quarters/fitness/cogpool) +"bfK" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/candle_box{ + pixel_x = -11; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/bottle/holywater, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/item/paper/fluff/cogstation/letter_chap{ + pixel_x = 10; + pixel_y = 2 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/office) +"bfL" = ( +/obj/structure/table/wood, +/obj/item/modular_computer/laptop/preset/civilian, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/office) +"bfM" = ( +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/obj/structure/bedsheetbin/towel, +/turf/open/floor/wood, +/area/crew_quarters/fitness/cogpool) +"bfN" = ( +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bfO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Jazz Lounge" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/lounge/jazz) +"bfP" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bfQ" = ( +/obj/machinery/light/small, +/obj/item/candle, +/obj/item/trash/candle, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"bfR" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bfS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"bfT" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/chapel/office) +"bfU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/conveyor{ + dir = 4; + id = "EngiCargoConveyer" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bfV" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"bfW" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bfX" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = 26 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bfY" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=4"; + dir = 4; + freq = 1400; + location = "QM #2" + }, +/mob/living/simple_animal/bot/mulebot{ + home_destination = "QM #2"; + suffix = "#2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bfZ" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bga" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bgb" = ( +/obj/structure/disposalpipe/sorting/mail{ + sortType = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"bgc" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/sign/directions/command{ + dir = 8; + pixel_x = -32; + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 8 + }, +/area/hallway/primary/central) +"bgd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"bge" = ( +/turf/closed/wall/r_wall, +/area/storage/primary) +"bgf" = ( +/turf/closed/wall, +/area/quartermaster/warehouse) +"bgg" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bgh" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/violet/hidden{ + dir = 6 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bgi" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space) +"bgj" = ( +/obj/structure/table, +/obj/item/weldingtool/mini, +/obj/item/light/tube, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bgk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "mail" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bgl" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/multitool, +/turf/open/floor/plasteel, +/area/storage/primary) +"bgm" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/security/courtroom/jury) +"bgn" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"bgo" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/chapel/main) +"bgp" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"bgq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bgr" = ( +/obj/structure/table/wood, +/obj/item/clothing/head/helmet/skull, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"bgs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bgt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bgu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgv" = ( +/obj/effect/landmark/xeno_spawn, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bgw" = ( +/turf/open/floor/engine, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"bgx" = ( +/obj/structure/table/glass, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgy" = ( +/obj/structure/closet, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/security/courtroom/jury"; + dir = 4; + name = "Jury Room APC"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/security/courtroom/jury) +"bgz" = ( +/obj/structure/chair, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgA" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgB" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/lightreplacer, +/obj/item/lightreplacer, +/obj/item/stack/rods/fifty, +/obj/item/stack/rods/fifty, +/turf/open/floor/plasteel, +/area/storage/primary) +"bgC" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bgD" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#c1caff" + }, +/obj/item/target, +/obj/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/science/test_area) +"bgE" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Port Central Maintenance"; + req_one_access_txt = "12" + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bgG" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"bgH" = ( +/obj/machinery/pipedispenser, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bgI" = ( +/obj/machinery/pipedispenser/disposal, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bgJ" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/crew_quarters/fitness/cogpool) +"bgK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bgL" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bgM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"bgN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Port Central Maintenance"; + req_one_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bgO" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/wrench, +/obj/item/pipe_dispenser, +/mob/living/simple_animal/sloth/paperwork, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bgP" = ( +/obj/item/analyzer, +/obj/item/caution, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bgQ" = ( +/turf/closed/wall, +/area/quartermaster/qm) +"bgR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/closed/wall/mineral/wood, +/area/crew_quarters/fitness/cogpool) +"bgS" = ( +/obj/machinery/computer/bounty, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bgT" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bgU" = ( +/obj/machinery/computer/cargo, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bgV" = ( +/turf/closed/wall/r_wall, +/area/quartermaster/storage) +"bgW" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/hor) +"bgX" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"bgY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/status_display, +/turf/closed/wall/r_wall, +/area/hallway/primary/central) +"bgZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bha" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness/cogpool) +"bhb" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bhc" = ( +/obj/structure/chair/stool, +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness/cogpool) +"bhd" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bhe" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"bhf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/office) +"bhg" = ( +/obj/structure/chair/stool, +/obj/machinery/camera{ + c_tag = "Pool - Sauna"; + dir = 8; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness/cogpool) +"bhh" = ( +/obj/machinery/status_display, +/turf/closed/wall/r_wall, +/area/security/courtroom) +"bhi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/cone, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"bhj" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "28" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bhk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bhl" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall/mineral/wood, +/area/crew_quarters/fitness/cogpool) +"bhm" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"bhn" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"bho" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/turf/open/floor/plasteel, +/area/storage/primary) +"bhp" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bhq" = ( +/obj/structure/chair/sofa/right, +/obj/item/instrument/recorder, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/lounge/jazz) +"bhr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bhs" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"bht" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"bhu" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/recharge_station, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bhv" = ( +/obj/structure/chair/sofa/left, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/lounge/jazz) +"bhw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/contraband/cc64k_ad{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"bhx" = ( +/obj/machinery/vending/coffee, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/wood, +/area/medical/medbay/lobby) +"bhy" = ( +/obj/structure/plasticflaps, +/obj/structure/fans/tiny, +/obj/machinery/conveyor/auto{ + id = "sec" + }, +/obj/machinery/door/poddoor{ + name = "Security Router" + }, +/turf/open/floor/plating, +/area/router/sec) +"bhz" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bhA" = ( +/obj/item/stack/cable_coil/red, +/obj/item/multitool, +/obj/item/wrench, +/obj/item/stack/sheet/metal/five{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/paper/fluff/cogstation/letter_arrd, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bhB" = ( +/obj/structure/table/wood, +/obj/item/stack/packageWrap, +/obj/item/paper/fluff/cogstation/bsrb, +/obj/item/paper/fluff/cogstation/survey{ + pixel_x = -4; + pixel_y = 2 + }, +/turf/open/floor/carpet/royalblue, +/area/bridge) +"bhC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"bhD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Chapel Air Hookup"; + req_one_access_txt = "12;22" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bhE" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bhF" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bhG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"bhH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"bhI" = ( +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"bhJ" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#cee5d2" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bhK" = ( +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bhL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Waste Disposal"; + req_one_access_txt = "12;50" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bhM" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bhN" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/item/kirbyplants/dead, +/turf/open/floor/plasteel, +/area/security/main) +"bhO" = ( +/obj/structure/chair/sofa/right, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/lounge/jazz) +"bhP" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bhQ" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bhR" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21"; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"bhS" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Port Docking Bay" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bhT" = ( +/obj/structure/sign/departments/engineering, +/turf/closed/wall, +/area/hallway/primary/aft) +"bhU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/janitor) +"bhV" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen, +/obj/item/pen/blue{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/red{ + pixel_x = -4; + pixel_y = -4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"bhW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"bhX" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bhY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bhZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bia" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bib" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bic" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (Common)"; + pixel_x = -28 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bid" = ( +/obj/structure/chair/sofa/left, +/mob/living/simple_animal/pet/cat/Proc, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/lounge/jazz) +"bie" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bif" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"big" = ( +/turf/closed/wall, +/area/science/circuit) +"bih" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/conveyor{ + dir = 1; + id = "mail" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bii" = ( +/obj/structure/table/glass, +/obj/item/storage/box/matches, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bij" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bik" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"bil" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/machinery/conveyor{ + dir = 6; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bim" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/massdriver{ + id = "router_in"; + name = "mass driver button (Router)"; + pixel_x = 24; + pixel_y = -8 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bin" = ( +/obj/machinery/computer/mecha{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bio" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bip" = ( +/obj/effect/landmark/start/quartermaster, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"biq" = ( +/obj/structure/closet/secure_closet/hop, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/item/clothing/under/rank/civilian/head_of_personnel/suit, +/obj/item/clothing/under/rank/civilian/head_of_personnel/suit/skirt{ + name = "head of personnel's suitskirt" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"bir" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bis" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bit" = ( +/obj/machinery/light, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"biu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"biv" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"biw" = ( +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/button/door{ + id = "QMLoadDoor"; + layer = 4; + name = "Cargo Loading Doors"; + pixel_x = 24; + pixel_y = 6 + }, +/obj/machinery/button/door{ + id = "QMUnloadDoor"; + layer = 4; + name = "Cargo Unloading Doors"; + pixel_x = 24; + pixel_y = -6 + }, +/obj/machinery/camera{ + c_tag = "Supply - Cargo Bay"; + dir = 8; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bix" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Courtroom" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"biy" = ( +/obj/machinery/vending/clothing, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"biz" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"biA" = ( +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/hor) +"biB" = ( +/obj/structure/table/wood, +/obj/machinery/computer/security/telescreen/rd, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/hor) +"biC" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"biD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"biE" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"biF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medical)"; + pixel_y = -28 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"biG" = ( +/obj/structure/displaycase/labcage, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/machinery/camera{ + c_tag = "Research Director's Office - Starboard"; + network = list("ss13","rd") + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/hor) +"biH" = ( +/obj/machinery/light/small, +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plating, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"biI" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/item/kirbyplants{ + icon_state = "plant-20"; + pixel_y = 3 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"biJ" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"biK" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/science/mixing) +"biL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/turf/closed/wall, +/area/crew_quarters/heads/chief) +"biM" = ( +/obj/machinery/vending/assist, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/foam_force_ad{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"biN" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "recycler" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"biO" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"biP" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel, +/area/gateway) +"biQ" = ( +/turf/closed/wall, +/area/crew_quarters/heads/chief) +"biR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "CEPrivacy"; + name = "CE Privacy Shutters" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"biS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"biT" = ( +/obj/machinery/pipedispenser, +/turf/open/floor/plasteel, +/area/science/mixing) +"biU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"biV" = ( +/turf/closed/wall, +/area/storage/primary) +"biW" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"biX" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"biY" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"biZ" = ( +/turf/closed/wall/r_wall, +/area/quartermaster/office) +"bja" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bjb" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/wrench, +/obj/item/t_scanner, +/turf/open/floor/plasteel, +/area/storage/primary) +"bjc" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/stack/sheet/plasteel/twenty, +/turf/open/floor/plasteel, +/area/storage/primary) +"bjd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/tank/air, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bje" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjf" = ( +/obj/machinery/pipedispenser/disposal/transit_tube, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bjg" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "E.V.A. Maintenance"; + req_one_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bji" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjj" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjk" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"bjl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/closed/wall/r_wall, +/area/quartermaster/office) +"bjm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bjn" = ( +/turf/closed/wall/r_wall, +/area/security/checkpoint/supply) +"bjo" = ( +/obj/machinery/rnd/production/techfab/department/cargo, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bjp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"bjq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/conveyor{ + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bjr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bjs" = ( +/obj/machinery/computer/robotics{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bjt" = ( +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bju" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/radio/intercom{ + frequency = 1359; + name = "Station Intercom (Security)"; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bjv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/security/courtroom/jury) +"bjw" = ( +/obj/item/storage/secure/safe{ + pixel_x = 4; + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"bjx" = ( +/obj/structure/table/optable, +/obj/effect/turf_decal/bot, +/obj/item/defibrillator/loaded, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bjy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bjz" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bjA" = ( +/obj/machinery/camera{ + c_tag = "EVA Maintenace - Fore"; + network = list("ss13","rd") + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"bjB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/security/brig) +"bjC" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Jury Room" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/courtroom/jury) +"bjD" = ( +/turf/closed/wall/r_wall, +/area/security/courtroom/jury) +"bjE" = ( +/obj/structure/table, +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/obj/item/cigbutt/cigarbutt{ + pixel_x = 5; + pixel_y = -1 + }, +/obj/item/phone{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Control Room" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/paper/guides/cogstation/letter_atmos, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/engine/atmos) +"bjF" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/aft"; + dir = 8; + name = "Head of Personnel APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable, +/turf/open/floor/carpet/green, +/area/crew_quarters/heads/hop) +"bjG" = ( +/obj/structure/rack, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"bjI" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bjJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bjK" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/turf/open/floor/plasteel, +/area/storage/primary) +"bjL" = ( +/obj/structure/rack, +/obj/item/clothing/suit/space/fragile, +/obj/item/clothing/head/helmet/space/fragile, +/obj/item/tank/internals/air, +/obj/item/flashlight, +/obj/item/reagent_containers/spray/cleaner, +/obj/machinery/camera{ + c_tag = "Pool Maintenance"; + dir = 8; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/crew_quarters/fitness/cogpool) +"bjM" = ( +/obj/machinery/door/airlock/public/glass{ + name = "Atmospherics Storage"; + req_one_access_txt = "24;31" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bjN" = ( +/obj/machinery/vending/autodrobe, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bjO" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/item/instrument/piano_synth, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/lounge/jazz) +"bjP" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bjQ" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/assistant/override, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bjR" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjS" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/bot, +/obj/structure/sign/poster/official/cohiba_robusto_ad{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bjT" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"bjU" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjV" = ( +/obj/structure/closet{ + name = "Evidence Closet 5" + }, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bjW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bjX" = ( +/obj/structure/rack, +/obj/machinery/button/door{ + id = "marketdoor"; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bjY" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/lounge/jazz) +"bjZ" = ( +/obj/structure/window/reinforced, +/obj/machinery/shower{ + name = "emergency shower"; + pixel_y = 12 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/westright{ + name = "Emergency Shower" + }, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel, +/area/storage/primary) +"bka" = ( +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/lounge/jazz) +"bkb" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/obj/machinery/conveyor{ + dir = 9; + id = "mail" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bkc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/conveyor_switch/oneway{ + id = "DeliveryConveyer" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bkd" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 8; + id = "mail" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bke" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=sec1"; + location = "bridge2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bkf" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"bkg" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/mineral/stacking_unit_console{ + machinedir = 2 + }, +/turf/closed/wall, +/area/maintenance/disposal) +"bkh" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bki" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"bkj" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/obj/machinery/conveyor_switch/oneway{ + id = "mail" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bkk" = ( +/obj/machinery/autolathe, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bkl" = ( +/obj/structure/rack, +/obj/item/clothing/suit/space/fragile, +/obj/item/clothing/head/helmet/space/fragile, +/obj/item/tank/internals/air, +/obj/item/flashlight, +/obj/item/storage/belt/utility, +/obj/item/extinguisher, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bkm" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Supply - Delivery Office Fore"; + network = list("ss13","rd") + }, +/obj/structure/closet/emcloset, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bkn" = ( +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bko" = ( +/turf/open/floor/plasteel, +/area/science/circuit) +"bkp" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "QMLoad" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bkq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/conveyor/inverted{ + dir = 9; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bkr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/door/poddoor{ + id = "QMLoadDoor"; + name = "Cargo Loading Door" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bks" = ( +/obj/structure/plasticflaps, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bkt" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "QMLoad" + }, +/obj/machinery/door/poddoor{ + id = "QMLoadDoor"; + name = "Cargo Loading Door" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bku" = ( +/obj/structure/closet, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bkv" = ( +/turf/open/floor/plasteel/dark, +/area/crew_quarters/lounge/jazz) +"bkw" = ( +/obj/structure/bookcase/random/fiction, +/obj/effect/spawner/lootdrop/gambling, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/lounge/jazz) +"bkx" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bky" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/landmark/start/research_director, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/hor) +"bkz" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/open/floor/plating, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"bkA" = ( +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Bridge - Starboard Quarter"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bkB" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bkC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "capblast"; + name = "blast door" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/captain) +"bkD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "CEPrivacy"; + name = "CE Privacy Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"bkE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bkF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/department/security) +"bkG" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/closet/crate/engineering, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/item/rcl/pre_loaded, +/obj/item/stock_parts/cell/high/plus, +/obj/item/clothing/glasses/meson, +/obj/item/cartridge/atmos, +/obj/item/cartridge/engineering, +/obj/item/cartridge/engineering, +/obj/item/cartridge/engineering, +/obj/machinery/camera{ + c_tag = "Chief Engineer's Office"; + dir = 8; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bkH" = ( +/obj/machinery/computer/atmos_control{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/checker, +/area/engine/atmos) +"bkI" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/storage/primary) +"bkJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"bkK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/sign/departments/security{ + pixel_x = -32 + }, +/obj/item/cigbutt, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"bkL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bkM" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bkN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bkO" = ( +/obj/machinery/vending/kink, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bkP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bkQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"bkR" = ( +/obj/machinery/camera{ + c_tag = "EVA Maintenance - Aft"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"bkS" = ( +/obj/machinery/vending/sustenance, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bkT" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_x = 26 + }, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"bkU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bkV" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"bkW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Pool Exterior Access"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plating, +/area/crew_quarters/fitness/cogpool) +"bkX" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bkY" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/closet/crate/engineering, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bkZ" = ( +/turf/open/floor/engine/n2, +/area/engine/atmos) +"bla" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"blb" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"blc" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bld" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"ble" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/airlock/external{ + name = "Cargo Freighter Dock"; + req_access_txt = "31" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"blf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Office"; + req_access_txt = "57" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hop) +"blg" = ( +/obj/effect/turf_decal/caution/stand_clear, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"blh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/airlock/external{ + name = "Cargo Freighter Dock"; + req_access_txt = "31" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bli" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"blj" = ( +/obj/structure/sign/warning/docking, +/turf/closed/wall/r_wall, +/area/space/nearstation) +"blk" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bll" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"blm" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bln" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"blo" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"blp" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/exit) +"blq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/vending/wardrobe/engi_wardrobe, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel, +/area/storage/primary) +"blr" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bls" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/sign/poster/official/ion_rifle{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"blt" = ( +/obj/machinery/computer/card/minor/ce{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"blu" = ( +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"blv" = ( +/obj/machinery/computer/operating, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"blw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"blx" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/storage/backpack/duffelbag/med/surgery, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bly" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"blz" = ( +/obj/machinery/computer/atmos_control{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engine/atmos) +"blA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"blB" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"blC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"blD" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/fitness/cogpool) +"blE" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"blF" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"blG" = ( +/obj/machinery/door/airlock/research/glass/incinerator/toxmix_exterior, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/mixing) +"blH" = ( +/obj/structure/chair, +/obj/machinery/button/massdriver{ + id = "toxinsdriver"; + pixel_y = -24 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/science/mixing) +"blI" = ( +/obj/machinery/door/airlock/research/glass/incinerator/toxmix_interior, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/mixing) +"blJ" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"blK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "marketdoor" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"blL" = ( +/turf/open/floor/engine/o2, +/area/engine/atmos) +"blM" = ( +/turf/open/floor/engine/air, +/area/engine/atmos) +"blN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"blO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"blP" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall/rust, +/area/maintenance/department/chapel) +"blQ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/northleft{ + name = "Delivery Office"; + req_one_access_txt = "31;48" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"blR" = ( +/obj/machinery/computer/bounty{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"blS" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/chair, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"blT" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"blU" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/closet/cardboard, +/turf/open/floor/plating, +/area/maintenance/aft) +"blV" = ( +/obj/machinery/computer/cargo{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"blW" = ( +/obj/structure/table, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/crowbar, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"blX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"blY" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/security/brig) +"blZ" = ( +/obj/machinery/conveyor_switch/oneway{ + dir = 8; + id = "QMUnload" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bma" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/landmark/start/assistant/override, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_x = 26 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bmb" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"bmc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office"; + req_one_access_txt = "58" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hos) +"bmd" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/research_director, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/hor) +"bme" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bmf" = ( +/obj/structure/sign/departments/evac, +/turf/closed/wall/r_wall, +/area/hallway/secondary/exit) +"bmg" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bmh" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bmi" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bmj" = ( +/obj/machinery/vending/wardrobe/cap_wardrobe, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/captain) +"bmk" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass, +/obj/item/dice/d6, +/obj/machinery/camera{ + c_tag = "Jazz Lounge"; + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/lounge/jazz) +"bml" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bmm" = ( +/obj/machinery/portable_atmospherics/scrubber/huge, +/turf/open/floor/plasteel, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"bmn" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bmo" = ( +/turf/closed/wall/rust, +/area/maintenance/department/chapel) +"bmp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"bmq" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=court"; + location = "bridge1" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bmr" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bms" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/barthpot, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/lounge/jazz) +"bmt" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/lounge/jazz) +"bmu" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"bmv" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"bmw" = ( +/obj/machinery/suit_storage_unit/ce, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bmx" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"bmy" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 1; + locked = 0; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bmz" = ( +/obj/structure/closet/firecloset, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/storage/primary) +"bmA" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 10; + pixel_y = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/hallway/secondary/civilian) +"bmB" = ( +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"bmC" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bmD" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bmE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/gateway) +"bmF" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/closed/wall, +/area/crew_quarters/fitness/cogpool) +"bmG" = ( +/turf/open/floor/engine, +/area/gateway) +"bmH" = ( +/obj/machinery/computer/upload/borg{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"bmI" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/chapel/office"; + dir = 4; + name = "Chapel Office APC"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"bmJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/crew_quarters/fitness/cogpool) +"bmK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/fitness/cogpool) +"bmL" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bmM" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"bmN" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Waste Disposal Maintenance"; + req_one_access_txt = "12;50" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bmO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/lounge/jazz) +"bmP" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/departments/engineering{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bmQ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Engineering Foyer - Starboard"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bmR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_one_access_txt = "17;19" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"bmS" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bmT" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/engineering{ + name = "Engine Room" + }) +"bmU" = ( +/obj/structure/table/wood, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/item/instrument/saxophone, +/obj/item/reagent_containers/food/drinks/bottle/vermouth, +/obj/item/clothing/glasses/sunglasses, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/lounge/jazz) +"bmV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/lounge/jazz) +"bmW" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bmX" = ( +/obj/structure/table, +/obj/item/folder/yellow{ + pixel_y = 4 + }, +/obj/item/pen{ + pixel_y = 4 + }, +/obj/item/clothing/gloves/color/latex{ + pixel_y = 4 + }, +/obj/item/clothing/mask/surgical{ + pixel_y = 4 + }, +/obj/item/healthanalyzer, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/item/paper/guides/cogstation/cdn_chap, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"bmY" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/maintenance/disposal) +"bmZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bna" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bnb" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/lounge/jazz) +"bnc" = ( +/obj/structure/sign/directions/command{ + dir = 1; + pixel_x = -32; + pixel_y = 32 + }, +/obj/structure/sign/directions/security{ + dir = 1; + pixel_x = -32; + pixel_y = 40 + }, +/obj/structure/sign/directions/science{ + pixel_x = -32; + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bnd" = ( +/obj/structure/table/wood, +/obj/item/storage/photo_album, +/obj/item/storage/box/matches, +/obj/item/storage/fancy/cigarettes/cigpack_robust, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/lounge/jazz) +"bne" = ( +/obj/machinery/conveyor/auto{ + dir = 4; + id = "disposal" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bnf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bng" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/conveyor{ + dir = 4; + id = "recycler" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bnh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/poddoor{ + id = "DeliveryDoor"; + name = "Delivery Door" + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bni" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/clipboard, +/obj/item/stamp, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/pen/red, +/obj/item/pen/blue{ + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bnj" = ( +/obj/structure/sign/warning/securearea{ + desc = "A warning sign which reads 'BOMB RANGE"; + name = "BOMB RANGE" + }, +/turf/closed/wall, +/area/science/test_area) +"bnk" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bnl" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"bnm" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"bnn" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/door/window/southleft{ + name = "Cargo Desk"; + req_access_txt = "31" + }, +/obj/item/folder, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bno" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/lounge/jazz) +"bnp" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bnq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bnr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bns" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/maintenance/department/eva) +"bnt" = ( +/obj/machinery/camera{ + c_tag = "Electrical Substation"; + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/storage_shared{ + name = "Electrical Substation" + }) +"bnu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"bnv" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L1" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bnw" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/lounge/jazz) +"bnx" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L3" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bny" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/item/paper_bin, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/pen, +/obj/item/wirecutters, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bnz" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L5" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bnA" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L7" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bnB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/lounge/jazz) +"bnC" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Cargo Freighter Dock"; + req_access_txt = "31" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bnD" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L9" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bnE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/crowbar, +/obj/structure/disposalpipe/junction/flip, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"bnF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"bnG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/plasteel, +/area/bridge) +"bnH" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/fore) +"bnI" = ( +/obj/structure/bed, +/obj/effect/landmark/start/head_of_personnel, +/obj/item/bedsheet/hop, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"bnJ" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bnK" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"bnL" = ( +/obj/item/beacon, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"bnM" = ( +/obj/effect/turf_decal/delivery, +/obj/item/grown/bananapeel, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bnN" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bnO" = ( +/obj/machinery/status_display, +/turf/closed/wall/r_wall, +/area/hallway/secondary/exit) +"bnP" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L11" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bnQ" = ( +/obj/machinery/atmospherics/components/binary/valve/digital/on, +/turf/closed/wall/r_wall, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"bnR" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L13" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bnS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/crew_quarters/fitness/cogpool) +"bnT" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/crew_quarters/fitness/cogpool) +"bnU" = ( +/obj/structure/rack, +/obj/item/clothing/suit/space/fragile, +/obj/item/clothing/head/helmet/space/fragile, +/obj/item/tank/internals/air, +/obj/item/wrench, +/obj/item/flashlight, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"bnV" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/nuke_storage) +"bnW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bnX" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/closet/secure_closet/security/cargo, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"bnY" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bnZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/pen/blue, +/obj/machinery/camera{ + c_tag = "Customs - Fore"; + dir = 4 + }, +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "HoPFore"; + name = "HoP Fore Desk Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"boa" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 5 + }, +/turf/closed/wall, +/area/crew_quarters/heads/chief) +"bob" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/crew_quarters/heads/chief) +"boc" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 10 + }, +/turf/closed/wall, +/area/crew_quarters/heads/chief) +"bod" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southleft{ + name = "Primary Tool Storage Desk"; + req_access_txt = "11" + }, +/obj/item/folder/yellow, +/turf/open/floor/plasteel, +/area/storage/primary) +"boe" = ( +/obj/machinery/door/airlock/vault{ + name = "Vault Door"; + req_access_txt = "53" + }, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/nuke_storage) +"bof" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external/glass{ + name = "Pool Exterior Access"; + req_access_txt = "13" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/space/basic, +/area/crew_quarters/fitness/cogpool) +"bog" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"boh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/conveyor/auto{ + dir = 4; + id = "disposal" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"boi" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/fitness/cogpool) +"boj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bok" = ( +/obj/structure/table/wood, +/obj/item/paicard, +/obj/item/toy/sword, +/obj/item/toy/figure/assistant, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/lounge/jazz) +"bol" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/teleporter) +"bom" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bon" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"boo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"bop" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/door/window/eastleft{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"boq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bor" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bos" = ( +/obj/structure/table, +/obj/item/stack/sheet/cardboard/fifty, +/obj/item/stack/wrapping_paper, +/obj/item/stack/sheet/metal, +/obj/item/stack/sheet/glass, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bot" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bou" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bov" = ( +/obj/effect/turf_decal/loading_area{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bow" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/machinery/conveyor{ + dir = 8; + id = "QMUnload" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"box" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"boy" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit) +"boz" = ( +/obj/machinery/vending/cigarette, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit) +"boA" = ( +/turf/closed/wall, +/area/security/detectives_office) +"boB" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/conveyor{ + dir = 8; + id = "QMUnload" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"boC" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/sign/departments/cargo{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"boD" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/conveyor{ + dir = 8; + id = "QMUnload" + }, +/obj/machinery/door/poddoor{ + id = "QMUnloadDoor"; + name = "Cargo Unloading Door" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"boE" = ( +/obj/structure/plasticflaps, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/conveyor{ + dir = 8; + id = "QMUnload" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"boF" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 8; + id = "QMUnload" + }, +/obj/machinery/door/poddoor{ + id = "QMUnloadDoor"; + name = "Cargo Unloading Door" + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"boG" = ( +/obj/machinery/space_heater, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/weldingtool, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/structure/sign/departments/engineering{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"boH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"boI" = ( +/turf/closed/wall/r_wall, +/area/quartermaster/miningoffice) +"boJ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/obj/machinery/computer/security/telescreen/toxins{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"boK" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/miningoffice) +"boL" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/science/mixing) +"boM" = ( +/obj/machinery/mineral/ore_redemption{ + input_dir = 4; + output_dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"boN" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"boO" = ( +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/item/storage/box/drinkingglasses{ + pixel_y = 4 + }, +/obj/structure/table/wood/fancy, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/crew_quarters/bar) +"boP" = ( +/obj/structure/tank_dispenser/oxygen, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"boQ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"boR" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"boS" = ( +/obj/structure/sign/mining, +/turf/closed/wall/r_wall, +/area/quartermaster/miningoffice) +"boT" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"boU" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"boV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/lounge/jazz) +"boW" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"boX" = ( +/obj/item/beacon, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/lounge/jazz) +"boY" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"boZ" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/lounge/jazz) +"bpa" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/door/window/westleft{ + name = "Treatment Center"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bpb" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bpc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"bpd" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bpe" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/door/window/eastright{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bpf" = ( +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bpg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bph" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bpi" = ( +/obj/structure/flora/junglebush/b, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bpj" = ( +/obj/structure/flora/junglebush, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bpk" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bpl" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/autolathe/secure{ + name = "public autolathe" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bpm" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/head/hardhat/red{ + pixel_y = 6 + }, +/obj/item/clothing/mask/gas, +/obj/item/tank/internals/air, +/obj/item/extinguisher, +/obj/item/crowbar, +/turf/open/floor/plating, +/area/maintenance/aft) +"bpn" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bpo" = ( +/obj/machinery/holopad, +/turf/open/floor/carpet/red, +/area/security/brig) +"bpp" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bpq" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/open/floor/engine/air, +/area/engine/atmos) +"bpr" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/lounge/jazz) +"bps" = ( +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/lounge/jazz"; + name = "Jazz Lounge APC"; + pixel_y = -26 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/lounge/jazz) +"bpt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/lounge/jazz) +"bpu" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bpv" = ( +/turf/closed/wall/r_wall, +/area/engine/break_room) +"bpw" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L6" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bpx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bpy" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/landmark/observer_start, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bpz" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bpA" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bpB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/hallway/primary/aft) +"bpC" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L10" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bpD" = ( +/turf/open/floor/plating, +/area/maintenance/aft) +"bpE" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"bpF" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L12" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bpG" = ( +/obj/effect/turf_decal/plaque{ + icon_state = "L14" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bpH" = ( +/obj/machinery/jukebox, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/lounge/jazz) +"bpI" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bpJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/lounge/jazz) +"bpK" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/engine/engineering{ + name = "Engine Room" + }) +"bpL" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/closed/wall/r_wall, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"bpM" = ( +/obj/effect/turf_decal/stripes/corner, +/turf/open/floor/plasteel, +/area/science/mixing) +"bpN" = ( +/obj/structure/grille, +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"bpO" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bpP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bpQ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bpR" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"bpS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Security RC"; + pixel_y = -32 + }, +/turf/open/floor/carpet/red, +/area/security/brig) +"bpT" = ( +/obj/structure/window/reinforced/spawner, +/turf/open/floor/grass, +/area/hallway/secondary/exit) +"bpU" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit) +"bpV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/atmos{ + name = "Aft Air Hookup"; + req_access_txt = "12;24" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"bpW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall, +/area/security/brig) +"bpX" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/sign/poster/official/obey{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"bpY" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bpZ" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/lounge/jazz) +"bqa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"bqb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/civilian) +"bqc" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/medical/medbay/lobby) +"bqd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bqe" = ( +/obj/structure/sign/departments/medbay/alt, +/turf/closed/wall, +/area/medical/medbay/lobby) +"bqf" = ( +/obj/machinery/conveyor/auto{ + dir = 8; + id = "disposal" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bqg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/conveyor/auto{ + dir = 8; + id = "disposal" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bqh" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet/green, +/area/crew_quarters/heads/hop) +"bqi" = ( +/obj/machinery/button/door{ + id = "HoPFore"; + name = "Fore Shutters"; + pixel_x = -24; + pixel_y = 24; + req_access_txt = "57" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"bqj" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bqk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"bql" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/hallway/secondary/civilian) +"bqm" = ( +/turf/closed/wall, +/area/medical/medbay/lobby) +"bqn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bqo" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bqp" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit) +"bqq" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera{ + c_tag = "Medbay - Chemistry Lab"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"bqr" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bqs" = ( +/obj/structure/closet/emcloset, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bqt" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/healthanalyzer, +/obj/item/clothing/neck/stethoscope, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bqu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Waste Disposal Maintenance"; + req_one_access_txt = "12;50" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bqv" = ( +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/wood, +/area/medical/medbay/lobby) +"bqw" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "EngiLockdown"; + name = "Engineering Emergency Lockdown" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/camera{ + c_tag = "Engineering - Entrance"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bqx" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bqy" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/camera{ + c_tag = "Supply - Mining Office"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bqz" = ( +/turf/closed/wall, +/area/medical/chemistry) +"bqA" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bqB" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass{ + name = "Library Access" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/library) +"bqC" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bqD" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bqE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bqF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "E.V.A. Maintenance"; + req_one_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bqG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"bqH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bqI" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/mixing) +"bqJ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/obj/machinery/airlock_sensor/incinerator_toxmix{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/engine, +/area/science/mixing) +"bqK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bqL" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit) +"bqM" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/item/storage/box/dice, +/obj/item/toy/cards/deck, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit) +"bqN" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bqO" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bqP" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bqQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/corner, +/area/hallway/secondary/entry) +"bqR" = ( +/obj/machinery/computer/operating{ + dir = 1 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bqS" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bqT" = ( +/obj/machinery/computer/crew, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/window/reinforced/spawner/north, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bqU" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit) +"bqV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bqW" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"bqX" = ( +/turf/closed/wall/mineral/titanium/nosmooth, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"bqY" = ( +/obj/structure/sign/directions/medical{ + pixel_x = -32; + pixel_y = -24 + }, +/obj/structure/sign/directions/evac{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/structure/sign/directions/supply{ + pixel_x = -32; + pixel_y = -40 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bqZ" = ( +/obj/machinery/mineral/equipment_vendor, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bra" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"brb" = ( +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plasteel/dark, +/area/science/server{ + name = "Computer Core" + }) +"brc" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"brd" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bre" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/central) +"brf" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"brg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"brh" = ( +/obj/structure/sign/departments/custodian{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"bri" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/hallway/secondary/civilian) +"brj" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Central Starboard Maintenance"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/civilian) +"brk" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/vending/cola/random, +/turf/open/floor/wood, +/area/medical/medbay/lobby) +"brl" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/paper_bin, +/obj/item/reagent_containers/glass/bottle/epinephrine, +/obj/item/reagent_containers/dropper, +/obj/item/stamp/denied{ + pixel_x = -8; + pixel_y = -2 + }, +/obj/item/stamp{ + pixel_x = -8; + pixel_y = 2 + }, +/obj/structure/window/reinforced/spawner/north, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"brm" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"brn" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bro" = ( +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"brp" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/machinery/smartfridge/disks, +/turf/open/floor/plasteel, +/area/hydroponics) +"brq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"brr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/warning{ + name = "\improper WARNING: MOVING MACHINERY"; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"brs" = ( +/turf/open/floor/plating/airless, +/area/space/nearstation) +"brt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/chapel/office) +"bru" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"brv" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit) +"brw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/gateway) +"brx" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/storage/tools) +"bry" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"brz" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/science/research"; + name = "Research Sector APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"brA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/poster/official/pda_ad600{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/lounge/jazz) +"brB" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"brC" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/storage/tools) +"brD" = ( +/obj/structure/table, +/obj/machinery/door/window/eastright{ + name = "Auxiliary Tool Storage Desk"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/folder, +/turf/open/floor/plasteel, +/area/storage/tools) +"brE" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"brF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chem1"; + name = "chem lab shutters" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/medical/chemistry) +"brG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"brH" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/medical/chemistry) +"brI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Hall - Aft"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"brJ" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"brK" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/chem_dispenser, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"brL" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"brM" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Merchant Plaza" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"brN" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit) +"brO" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/obj/effect/landmark/start/medical_doctor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"brP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"brQ" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"brR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Construction Area"; + req_access_txt = "31" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"brS" = ( +/obj/machinery/suit_storage_unit/open, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"brT" = ( +/obj/machinery/suit_storage_unit/open, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"brU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/medbay/lobby) +"brV" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"brW" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock{ + name = "Chapel Maintenance"; + req_one_access_txt = "12;22;26;27;50" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"brX" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"brY" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/camera{ + c_tag = "Waste Disposal - Aft" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"brZ" = ( +/obj/item/kirbyplants{ + icon_state = "plant-02" + }, +/turf/open/floor/wood, +/area/medical/medbay/lobby) +"bsa" = ( +/obj/structure/table/glass, +/obj/item/scalpel, +/obj/item/storage/box/cups, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/wood, +/area/medical/medbay/lobby) +"bsb" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/port/central) +"bsc" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/ammonia, +/obj/item/toy/figure/botanist{ + pixel_x = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bsd" = ( +/obj/structure/closet/crate/hydroponics, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/item/clothing/accessory/armband/hydro{ + pixel_y = 4 + }, +/obj/item/clothing/accessory/armband/hydro{ + pixel_y = 4 + }, +/obj/item/clothing/accessory/armband/hydro{ + pixel_y = 4 + }, +/obj/item/clothing/suit/hooded/wintercoat/hydro{ + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bse" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"bsf" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/obj/structure/bed/dogbed/ian, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/sign/poster/official/love_ian{ + pixel_y = 32 + }, +/mob/living/simple_animal/pet/dog/corgi/Ian, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"bsg" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bsh" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Recycler Exterior Access"; + req_one_access_txt = "13;50" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bsi" = ( +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_x = 26 + }, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bsj" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/seed_extractor, +/turf/open/floor/plasteel, +/area/hydroponics) +"bsk" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bsl" = ( +/obj/machinery/status_display, +/turf/closed/wall/r_wall, +/area/ai_monitored/storage/eva) +"bsm" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bsn" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/machinery/plantgenes{ + pixel_y = 6 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bso" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/storage/tools) +"bsp" = ( +/turf/open/floor/wood, +/area/medical/medbay/lobby) +"bsq" = ( +/obj/structure/table, +/obj/machinery/door/window/southleft{ + name = "Auxiliary Tool Storage Desk"; + req_access_txt = "12" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/book/manual/wiki/engineering_hacking, +/turf/open/floor/plasteel, +/area/storage/tools) +"bsr" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/table, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/stack/sheet/glass/fifty, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = -6; + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/storage/tools) +"bss" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/item/hand_labeler{ + pixel_y = 8 + }, +/obj/item/storage/firstaid/regular, +/obj/item/book/manual/wiki/medicine{ + pixel_x = -6 + }, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bst" = ( +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bsu" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bsv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/warning/vacuum/external, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bsw" = ( +/turf/open/floor/plasteel/stairs/left, +/area/hydroponics) +"bsx" = ( +/obj/structure/lattice, +/turf/closed/wall/r_wall, +/area/crew_quarters/fitness/cogpool) +"bsy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bsz" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/violet/hidden{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bsA" = ( +/turf/open/floor/plasteel/stairs/right, +/area/hydroponics) +"bsB" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bsC" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Hydroponics - Aft" + }, +/turf/open/floor/plasteel, +/area/hydroponics) +"bsD" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space/basic, +/area/space/nearstation) +"bsE" = ( +/obj/structure/reagent_dispensers/watertank/high, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = 26 + }, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/grass, +/area/hydroponics) +"bsF" = ( +/obj/machinery/vending/hydronutrients, +/turf/open/floor/grass, +/area/hydroponics) +"bsG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/table, +/obj/effect/decal/cleanable/cobweb, +/obj/structure/sign/poster/contraband/borg_fancy_2{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"bsH" = ( +/obj/structure/table/glass, +/obj/item/storage/box/syringes{ + pixel_y = 4 + }, +/turf/open/floor/grass, +/area/hydroponics) +"bsI" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bsJ" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 12; + pixel_y = 8 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 2; + pixel_y = 9 + }, +/obj/item/reagent_containers/spray/plantbgone{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/grass, +/area/hydroponics) +"bsK" = ( +/obj/machinery/hydroponics/constructable, +/obj/machinery/light, +/turf/open/floor/grass, +/area/hydroponics) +"bsL" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/reagentgrinder{ + pixel_y = 8 + }, +/obj/item/storage/box/syringes, +/obj/item/storage/box/beakers{ + pixel_x = -2; + pixel_y = -2 + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"bsM" = ( +/turf/closed/wall, +/area/science/robotics/lab) +"bsN" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/cable_coil/random, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/screwdriver{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"bsO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/hallway/secondary/civilian) +"bsP" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/white/full, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"bsQ" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"bsR" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bsS" = ( +/obj/machinery/door/window/northleft{ + name = "Chapel Office"; + req_access_txt = "22" + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"bsT" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/violet/hidden{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bsU" = ( +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bsV" = ( +/turf/closed/wall, +/area/maintenance/aft) +"bsW" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/chaplain, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/office) +"bsX" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/engine, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"bsY" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plating, +/area/maintenance/aft) +"bsZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/aft) +"bta" = ( +/turf/closed/wall/r_wall, +/area/storage/tech) +"btb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/computer/secure_data, +/obj/machinery/requests_console{ + department = "Detective"; + departmentType = 5; + name = "Detective's Office RC"; + pixel_y = 30 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"btc" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/central"; + dir = 1; + name = "Custodial Closet APC"; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/janitor) +"btd" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bte" = ( +/obj/structure/sign/warning/vacuum/external, +/turf/closed/wall/r_wall, +/area/quartermaster/miningoffice) +"btf" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/wood, +/area/medical/medbay/lobby) +"btg" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bth" = ( +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/medical/medbay/lobby) +"bti" = ( +/obj/machinery/door/window/eastleft{ + name = "Waiting Room" + }, +/turf/open/floor/wood, +/area/medical/medbay/lobby) +"btj" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"btk" = ( +/obj/structure/sign/poster/official/nanomichi_ad{ + pixel_x = 32 + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"btl" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"btm" = ( +/obj/machinery/disposal/bin{ + name = "Chapel Mailbox" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/delivery/white, +/obj/machinery/requests_console{ + department = "Chapel"; + departmentType = 2; + name = "Chapel RC"; + pixel_x = -32 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"btn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics"; + name = "robotics lab shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"bto" = ( +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"btp" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"btq" = ( +/obj/machinery/vending/cigarette, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"btr" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/binary/valve/digital/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bts" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/light_construct/small{ + icon_state = "bulb-construct-stage1"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"btt" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Civilian Wing Hallway - Aft"; + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/civilian) +"btu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/hallway/secondary/civilian) +"btv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/aft) +"btw" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/turf/open/floor/plating/airless, +/area/router) +"btx" = ( +/obj/machinery/space_heater, +/turf/open/floor/plating, +/area/maintenance/aft) +"bty" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"btz" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"btA" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"btB" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"btC" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"btD" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"btE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Tech Storage"; + req_access_txt = "23" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/storage/tech) +"btF" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"btG" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"btH" = ( +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"btI" = ( +/obj/structure/closet/secure_closet/brig{ + name = "Detainee Locker" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"btJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/hallway/secondary/civilian) +"btK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Aft Maintenance"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"btL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"btM" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/fountain, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/office) +"btN" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/rack, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/item/stack/cable_coil/random, +/obj/item/weldingtool, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"btO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"btP" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"btQ" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/AI, +/turf/open/floor/plating, +/area/storage/tech) +"btR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"btS" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"btT" = ( +/turf/closed/wall/r_wall, +/area/router) +"btU" = ( +/obj/structure/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/wood, +/area/medical/medbay/lobby) +"btV" = ( +/obj/structure/sign/warning/securearea, +/turf/closed/wall/r_wall, +/area/storage/tech) +"btW" = ( +/obj/structure/table, +/obj/machinery/light, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"btX" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"btY" = ( +/obj/machinery/door/window/eastright{ + name = "Waiting Room" + }, +/turf/open/floor/wood, +/area/medical/medbay/lobby) +"btZ" = ( +/obj/structure/plasticflaps, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/router) +"bua" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/mechbay) +"bub" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"buc" = ( +/obj/structure/bed, +/obj/item/clothing/glasses/sunglasses/blindfold, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"bud" = ( +/obj/structure/plasticflaps, +/obj/structure/fans/tiny, +/obj/machinery/conveyor{ + id = "router_off" + }, +/turf/open/floor/plating, +/area/router) +"bue" = ( +/turf/closed/wall/r_wall, +/area/router/eva) +"buf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/plasticflaps, +/obj/machinery/door/window/northleft{ + name = "Showers"; + req_one_access_txt = "29;47" + }, +/turf/open/floor/plasteel, +/area/science/lab) +"bug" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall, +/area/chapel/office) +"buh" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/closed/wall, +/area/maintenance/disposal) +"bui" = ( +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"buj" = ( +/obj/structure/closet/crate, +/turf/open/floor/plating, +/area/maintenance/aft) +"buk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Routing Depot"; + req_one_access_txt = "10;31" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/router) +"bul" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/aft) +"bum" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/aft) +"bun" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"buo" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bup" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"buq" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall/r_wall, +/area/router) +"bur" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bus" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/mass_driver{ + dir = 1; + id = "public_in"; + name = "Router Driver" + }, +/turf/open/floor/plating, +/area/router) +"but" = ( +/turf/closed/wall/mineral/titanium/nosmooth, +/area/hallway/primary/central) +"buu" = ( +/obj/structure/table, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"buv" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"buw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bux" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"buy" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"buz" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"buA" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/medical/medbay/lobby) +"buB" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Ferry Docking Bay" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"buC" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_circuit_printer, +/obj/item/integrated_electronics/wirer, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"buD" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"buE" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/conveyor/auto{ + id = "router" + }, +/turf/open/floor/plating, +/area/router) +"buF" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"buG" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/crew_quarters/heads/hop) +"buH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"buI" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"buJ" = ( +/obj/item/beacon, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"buK" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"buL" = ( +/obj/structure/closet/crate/coffin, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"buM" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/button/door{ + id = "capblast"; + name = "Window Blast Door Control"; + pixel_x = -6; + pixel_y = -3; + req_access_txt = "19" + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/captain) +"buN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/closed/wall/rust, +/area/chapel/main) +"buO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "capblast"; + name = "blast door" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/captain) +"buP" = ( +/obj/item/trash/plate, +/obj/item/lighter/greyscale, +/obj/item/clothing/mask/cigarette/cigar/cohiba, +/obj/structure/table/wood/fancy, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"buQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Chapel Morgue"; + req_access_txt = "27" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"buR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hop) +"buS" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/cmo) +"buT" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/structure/sign/poster/official/soft_cap_pop_art{ + pixel_x = -32 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"buU" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/snacks/chips{ + pixel_x = 3; + pixel_y = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"buV" = ( +/obj/structure/rack, +/obj/item/circuitboard/machine/telecomms/processor, +/obj/item/circuitboard/machine/telecomms/bus, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"buW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/janitor) +"buX" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/bartender, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"buY" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"buZ" = ( +/obj/structure/closet/secure_closet/personal/cabinet, +/obj/item/soulstone/anybody/chaplain, +/obj/item/organ/heart, +/obj/item/book/granter/spell/smoke/lesser, +/obj/item/nullrod, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/office) +"bva" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/closed/wall, +/area/janitor) +"bvb" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "Electrical Substation"; + req_access_txt = "10" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/engine/storage_shared{ + name = "Electrical Substation" + }) +"bvc" = ( +/obj/machinery/computer/cargo/request, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/router/eva) +"bvd" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bve" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Construction Area"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/construction) +"bvf" = ( +/obj/item/kirbyplants{ + icon_state = "plant-10" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/office) +"bvg" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/item/destTagger, +/obj/effect/turf_decal/bot, +/obj/machinery/requests_console{ + department = "EVA Router"; + name = "EVA Router RC"; + pixel_y = 28 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_x = 26 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/router/eva) +"bvh" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"bvi" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"bvj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bvk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bvl" = ( +/obj/item/trash/plate, +/obj/item/kitchen/fork, +/obj/structure/table/wood/fancy, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bvm" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"bvn" = ( +/obj/machinery/rnd/production/protolathe/department/science, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"bvo" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bvp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"bvq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Kitchen"; + req_access_txt = "28" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bvr" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/kitchen/backroom) +"bvs" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/department/chapel) +"bvt" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bvu" = ( +/turf/closed/wall/r_wall, +/area/chapel/office) +"bvv" = ( +/turf/closed/wall/r_wall/rust, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"bvw" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/turf/closed/wall/r_wall, +/area/crew_quarters/kitchen/backroom) +"bvx" = ( +/obj/structure/grille, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bvy" = ( +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bvz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall, +/area/router/eva) +"bvA" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/effect/landmark/start/cook, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/kitchen/backroom) +"bvB" = ( +/turf/closed/wall/r_wall/rust, +/area/router) +"bvC" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/mob/living/simple_animal/hostile/retaliate/goat{ + name = "Pete" + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/kitchen/backroom) +"bvD" = ( +/obj/machinery/camera{ + c_tag = "Bar - Starboard"; + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bvE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/carpet, +/area/chapel/main) +"bvF" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/vending/snack/random, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"bvG" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bvH" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/crew_quarters/bar) +"bvI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/department/chapel) +"bvJ" = ( +/obj/structure/chair/comfy/brown, +/obj/effect/landmark/start/head_of_personnel, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/carpet/green, +/area/crew_quarters/heads/hop) +"bvK" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bvL" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"bvM" = ( +/obj/structure/lattice, +/obj/machinery/camera{ + c_tag = "Routing Depot - Aft Exterior"; + pixel_x = 22 + }, +/turf/open/space/basic, +/area/router) +"bvN" = ( +/obj/machinery/atmospherics/components/binary/valve/digital/on{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/department/chapel) +"bvO" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bvP" = ( +/obj/machinery/space_heater, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bvQ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bvR" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bvS" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bvT" = ( +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"bvU" = ( +/obj/item/caution, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bvV" = ( +/obj/structure/table, +/obj/machinery/light/small, +/obj/item/storage/pill_bottle/epinephrine, +/obj/item/wrench{ + pixel_x = -8 + }, +/obj/item/extinguisher{ + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bvW" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bvX" = ( +/obj/machinery/door/airlock/external{ + name = "External Construction Access"; + req_one_access_txt = "10;31" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bvY" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"bvZ" = ( +/obj/item/folder, +/obj/structure/table/wood/fancy, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bwa" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"bwb" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Chapel Air Hookup"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bwc" = ( +/obj/machinery/computer/atmos_alert{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bwd" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bwe" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bwf" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bwg" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bwh" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/requests_console{ + department = "Routing Depot"; + name = "Routing Depot RC"; + pixel_y = 28 + }, +/obj/machinery/button/massdriver{ + id = "eva_in"; + name = "mass driver button (EVA)"; + pixel_x = -24 + }, +/obj/machinery/button/massdriver{ + id = "public_in"; + name = "mass driver button (Public)"; + pixel_x = -24; + pixel_y = 8 + }, +/turf/open/floor/plasteel, +/area/router) +"bwi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bwj" = ( +/obj/machinery/space_heater, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bwk" = ( +/obj/machinery/chem_master, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/maintenance/disposal) +"bwl" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/structure/sign/poster/official/safety_report{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"bwm" = ( +/obj/structure/sign/departments/science, +/turf/closed/wall/r_wall, +/area/gateway) +"bwn" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bwo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/mob/living/simple_animal/cockroach, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"bwp" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"bwq" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/conveyor{ + id = "recycler" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bws" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/autolathe/secure{ + name = "public autolathe" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwt" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bwu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/trash/can, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"bwv" = ( +/obj/machinery/disposal/bin{ + name = "Mass Driver" + }, +/obj/structure/sign/warning/deathsposal{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bww" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/structure/transit_tube/horizontal, +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bwx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/janitor) +"bwy" = ( +/obj/machinery/vending/wardrobe/jani_wardrobe, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/janitor) +"bwz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/router) +"bwA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bwB" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/bot_assembly/medbot, +/obj/item/clothing/head/hardhat{ + pixel_x = -2; + pixel_y = 6; + pressure_resistance = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/router) +"bwC" = ( +/obj/structure/table, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/radio/off{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/storage/box/mousetraps, +/obj/item/light/tube, +/obj/item/radio/off{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/machinery/camera{ + c_tag = "Routing Depot" + }, +/turf/open/floor/plasteel, +/area/router) +"bwD" = ( +/obj/structure/table/reinforced, +/obj/item/analyzer, +/obj/item/wrench, +/obj/item/screwdriver, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bwE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bwF" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bwG" = ( +/obj/item/cigbutt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bwH" = ( +/obj/effect/turf_decal/stripes/line, +/obj/item/storage/box/mre/menu2/safe, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bwI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"bwK" = ( +/obj/machinery/camera{ + c_tag = "Research - Gateway Chamber"; + network = list("ss13","rd") + }, +/turf/open/floor/engine, +/area/gateway) +"bwL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/router) +"bwM" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Central Starboard Maintenance"; + dir = 8; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/mob/living/simple_animal/hostile/retaliate/bat, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"bwN" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Toxins Lab - Port"; + network = list("ss13","rd") + }, +/obj/machinery/meter, +/obj/machinery/embedded_controller/radio/airlock_controller/incinerator_toxmix{ + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/science/mixing) +"bwO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"bwP" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bwQ" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "router_off" + }, +/turf/open/floor/plating, +/area/router) +"bwR" = ( +/turf/open/floor/plasteel, +/area/engine/break_room) +"bwS" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/disposal/deliveryChute{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/router) +"bwT" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/router) +"bwU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bwV" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bwW" = ( +/turf/closed/wall, +/area/maintenance/disposal) +"bwX" = ( +/obj/machinery/conveyor{ + id = "recycler" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bwY" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"bwZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/table, +/obj/item/clothing/under/misc/mailman, +/obj/item/clothing/head/mailman, +/obj/item/wirecutters, +/obj/item/stack/packageWrap, +/turf/open/floor/plasteel, +/area/router) +"bxa" = ( +/obj/structure/frame/computer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/router) +"bxb" = ( +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Waste Disposal - Port"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bxc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"bxd" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bxe" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 6; + pixel_y = 13 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bxf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "EVA Router"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/router/eva) +"bxg" = ( +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/stack/tile/plasteel{ + pixel_x = 8; + pixel_y = 14 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bxh" = ( +/obj/machinery/disposal/bin{ + name = "Corpse Disposal" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/delivery/red, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bxi" = ( +/obj/structure/closet/l3closet/janitor, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/item/clothing/gloves/color/purple, +/obj/item/clothing/gloves/color/purple, +/obj/item/clothing/under/costume/maid, +/obj/item/clothing/under/costume/maid, +/obj/structure/sign/poster/official/bless_this_spess{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bxj" = ( +/turf/closed/wall/r_wall, +/area/maintenance/aft) +"bxk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bxl" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"bxm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"bxn" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "AI Core Exterior"; + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/maintenance/department/eva) +"bxo" = ( +/obj/machinery/door/airlock/external{ + name = "Telecommunications External Access"; + req_access_txt = "61" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/tcommsat/computer) +"bxp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bxq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"bxr" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/box/lights/mixed, +/obj/item/radio/off{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/restraints/legcuffs/beartrap, +/obj/item/restraints/legcuffs/beartrap, +/turf/open/floor/plasteel, +/area/janitor) +"bxs" = ( +/obj/item/storage/toolbox/mechanical/old, +/obj/item/reagent_containers/food/snacks/chips{ + pixel_x = 3; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bxt" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bxu" = ( +/obj/structure/rack, +/obj/item/circuitboard/machine/telecomms/broadcaster, +/obj/item/circuitboard/machine/telecomms/receiver, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"bxv" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"bxw" = ( +/turf/closed/wall/r_wall, +/area/maintenance/starboard/aft) +"bxx" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"bxy" = ( +/obj/item/trash/candle, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/disposal) +"bxz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/computer/station_alert, +/obj/structure/sign/poster/official/safety_eye_protection{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/paper/guides/cogstation/letter_eng, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bxA" = ( +/obj/machinery/announcement_system, +/turf/open/floor/plasteel/dark, +/area/tcommsat/computer) +"bxB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"bxC" = ( +/obj/structure/closet/emcloset/anchored, +/obj/machinery/light/small, +/turf/open/floor/plating, +/area/tcommsat/computer) +"bxD" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/door/airlock/engineering{ + name = "Telecommunications Chamber"; + req_access_txt = "61" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"bxE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = 29 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"bxF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bxG" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bxH" = ( +/turf/closed/wall, +/area/storage/tech) +"bxI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"bxJ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/rack, +/obj/item/clothing/gloves/color/fyellow, +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/obj/item/clothing/suit/hooded/wintercoat/engineering, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"bxK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bxL" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bxM" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/hallway/primary/aft) +"bxN" = ( +/obj/structure/rack, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/spawner/lootdrop/techstorage/command, +/turf/open/floor/plating, +/area/storage/tech) +"bxO" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bxP" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Central Starboard Exterior Access"; + req_access_txt = "13" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"bxQ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"bxR" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/conveyor_switch{ + id = "MiningConveyer" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bxS" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"bxT" = ( +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"bxU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bxV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bxW" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"bxX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"bxY" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"bxZ" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"bya" = ( +/obj/machinery/computer/telecomms/monitor{ + dir = 1; + network = "tcommsat" + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"byb" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/tcommsat/server) +"byc" = ( +/obj/machinery/igniter/incinerator_toxmix, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"byd" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/item/pen/fourcolor, +/obj/item/pen/fountain{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/item/stamp/hop, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/carpet/green, +/area/crew_quarters/heads/hop) +"bye" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/photocopier, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"byf" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Telecommunications Mainframe"; + req_access_txt = "61" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"byg" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"byh" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"byi" = ( +/turf/closed/wall/r_wall, +/area/tcommsat/server) +"byj" = ( +/turf/open/floor/plasteel, +/area/tcommsat/server) +"byk" = ( +/obj/machinery/telecomms/message_server, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"byl" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Telecommunications Mainframe"; + req_access_txt = "61" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/tcommsat/server) +"bym" = ( +/obj/machinery/announcement_system, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"byn" = ( +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"byo" = ( +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/pen, +/obj/item/pen{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/machinery/camera{ + c_tag = "Chapel Game Room"; + dir = 1 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"byp" = ( +/obj/machinery/telecomms/bus/preset_three, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"byq" = ( +/obj/machinery/telecomms/receiver/preset_left, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"byr" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/flashlight/lamp/green, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bys" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/router/eva) +"byt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"byu" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"byv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Starboard Exterior Access" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"byw" = ( +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"byx" = ( +/obj/machinery/telecomms/processor/preset_three, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"byy" = ( +/obj/machinery/telecomms/bus/preset_one, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"byz" = ( +/obj/machinery/telecomms/receiver/preset_right, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"byA" = ( +/obj/machinery/telecomms/processor/preset_one, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"byB" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"byC" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"byD" = ( +/obj/machinery/camera{ + c_tag = "Medbay - Lobby"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"byE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/button/massdriver{ + id = "eva_out"; + pixel_x = 24; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/router/eva) +"byF" = ( +/obj/structure/window/reinforced/spawner, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/conveyor/auto{ + dir = 4; + id = "EVA" + }, +/turf/open/floor/plating, +/area/router/eva) +"byG" = ( +/obj/machinery/telecomms/server/presets/service, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"byH" = ( +/obj/machinery/telecomms/server/presets/common, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"byI" = ( +/obj/machinery/telecomms/hub/preset, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"byJ" = ( +/obj/machinery/telecomms/server/presets/security, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"byK" = ( +/obj/machinery/telecomms/server/presets/command, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"byL" = ( +/obj/machinery/telecomms/server/presets/science, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"byM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Chapel Maintenance"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"byN" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/medical/morgue) +"byO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/tile/plasteel{ + pixel_x = 3; + pixel_y = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"byP" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"byQ" = ( +/turf/closed/wall, +/area/medical/morgue) +"byR" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"byS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"byT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"byU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"byV" = ( +/obj/structure/reagent_dispensers/water_cooler, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"byW" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + sortType = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"byX" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/structure/window/reinforced/spawner/west, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"byY" = ( +/obj/vehicle/ridden/janicart, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/item/key/janitor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/janitor) +"byZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/spawner, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/mass_driver{ + dir = 4; + id = "eva_out"; + name = "Router Driver" + }, +/turf/open/floor/plating, +/area/router/eva) +"bza" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bzb" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Ferry Docking Bay" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bzc" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/security, +/turf/open/floor/plating, +/area/storage/tech) +"bzd" = ( +/turf/open/floor/plating, +/area/storage/tech) +"bze" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/mob/living/simple_animal/cockroach, +/turf/open/floor/plating, +/area/maintenance/aft) +"bzf" = ( +/obj/structure/janitorialcart, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = 26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/janitor) +"bzg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/janitor) +"bzh" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzi" = ( +/obj/item/cardboard_cutout, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzj" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/table, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/item/assembly/flash, +/obj/item/assembly/flash, +/obj/item/clothing/glasses/meson, +/turf/open/floor/plating, +/area/storage/tech) +"bzk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/storage/tech) +"bzl" = ( +/obj/structure/closet/secure_closet, +/obj/effect/spawner/lootdrop/organ_spawner, +/obj/effect/spawner/lootdrop/organ_spawner, +/obj/effect/spawner/lootdrop/organ_spawner, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzm" = ( +/obj/machinery/conveyor{ + dir = 5; + id = "recycler" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzn" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "recycler" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzo" = ( +/obj/structure/rack, +/obj/item/clothing/suit/space/fragile, +/obj/item/clothing/head/helmet/space/fragile, +/obj/item/tank/internals/air, +/obj/item/flashlight, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"bzp" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzq" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/warning/pods{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bzr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/obj/machinery/meter, +/turf/closed/wall, +/area/hallway/primary/aft) +"bzs" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bzt" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bzu" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "MiningConveyer" + }, +/turf/open/floor/plating/airless, +/area/quartermaster/miningoffice) +"bzv" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "MiningConveyer" + }, +/obj/structure/plasticflaps, +/turf/open/floor/plating/airless, +/area/quartermaster/miningoffice) +"bzw" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 9 + }, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bzx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Interrogation Room"; + req_access_txt = "63" + }, +/turf/open/floor/plasteel/dark, +/area/security/brig) +"bzy" = ( +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bzz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/gateway) +"bzA" = ( +/obj/machinery/power/apc{ + areastring = "/area/medical/chemistry"; + dir = 1; + name = "Chemistry APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bzB" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bzC" = ( +/obj/structure/closet/toolcloset, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bzD" = ( +/obj/structure/plasticflaps, +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor/preopen{ + id = "evablock"; + name = "EVA Router" + }, +/turf/open/floor/plating, +/area/router/eva) +"bzE" = ( +/obj/structure/plasticflaps, +/obj/structure/fans/tiny, +/obj/machinery/conveyor{ + dir = 4; + id = "router_off" + }, +/turf/open/floor/plating, +/area/router) +"bzF" = ( +/obj/structure/window/reinforced/spawner, +/obj/machinery/conveyor{ + dir = 4; + id = "router_off" + }, +/turf/open/floor/plating, +/area/router) +"bzG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bzH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzI" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bzJ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bzK" = ( +/obj/machinery/disposal/bin{ + name = "Chapel Corpse Delivery" + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/full, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"bzL" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + id = "recycler" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzM" = ( +/obj/structure/window/reinforced/spawner, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/router) +"bzN" = ( +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"bzO" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "recycler"; + name = "Recycler Conveyor Control" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bzP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/unary/tank/air, +/turf/open/floor/plating, +/area/router) +"bzQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"bzR" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"bzS" = ( +/obj/structure/table, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/healthanalyzer, +/obj/item/reagent_containers/spray/cleaner, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"bzT" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/port/central"; + dir = 4; + name = "Central Port Maintenance APC"; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/maintenance/port/central) +"bzU" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 6 + }, +/obj/machinery/meter, +/turf/closed/wall, +/area/hallway/primary/aft) +"bzV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bzW" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plating, +/area/storage/tech) +"bzX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Toxins Launch Room"; + req_access_txt = "7;8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/science/mixing) +"bzY" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bzZ" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/quartermaster/miningoffice) +"bAa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bAb" = ( +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"bAc" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/gateway) +"bAd" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Central Starboard Exterior Access"; + req_access_txt = "13" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"bAe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/router) +"bAf" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"bAg" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"bAh" = ( +/obj/item/reagent_containers/food/condiment/pack/mustard{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/condiment/pack/ketchup{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/item/reagent_containers/food/condiment/peppermill{ + pixel_x = -5; + pixel_y = 7 + }, +/obj/item/reagent_containers/food/condiment/saltshaker{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/structure/table/wood/fancy, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bAi" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/router) +"bAj" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/janitor) +"bAk" = ( +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Recycler"; + req_one_access_txt = "12;50" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bAl" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/science/mixing) +"bAm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/cigbutt, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/router) +"bAn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/carpet/green, +/area/crew_quarters/heads/hop) +"bAo" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bAp" = ( +/obj/structure/bed, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/item/bedsheet/purple, +/obj/effect/landmark/start/janitor, +/turf/open/floor/plasteel, +/area/janitor) +"bAq" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bAr" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/router) +"bAs" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bAt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Fore Maintenance - Starboard"; + pixel_x = 22 + }, +/obj/structure/sign/warning{ + name = "\improper CONSTRUCTION AREA"; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"bAu" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bAv" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/structure/bed, +/obj/item/bedsheet/qm, +/obj/effect/landmark/start/quartermaster, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bAw" = ( +/obj/item/paper/fluff/bee_objectives, +/obj/item/toy/plush/beeplushie, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/hor) +"bAx" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "recycler" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bAy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bAz" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"bAA" = ( +/obj/structure/lattice, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/violet/hidden{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bAB" = ( +/obj/item/beacon, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bAC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bAD" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/window/eastleft{ + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bAE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/machinery/button/door{ + id = "chem1"; + name = "Shutters Control Button"; + pixel_x = -8; + pixel_y = 24; + req_access_txt = "29" + }, +/obj/effect/landmark/start/chemist, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bAF" = ( +/obj/machinery/gateway/centerstation, +/turf/open/floor/engine, +/area/gateway) +"bAG" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/science/mixing) +"bAH" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bAI" = ( +/obj/machinery/photocopier, +/obj/machinery/requests_console{ + department = "Law Office"; + name = "Law Office RC"; + pixel_y = 32 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/lawoffice) +"bAJ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/clothing/neck/stethoscope, +/obj/item/clothing/glasses/hud/health, +/obj/item/stamp/cmo, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/heads/cmo"; + dir = 1; + name = "Chief Medical Officer's Office APC"; + pixel_y = 24 + }, +/mob/living/simple_animal/pet/cat/Runtime, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"bAK" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bAL" = ( +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: WASTE EJECTION"; + pixel_x = -32 + }, +/turf/open/space/basic, +/area/space) +"bAM" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bAN" = ( +/obj/structure/rack, +/obj/item/clothing/suit/space/fragile, +/obj/item/clothing/head/helmet/space/fragile, +/obj/item/tank/internals/air, +/obj/item/flashlight, +/obj/machinery/airalarm{ + dir = 1; + locked = 0; + pixel_y = -22 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"bAO" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"bAP" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bAQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bAR" = ( +/obj/machinery/door/airlock/engineering/glass{ + name = "Thermo-Electric Generator Room"; + req_access_txt = "10" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"bAS" = ( +/turf/closed/wall/r_wall/rust, +/area/maintenance/disposal) +"bAT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bAU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bAV" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bAW" = ( +/obj/structure/sign/poster/official/get_your_legs, +/turf/closed/wall, +/area/hallway/secondary/exit) +"bAX" = ( +/obj/structure/table/wood, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/item/paper/fluff/cogstation/letter_cap{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/flashlight/lamp, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/captain) +"bAY" = ( +/obj/machinery/status_display, +/turf/closed/wall, +/area/hallway/secondary/exit) +"bAZ" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet, +/area/chapel/main) +"bBa" = ( +/obj/structure/sign/poster/official/help_others, +/turf/closed/wall, +/area/hallway/secondary/exit) +"bBb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/grille/broken, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/department/chapel) +"bBc" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 8 + }, +/area/hallway/secondary/exit) +"bBd" = ( +/obj/structure/table, +/obj/item/reagent_containers/food/snacks/popcorn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"bBe" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/structure/sign/warning/pods{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bBf" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/storage/tech) +"bBg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/storage/tech) +"bBh" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "recycler" + }, +/obj/structure/sign/warning/vacuum{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBi" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bBj" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/crew_quarters/heads/captain"; + dir = 4; + name = "Captain's Quarters APC"; + pixel_x = 26 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"bBk" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/router) +"bBl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bBm" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/secondary/exit) +"bBn" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bBo" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/door/airlock/engineering/glass{ + name = "Thermo-Electric Generator"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"bBp" = ( +/obj/machinery/conveyor/inverted{ + dir = 9; + id = "recycler" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBq" = ( +/obj/machinery/recycler, +/obj/machinery/conveyor{ + dir = 4; + id = "recycler" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBr" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "recycler" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBs" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bBt" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/captain) +"bBu" = ( +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"bBv" = ( +/turf/closed/wall, +/area/router) +"bBw" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/secondary/exit) +"bBx" = ( +/obj/structure/table, +/obj/item/storage/toolbox/electrical, +/obj/item/clothing/gloves/color/yellow, +/obj/item/multitool, +/obj/item/t_scanner, +/turf/open/floor/plating, +/area/storage/tech) +"bBy" = ( +/obj/machinery/recharge_station, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bBz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/conveyor{ + dir = 4; + id = "EngiCargoConveyer" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bBA" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/structure/ore_box, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bBB" = ( +/obj/machinery/conveyor/auto{ + id = "router" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + sortType = 4 + }, +/turf/open/floor/plating, +/area/router) +"bBC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/router) +"bBD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/conveyor{ + dir = 4; + id = "recycler" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBE" = ( +/obj/structure/grille, +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"bBF" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/router) +"bBG" = ( +/obj/machinery/conveyor/inverted{ + dir = 10; + id = "recycler" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bBH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/router) +"bBI" = ( +/obj/machinery/computer/shuttle/mining, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bBJ" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"bBK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/door{ + id = "recycleraccess"; + name = "Recycler Access Control"; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bBL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bBM" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bBN" = ( +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_toxmix{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/mixing) +"bBO" = ( +/turf/closed/wall/r_wall, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"bBP" = ( +/obj/machinery/door/firedoor, +/obj/structure/table/reinforced, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/door/window/eastright{ + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bBQ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"bBR" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + dir = 1; + name = "Computer Core APC"; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"bBS" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"bBT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bBU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/structure/sign/departments/cargo{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bBV" = ( +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/router) +"bBW" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bBX" = ( +/obj/machinery/door/airlock/external{ + name = "Routing Depot"; + req_one_access_txt = "10;31" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/router) +"bBY" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + name = "EVA Router"; + req_access_txt = "19" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/router/eva) +"bBZ" = ( +/turf/closed/wall, +/area/hallway/secondary/exit) +"bCa" = ( +/obj/machinery/power/smes/engineering, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"bCb" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"bCc" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/router/eva) +"bCd" = ( +/obj/effect/landmark/start/captain, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/captain) +"bCe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Head of Personnel's Desk"; + departmentType = 5; + name = "Head of Personnel RC"; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"bCf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bCg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bCh" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/medbay/central) +"bCi" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bCj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/disposal) +"bCk" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/closed/wall, +/area/maintenance/disposal) +"bCl" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/machinery/atmospherics/components/binary/valve/digital/on{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"bCm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bCn" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"bCo" = ( +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"bCp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bCq" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "recycler" + }, +/obj/machinery/door/poddoor{ + id = "recycleraccess"; + name = "Recycler Access" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bCr" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bCs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bCt" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/storage/box/engineer{ + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bCu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/router/eva) +"bCv" = ( +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bCw" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/conveyor/auto{ + dir = 8; + id = "eva" + }, +/turf/open/floor/plating, +/area/router/eva) +"bCx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bCy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/spawner/north, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/conveyor/auto{ + dir = 8; + id = "eva" + }, +/turf/open/floor/plating, +/area/router/eva) +"bCz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/under/misc/overalls, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel, +/area/storage/primary) +"bCA" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bCB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bCC" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"bCD" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1; + sortType = 29 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bCE" = ( +/obj/machinery/conveyor/auto{ + dir = 8; + id = "eva" + }, +/obj/structure/plasticflaps, +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor/preopen{ + id = "evablock"; + name = "EVA Router" + }, +/turf/open/floor/plating, +/area/router/eva) +"bCF" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/circuit, +/area/ai_monitored/turret_protected/ai) +"bCG" = ( +/obj/item/cigbutt, +/obj/item/radio/intercom{ + frequency = 1359; + name = "Station Intercom (Security)"; + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bCH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bCI" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bCJ" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/kitchen/backroom) +"bCK" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bCL" = ( +/turf/closed/wall/rust, +/area/security/detectives_office) +"bCM" = ( +/turf/closed/wall/r_wall/rust, +/area/security/detectives_office) +"bCN" = ( +/obj/structure/filingcabinet, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bCO" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"bCP" = ( +/obj/structure/table/wood, +/obj/item/storage/briefcase, +/obj/item/taperecorder, +/obj/item/radio{ + pixel_x = -6 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bCQ" = ( +/obj/structure/table/wood, +/obj/machinery/computer/med_data/laptop{ + dir = 8; + pixel_y = 2 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bCR" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/mass_driver{ + dir = 8; + id = "airbridge_in"; + name = "Router Driver" + }, +/turf/open/floor/plating, +/area/router) +"bCS" = ( +/obj/structure/closet, +/obj/machinery/camera{ + c_tag = "Central Plaza - Legal Desk"; + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"bCT" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/sorting/mail/flip, +/obj/machinery/conveyor{ + dir = 8; + id = "router_off" + }, +/turf/open/floor/plating, +/area/router) +"bCU" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/maintenance/disposal) +"bCV" = ( +/turf/open/floor/plating/airless, +/area/maintenance/disposal) +"bCW" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/machinery/door/airlock/engineering/glass{ + name = "Thermo-Electric Generator"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"bCX" = ( +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/obj/item/reagent_containers/glass/beaker/sulphuric, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"bCY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/sign/warning/nosmoking{ + pixel_x = 32 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bCZ" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "router_off" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/router) +"bDa" = ( +/obj/structure/bodycontainer/morgue, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"bDb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external{ + name = "Recycler Exterior Access"; + req_one_access_txt = "13;50" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"bDc" = ( +/obj/machinery/vending/security, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bDd" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Aft Maintenance - Port"; + pixel_x = 22 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bDe" = ( +/obj/machinery/disposal/bin{ + name = "Corpse Delivery" + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/delivery/red, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"bDf" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/service, +/turf/open/floor/plating, +/area/storage/tech) +"bDg" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/medical, +/turf/open/floor/plating, +/area/storage/tech) +"bDh" = ( +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/rnd, +/turf/open/floor/plating, +/area/storage/tech) +"bDi" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock{ + name = "Service Hallway"; + req_one_access_txt = "25;26;28;35" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"bDj" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"bDk" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 15 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"bDl" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bDm" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/hallway/primary/aft"; + dir = 1; + name = "Aft Primary Hallway APC"; + pixel_x = 1; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bDn" = ( +/obj/machinery/icecream_vat, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/kitchen/backroom) +"bDo" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"bDp" = ( +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"bDq" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/kitchen/backroom) +"bDr" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/crew_quarters/kitchen/backroom) +"bDs" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/kitchen/backroom) +"bDt" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/crew_quarters/kitchen/backroom) +"bDu" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/item/book/manual/wiki/barman_recipes, +/obj/item/reagent_containers/rag, +/obj/structure/table/wood/fancy, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bDv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"bDw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AIChamberShutter"; + name = "AI Chamber Shutters" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"bDx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"bDy" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bDz" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Service Hallway - Aft"; + pixel_x = 22 + }, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"bDA" = ( +/turf/closed/wall/r_wall, +/area/hallway/secondary/service) +"bDB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"bDC" = ( +/turf/open/floor/plating, +/area/hallway/secondary/service) +"bDD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/conveyor{ + dir = 8; + id = "router_off" + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/router) +"bDE" = ( +/obj/structure/closet/crate/freezer, +/obj/item/reagent_containers/food/snacks/store/cheesewheel, +/obj/item/reagent_containers/food/snacks/grown/pineapple, +/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, +/obj/item/reagent_containers/food/snacks/grown/ambrosia/vulgaris, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/item/reagent_containers/food/snacks/grown/tomato, +/obj/item/reagent_containers/food/snacks/grown/bluecherries, +/obj/item/reagent_containers/food/snacks/grown/citrus/lime, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"bDF" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"bDG" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"bDH" = ( +/obj/machinery/atmospherics/components/unary/tank/air, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"bDI" = ( +/obj/structure/closet/crate/freezer, +/obj/effect/spawner/lootdrop/three_course_meal, +/obj/item/reagent_containers/food/snacks/chocolatebar, +/obj/item/reagent_containers/food/snacks/chocolatebar, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"bDJ" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"bDK" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/hallway/secondary/service) +"bDL" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bDM" = ( +/obj/structure/table/reinforced, +/obj/item/transfer_valve{ + pixel_x = 6 + }, +/obj/item/transfer_valve{ + pixel_x = 6 + }, +/obj/item/transfer_valve, +/obj/item/transfer_valve, +/obj/item/transfer_valve{ + pixel_x = -6 + }, +/obj/item/transfer_valve{ + pixel_x = -6 + }, +/obj/machinery/camera{ + c_tag = "Toxins Lab - Starboard"; + dir = 8; + pixel_y = -22 + }, +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (Common)"; + pixel_x = 28 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bDN" = ( +/obj/machinery/vending/cola/random, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bDO" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"bDP" = ( +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/circuit, +/area/bridge) +"bDQ" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bDR" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bDS" = ( +/turf/open/floor/plasteel/stairs, +/area/crew_quarters/bar) +"bDT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall, +/area/science/robotics/lab) +"bDU" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AIChamberShutter"; + name = "AI Chamber Shutters" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"bDV" = ( +/turf/open/floor/plasteel/stairs/left, +/area/crew_quarters/bar) +"bDW" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "AI Chamber"; + req_access_txt = "65" + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bDX" = ( +/turf/open/floor/plasteel/stairs/right, +/area/crew_quarters/bar) +"bDY" = ( +/obj/structure/sign/barsign, +/turf/closed/wall, +/area/crew_quarters/bar) +"bDZ" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 26 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bEa" = ( +/obj/structure/chair/stool/bar, +/turf/open/floor/carpet/green, +/area/crew_quarters/bar) +"bEb" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/carpet/green, +/area/crew_quarters/bar) +"bEc" = ( +/obj/structure/table, +/obj/item/radio/off{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/item/radio/off{ + pixel_x = 7; + pixel_y = -3 + }, +/obj/item/radio/off{ + pixel_x = 4; + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/circuit, +/area/bridge) +"bEd" = ( +/obj/machinery/vending/cigarette, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bEe" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/conveyor{ + dir = 8; + id = "router_off" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4 + }, +/turf/open/floor/plating, +/area/router) +"bEf" = ( +/obj/structure/reagent_dispensers, +/obj/effect/spawner/lootdrop/maintenance, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bEg" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"bEh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/conveyor{ + dir = 8; + id = "router_off" + }, +/turf/open/floor/plating, +/area/router) +"bEi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"bEj" = ( +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/structure/closet/crate, +/obj/machinery/camera{ + c_tag = "Waste Disposal - Starboard" + }, +/obj/item/stack/tile/noslip/thirty, +/obj/structure/sign/poster/official/ue_no{ + pixel_y = 32 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/disposal) +"bEk" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bEl" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bEm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel's Office"; + req_access_txt = "57" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"bEn" = ( +/obj/machinery/computer/card{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 28 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint) +"bEo" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"bEp" = ( +/turf/closed/wall/r_wall, +/area/maintenance/solars/starboard/fore) +"bEq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/captain) +"bEr" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"bEs" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/ai_monitored/storage/eva"; + dir = 4; + name = "EVA APC"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/checker, +/area/ai_monitored/storage/eva) +"bEt" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"bEu" = ( +/obj/structure/sign/warning{ + name = "\improper CONSTRUCTION AREA"; + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bEv" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"bEw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Starboard Bow Solar Maintenance"; + dir = 1 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"bEx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/obj/machinery/conveyor{ + dir = 8; + id = "router_off" + }, +/turf/open/floor/plating, +/area/router) +"bEy" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/stock_parts/cell/high/plus, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"bEz" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/carpet/blue, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"bEA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "Starboard Bow Solar Maintenance"; + req_access_txt = "10" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/fore) +"bEB" = ( +/obj/structure/rack, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/item/radio/off{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/flashlight, +/obj/item/crowbar/red, +/obj/item/crowbar/red{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/radio/off{ + pixel_x = -8 + }, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/obj/machinery/camera{ + c_tag = "Starboard Bow Maintenance - Port"; + pixel_x = 22 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bEC" = ( +/obj/structure/table/glass, +/obj/item/storage/fancy/donut_box, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bED" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"bEE" = ( +/obj/structure/table, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/under/shorts/red, +/obj/item/clothing/gloves/boxing{ + pixel_y = 8 + }, +/obj/item/clothing/gloves/boxing{ + pixel_y = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"bEF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bEG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"bEH" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/kitchen/backroom) +"bEI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"bEJ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bEK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/machinery/space_heater, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"bEL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bEM" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"bEN" = ( +/obj/machinery/computer/communications{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/machinery/camera{ + c_tag = "Bridge - Captain's Quarters"; + dir = 8; + pixel_y = -22 + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Captain's Desk"; + departmentType = 5; + name = "Captain RC"; + pixel_x = 30 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/captain) +"bEO" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"bEP" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/structure/sign/poster/official/high_class_martini{ + pixel_x = -32 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"bEQ" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/disposal"; + dir = 8; + name = "Waste Disposal APC"; + pixel_x = -24 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bER" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/turf/open/floor/carpet/green, +/area/crew_quarters/bar) +"bES" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet/blue, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"bET" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"bEU" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"bEV" = ( +/obj/item/radio/intercom{ + frequency = 1359; + name = "Station Intercom (Security)"; + pixel_x = 26 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bEW" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bEX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"bEY" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/router) +"bEZ" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "AIChamberShutter"; + name = "AI Chamber Shutters" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai) +"bFa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plating, +/area/router) +"bFb" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/router) +"bFc" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bFd" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"bFe" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/reagent_containers/glass/bucket, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"bFf" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/aiModule/supplied/oxygen{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/item/aiModule/supplied/quarantine{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/aiModule/zeroth/oneHuman{ + pixel_y = 4 + }, +/obj/effect/spawner/lootdrop/aimodule_harmful{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/aiModule/supplied/protectStation{ + pixel_x = -2 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"bFg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/suit_storage_unit/engine, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"bFh" = ( +/obj/effect/turf_decal/tile/brown, +/obj/machinery/light, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bFi" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bFj" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"bFk" = ( +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"bFl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/xenobiology) +"bFm" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/line, +/obj/item/paper_bin, +/obj/item/pen/fourcolor, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bFn" = ( +/turf/open/floor/plating/asteroid, +/area/chapel/main) +"bFo" = ( +/obj/machinery/smartfridge/extract/preloaded, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bFp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bFq" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/line, +/obj/item/slime_scanner, +/obj/item/slime_scanner, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bFr" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"bFs" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#c1caff" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bFt" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bFu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics"; + name = "robotics lab shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"bFv" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"bFw" = ( +/obj/machinery/monkey_recycler, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/science/xenobiology"; + name = "Xenobiology Lab APC"; + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bFx" = ( +/obj/machinery/mecha_part_fabricator, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bFy" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/captain) +"bFz" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/item/paper/guides/cogstation/janitor, +/turf/open/floor/plasteel, +/area/janitor) +"bFA" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bFB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/science/lab) +"bFC" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/vending/snack/random, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bFD" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bFE" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/maintenance/aft) +"bFF" = ( +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/storage/tech) +"bFG" = ( +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bFH" = ( +/obj/machinery/power/apc{ + name = "Customs APC"; + pixel_y = -24 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"bFI" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"bFJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bFK" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"bFL" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"bFM" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"bFN" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"bFO" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"bFP" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"bFQ" = ( +/obj/structure/table, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/under/shorts/blue, +/obj/item/clothing/gloves/boxing/blue{ + pixel_y = 8 + }, +/obj/item/clothing/gloves/boxing/blue{ + pixel_y = 8 + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"bFR" = ( +/obj/item/kirbyplants{ + icon_state = "plant-08" + }, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"bFS" = ( +/obj/machinery/light, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"bFT" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"bFU" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"bFV" = ( +/obj/structure/window/reinforced, +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"bFW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"bFX" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bFY" = ( +/obj/structure/lattice/catwalk, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"bFZ" = ( +/obj/machinery/chem_heater, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bGa" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bGb" = ( +/obj/machinery/conveyor/auto{ + id = "router" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/router) +"bGc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"bGd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"bGe" = ( +/mob/living/simple_animal/crab/Coffee, +/turf/open/floor/plating/asteroid, +/area/chapel/main) +"bGf" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/security/main) +"bGg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"bGh" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/violet/visible{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bGi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"bGj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"bGk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/router) +"bGl" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/poster/contraband/punch_shit{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"bGm" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"bGn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bGo" = ( +/obj/structure/rack, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/head/hardhat/red{ + pixel_y = 6 + }, +/obj/item/clothing/mask/gas, +/obj/item/tank/internals/air, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bGp" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"bGq" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 2; + name = "2maintenance loot spawner" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/fore) +"bGr" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bGs" = ( +/obj/machinery/vending/assist, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"bGt" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bGu" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"bGv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Arcade" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet/blue, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"bGw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Fitness Room" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"bGx" = ( +/obj/effect/spawner/structure/window, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/crew_quarters/fitness) +"bGy" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_x = 26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/button/massdriver{ + id = "eng_in"; + name = "mass driver button (Engineering)"; + pixel_x = 24; + pixel_y = -8 + }, +/obj/machinery/button/massdriver{ + id = "router_out"; + name = "mass driver button (Other)"; + pixel_x = 24; + pixel_y = 12 + }, +/turf/open/floor/plasteel, +/area/router) +"bGz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/fore) +"bGA" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bGB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"bGC" = ( +/obj/structure/closet/emcloset, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/camera{ + c_tag = "Starboard Quarter Maintenance - Starboard"; + network = list("ss13","rd") + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bGD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"bGE" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bGF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Starboard Quarter Solar Access"; + req_access_txt = "10" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"bGG" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"bGH" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/lootdrop/grille_or_trash, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bGI" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/central) +"bGJ" = ( +/obj/structure/rack, +/obj/item/storage/box/bodybags, +/obj/item/clothing/gloves/color/grey, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"bGK" = ( +/obj/machinery/conveyor{ + id = "starboard_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"bGL" = ( +/obj/structure/chair{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bGM" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-20"; + pixel_y = 3 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bGN" = ( +/obj/structure/closet/wardrobe/white, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bGO" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/machinery/door/window/eastright{ + name = "Bathroom Stall" + }, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"bGP" = ( +/obj/machinery/mass_driver{ + dir = 1; + id = "secserv"; + name = "Router Driver" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"bGQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/violet/hidden, +/turf/open/space/basic, +/area/space/nearstation) +"bGR" = ( +/obj/structure/closet/wardrobe/grey, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/clothing/under/misc/staffassistant, +/obj/item/clothing/under/misc/staffassistant, +/obj/item/clothing/under/misc/staffassistant, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bGS" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/machinery/door/window/eastright{ + name = "Bathroom Stall" + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"bGT" = ( +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet) +"bGU" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/closed/wall, +/area/maintenance/port/fore) +"bGV" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/closed/wall, +/area/maintenance/port/fore) +"bGW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/maintenance/port/fore) +"bGX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/sign/poster/contraband/busty_backdoor_xeno_babes_6{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"bGY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"bGZ" = ( +/obj/structure/closet/crate/internals, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/router/eva) +"bHa" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/router/eva"; + dir = 4; + name = "EVA Router APC"; + pixel_x = 24 + }, +/obj/machinery/button/door{ + id = "evablock"; + name = "Router Access Control"; + pixel_x = 24; + pixel_y = 10; + req_access_txt = "19" + }, +/turf/open/floor/plasteel, +/area/router/eva) +"bHb" = ( +/obj/structure/closet/wardrobe/black, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bHc" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/obj/structure/window/reinforced/spawner/north, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/router) +"bHd" = ( +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bHe" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/violet/hidden, +/turf/open/space/basic, +/area/space/nearstation) +"bHf" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bHg" = ( +/obj/machinery/atmospherics/pipe/simple/violet/visible, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bHh" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"bHi" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"bHj" = ( +/obj/structure/table, +/obj/structure/bedsheetbin/towel, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bHk" = ( +/turf/closed/wall, +/area/crew_quarters/locker) +"bHl" = ( +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"bHm" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg1" + }, +/area/maintenance/port/fore) +"bHn" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bHo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bHp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"bHq" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bHr" = ( +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bHs" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bHt" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bHu" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bHv" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/clothing/under/misc/staffassistant, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bHw" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/item/clothing/under/misc/staffassistant, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bHx" = ( +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bHy" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/item/kirbyplants{ + icon_state = "plant-14" + }, +/turf/open/floor/plasteel, +/area/crew_quarters/locker) +"bHz" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"bHA" = ( +/obj/machinery/atmospherics/pipe/simple/violet/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"bHB" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/crew_quarters/locker) +"bHC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bHD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"bHE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bHF" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/timer{ + pixel_x = -5 + }, +/obj/item/assembly/timer{ + pixel_y = -7 + }, +/obj/item/assembly/timer{ + pixel_y = 6 + }, +/obj/item/assembly/timer{ + pixel_x = 8 + }, +/obj/machinery/airalarm/unlocked{ + dir = 8; + pixel_x = 24 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bHG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"bHH" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/space_cube{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/gateway) +"bHI" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bHJ" = ( +/obj/item/kirbyplants{ + icon_state = "plant-03" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bHK" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/medical/morgue) +"bHL" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bHM" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/storage/tech) +"bHN" = ( +/turf/closed/wall, +/area/maintenance/solars/starboard/aft) +"bHO" = ( +/obj/machinery/atmospherics/pipe/simple/violet/hidden{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"bHP" = ( +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"bHQ" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bHR" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bHS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"bHT" = ( +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bHU" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bHV" = ( +/obj/machinery/processor/slime, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bHW" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bHX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Port Bow Maintenance"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bHY" = ( +/obj/machinery/computer/camera_advanced/xenobio{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bHZ" = ( +/turf/closed/indestructible{ + desc = "A wall impregnated with Fixium, able to withstand massive explosions with ease"; + icon_state = "riveted"; + name = "hyper-reinforced wall" + }, +/area/science/test_area) +"bIa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bIb" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bIc" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/sorting/mail{ + dir = 1; + sortType = 14 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bId" = ( +/obj/structure/table, +/obj/item/mmi, +/obj/item/mmi, +/obj/item/storage/box/bodybags, +/obj/structure/window/reinforced/spawner/west, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"bIe" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 1 + }, +/obj/item/stack/sheet/glass/fifty{ + pixel_x = 1 + }, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/obj/machinery/requests_console{ + department = "Robotics"; + departmentType = 2; + name = "Robotics RC"; + pixel_y = 31; + receive_ore_updates = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bIf" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/door/airlock/maintenance{ + name = "Chemistry Maintenance"; + req_access_txt = "5; 33" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/medical/chemistry) +"bIg" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/item/reagent_containers/food/snacks/chips, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bIh" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery/white, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bIi" = ( +/obj/machinery/smartfridge/chemistry/preloaded, +/turf/closed/wall, +/area/medical/chemistry) +"bIj" = ( +/obj/structure/table/optable{ + name = "Robotics Operating Table" + }, +/obj/item/tank/internals/anesthetic, +/obj/item/clothing/mask/breath, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"bIk" = ( +/turf/closed/wall/r_wall, +/area/science/robotics/lab) +"bIl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"bIm" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bIn" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#cee5d2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bIo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/directions/evac{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bIp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bIq" = ( +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bIr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"bIs" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bIt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bIu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_access_txt = "5;6" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"bIv" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"bIw" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"bIx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bIy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "External Solar Access"; + req_access_txt = "10;13" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"bIz" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"bIA" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"bIB" = ( +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"bIC" = ( +/obj/machinery/conveyor/auto{ + id = "disposal" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bID" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"bIE" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"bIF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"bIG" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bIH" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bII" = ( +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bIJ" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bIK" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/item/extinguisher{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/extinguisher, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bIL" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/item/reagent_containers/glass/beaker/large, +/obj/item/reagent_containers/dropper, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bIM" = ( +/obj/machinery/shower{ + desc = "The HS-451. Standard Nanotrasen Hygiene Division design, although it looks like this one was installed more recently."; + dir = 8; + name = "emergency shower"; + pixel_y = -4 + }, +/obj/structure/window/reinforced/spawner/north, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"bIN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bIO" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bIP" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bIQ" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bIR" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bIS" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bIT" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/violet/hidden, +/turf/open/space/basic, +/area/space/nearstation) +"bIU" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bIV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"bIW" = ( +/obj/structure/table/wood, +/obj/machinery/light, +/obj/item/reagent_containers/food/drinks/bottle/absinthe, +/obj/item/stack/spacecash/c20, +/obj/item/coin/gold, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/carpet/green, +/area/crew_quarters/heads/hop) +"bIX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"bIY" = ( +/obj/machinery/atmospherics/pipe/simple/violet/hidden, +/turf/open/space/basic, +/area/space) +"bIZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bJa" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bJb" = ( +/obj/machinery/bloodbankgen, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bJc" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bJd" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bJe" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bJf" = ( +/obj/machinery/door/airlock/maintenance{ + name = "Chemistry Maintenance"; + req_access_txt = "5; 33" + }, +/obj/machinery/door/firedoor, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"bJg" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/storage/box/rxglasses{ + pixel_x = 2 + }, +/obj/item/pen, +/obj/structure/window/reinforced/spawner/west, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bJh" = ( +/obj/structure/sign/warning/biohazard, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/medical/morgue) +"bJi" = ( +/obj/structure/bodycontainer/morgue, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"bJj" = ( +/obj/machinery/atmospherics/pipe/simple/violet/visible{ + dir = 6 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bJk" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"bJl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bJm" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/lawoffice"; + dir = 1; + name = "Information Office APC"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"bJn" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/item/clothing/mask/muzzle, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bJo" = ( +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit) +"bJp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bJq" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit) +"bJr" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/on{ + dir = 1 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"bJs" = ( +/obj/structure/rack, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/item/clothing/suit/hooded/wintercoat/science, +/obj/item/clothing/suit/hooded/wintercoat/science, +/obj/item/clothing/shoes/winterboots, +/obj/item/clothing/shoes/winterboots, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bJt" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bJu" = ( +/obj/effect/turf_decal/loading_area, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/science/lab"; + dir = 8; + name = "Research and Development APC"; + pixel_x = -24 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bJv" = ( +/obj/machinery/atmospherics/pipe/simple/violet/visible{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bJw" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bJx" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bJy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/public/glass, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bJz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bJA" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research{ + name = "Circuitry Lab"; + req_access_txt = "47" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bJB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bJC" = ( +/obj/machinery/camera{ + c_tag = "Library"; + network = list("ss13","rd") + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"bJD" = ( +/obj/machinery/disposal/bin{ + name = "Corpse Disposal Unit" + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/stripes/red/full, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"bJE" = ( +/obj/machinery/mecha_part_fabricator, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bJF" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#cee5d2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bJG" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bJH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"bJI" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bJJ" = ( +/obj/machinery/computer/med_data, +/obj/structure/window/reinforced/spawner/east, +/obj/structure/window/reinforced/spawner/west, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"bJK" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/medical/medbay/lobby) +"bJL" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/west, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"bJM" = ( +/obj/machinery/camera/preset/toxins{ + dir = 4 + }, +/obj/item/target, +/turf/open/floor/plating/airless, +/area/science/test_area) +"bJN" = ( +/obj/machinery/clonepod, +/obj/effect/turf_decal/bot, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"bJO" = ( +/obj/structure/table, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/item/storage/firstaid/radbgone, +/obj/item/reagent_containers/glass/beaker/synthflesh, +/obj/structure/window/reinforced/spawner/west, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"bJP" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"bJQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"bJR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bJS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bJT" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bJU" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"bJV" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer/on{ + dir = 1; + name = "euthanization chamber freezer" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bJW" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bJX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bJY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/science/mixing) +"bJZ" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology - Main Access"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bKa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bKb" = ( +/obj/machinery/chem_heater, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bKc" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -6 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 4 + }, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bKd" = ( +/obj/structure/table, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/assembly/flash/handheld, +/obj/item/clothing/glasses/welding, +/obj/item/clothing/glasses/welding, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bKe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics"; + name = "robotics lab shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"bKf" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bKg" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"bKh" = ( +/obj/machinery/door/window/westleft{ + name = "Operating Theatre"; + req_access_txt = "45" + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"bKi" = ( +/obj/machinery/disposal/bin{ + name = "Morgue Delivery Bin" + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/stripes/red/full, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bKj" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bKk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Morgue Maintenance"; + req_access_txt = "6" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"bKl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/plating, +/area/router) +"bKm" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/item/storage/box/bodybags, +/obj/structure/table, +/obj/structure/table, +/obj/item/bodybag, +/obj/item/pen/blue, +/obj/item/pen/red{ + pixel_y = 6 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"bKn" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/red/full, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"bKo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/quartermaster/miningoffice) +"bKp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hop) +"bKq" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bKr" = ( +/obj/item/stack/packageWrap, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/router) +"bKs" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bKt" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#cee5d2" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bKu" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bKv" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bKw" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/structure/sign/poster/official/nanotrasen_logo{ + pixel_y = -32 + }, +/turf/open/floor/wood, +/area/library) +"bKx" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"bKy" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bKz" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/genetics) +"bKA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/medical/genetics) +"bKB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bKC" = ( +/obj/structure/sign/warning/biohazard, +/turf/closed/wall, +/area/medical/genetics) +"bKD" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Mining Dock Ferry"; + req_access_txt = "48" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bKE" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bKF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bKG" = ( +/obj/machinery/computer/cargo/request{ + dir = 1 + }, +/obj/machinery/keycard_auth{ + pixel_x = 24; + pixel_y = -8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/carpet/green, +/area/crew_quarters/heads/hop) +"bKH" = ( +/obj/item/beacon, +/turf/open/floor/plating/airless, +/area/science/test_area) +"bKI" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/engine, +/area/science/mixing) +"bKJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/crew_quarters/heads/hop) +"bKK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hop) +"bKL" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/router) +"bKM" = ( +/turf/open/floor/engine, +/area/science/xenobiology) +"bKN" = ( +/obj/structure/table, +/obj/item/storage/backpack/duffelbag/med/surgery, +/obj/structure/window/reinforced/spawner/west, +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"bKO" = ( +/obj/structure/window/reinforced, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"bKP" = ( +/obj/machinery/door/window/southright, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"bKQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"bKR" = ( +/obj/structure/bookcase/random/religion, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"bKS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Genetics Lab"; + req_access_txt = "9" + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bKT" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bKU" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/vending/wardrobe/gene_wardrobe, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bKV" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/item/clipboard{ + pixel_y = 3 + }, +/obj/item/paper_bin, +/obj/item/hand_labeler, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bKW" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/folder/white, +/obj/item/storage/pill_bottle/mannitol{ + pixel_x = 4 + }, +/obj/item/storage/pill_bottle/mutadone, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bKX" = ( +/obj/structure/table_frame, +/obj/item/t_scanner{ + pixel_x = -4 + }, +/obj/machinery/camera{ + c_tag = "Supply - Warehouse Fore"; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bKY" = ( +/turf/closed/wall, +/area/medical/genetics) +"bKZ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"bLa" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bLb" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/item/stack/ore/glass, +/obj/item/stack/ore/iron, +/obj/item/stack/ore/silver, +/obj/item/stack/ore/silver, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bLc" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bLd" = ( +/mob/living/simple_animal/slime, +/turf/open/floor/engine, +/area/science/xenobiology) +"bLe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hop) +"bLf" = ( +/obj/machinery/door/window/eastleft{ + name = "Containment Pen"; + req_one_access_txt = "55" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bLg" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bLh" = ( +/obj/structure/bed, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = -28 + }, +/obj/item/bedsheet/captain, +/obj/effect/landmark/start/captain, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/captain) +"bLi" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bLj" = ( +/obj/machinery/door/window/westright{ + name = "Containment Pen"; + req_one_access_txt = "55" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bLk" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/captain) +"bLl" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bLm" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 1; + locked = 0; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"bLn" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/item/caution, +/obj/item/shovel, +/obj/item/stack/tile/plasteel{ + pixel_x = 10; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bLo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/router) +"bLp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"bLq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Genetics Lab"; + req_access_txt = "9" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bLr" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bLs" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/start/geneticist, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bLt" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bLu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bLv" = ( +/obj/machinery/light, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bLw" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 6 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bLx" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bLy" = ( +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bLz" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"bLA" = ( +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/structure/table, +/obj/item/stack/sheet/metal, +/obj/item/stack/sheet/glass, +/obj/item/flashlight, +/obj/item/assembly/health, +/obj/item/assembly/voice, +/obj/item/assembly/timer, +/obj/item/assembly/infra, +/obj/item/assembly/igniter, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bLB" = ( +/obj/machinery/light, +/obj/item/target, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"bLC" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"bLD" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/plating, +/area/maintenance/aft) +"bLE" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/button/ignition/incinerator/toxmix{ + pixel_x = -24; + pixel_y = 8 + }, +/obj/machinery/button/door/incinerator_vent_toxmix{ + pixel_x = -24; + pixel_y = -2 + }, +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/science/mixing) +"bLF" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bLG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Research Aft"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bLH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bLI" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"bLJ" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bLK" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bLL" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bLM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/genetics) +"bLN" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bLO" = ( +/obj/item/pipe{ + pixel_x = -3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/mob/living/simple_animal/bot/cleanbot{ + auto_patrol = 1; + icon_state = "cleanbot1"; + name = "Mopficcer Sweepsky" + }, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bLP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bLQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bLR" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bLS" = ( +/obj/machinery/atmospherics/pipe/simple/violet/visible, +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bLT" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bLU" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bLV" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bLW" = ( +/obj/machinery/vending/coffee, +/turf/open/floor/plasteel/cafeteria, +/area/medical/medbay/central) +"bLX" = ( +/obj/item/kirbyplants{ + icon_state = "plant-02" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bLY" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bLZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bMa" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bMb" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bMc" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bMd" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/white/full, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bMe" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bMf" = ( +/obj/machinery/computer/scan_consolenew{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bMg" = ( +/obj/machinery/dna_scannernew, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"bMh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/captain) +"bMi" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bMj" = ( +/turf/closed/wall, +/area/medical/medbay/central) +"bMk" = ( +/turf/closed/wall, +/area/medical/virology) +"bMl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/medical/virology) +"bMm" = ( +/obj/structure/table/wood, +/obj/machinery/light, +/obj/item/clothing/under/misc/assistantformal{ + pixel_y = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"bMn" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Monkey Pen"; + req_one_access_txt = "9;39" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bMo" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bMp" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bMq" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Starboard Quarter Maintenance - Port"; + dir = 8; + pixel_y = -22 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bMr" = ( +/obj/machinery/vending/wardrobe/viro_wardrobe, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bMs" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bMt" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 + }, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bMu" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bMv" = ( +/turf/open/floor/grass, +/area/medical/virology) +"bMw" = ( +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/virology) +"bMx" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/sign/warning/biohazard{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bMy" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/sign/warning/biohazard{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bMz" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/router"; + dir = 4; + name = "Router APC"; + pixel_x = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 19 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/router) +"bMA" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bMB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall, +/area/router) +"bMC" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bMD" = ( +/obj/structure/flora/tree/palm, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/grass, +/area/medical/virology) +"bME" = ( +/obj/structure/flora/tree/palm, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/grass, +/area/medical/virology) +"bMF" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/window/southright{ + name = "Cloning Access"; + req_one_access_txt = "9;45" + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bMG" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bMH" = ( +/obj/structure/table, +/obj/machinery/recharger, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/item/crowbar, +/obj/machinery/requests_console{ + department = "Mining"; + name = "Mining RC"; + pixel_x = -30 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bMI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/grille/broken, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 4; + sortType = 15 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/router) +"bMJ" = ( +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bMK" = ( +/obj/structure/lattice, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/violet/hidden{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bML" = ( +/obj/structure/flora/tree/palm, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/virology) +"bMM" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/structure/lattice, +/turf/open/space/basic, +/area/space/nearstation) +"bMN" = ( +/obj/structure/closet/l3closet/virology, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bMO" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bMP" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bMQ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bMR" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bMS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall/rust, +/area/router) +"bMT" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/virologist, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bMU" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/table, +/obj/item/storage/box/donkpockets, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bMV" = ( +/obj/machinery/light, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/virology) +"bMW" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/conveyor/auto{ + dir = 4; + id = "router" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/router) +"bMX" = ( +/obj/structure/lattice, +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/violet/hidden{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bMY" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bMZ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNa" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNb" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNc" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 1 + }, +/obj/effect/landmark/start/virologist, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bNd" = ( +/obj/machinery/computer/atmos_alert{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engine/atmos) +"bNe" = ( +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/machinery/door/window/northleft{ + name = "AI Upload Chamber"; + req_one_access_txt = "65" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bNf" = ( +/obj/machinery/conveyor/auto{ + dir = 4; + id = "router" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/router) +"bNg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bNh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Virology Interior Airlock"; + req_access_txt = "39" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bNi" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/grass, +/area/medical/virology) +"bNj" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bNk" = ( +/obj/machinery/conveyor/auto{ + dir = 4; + id = "router" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/router) +"bNl" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/conveyor/auto{ + dir = 4; + id = "router" + }, +/turf/open/floor/plating, +/area/router) +"bNm" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/item/paper_bin, +/obj/item/pen/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bNn" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/mass_driver{ + dir = 4; + id = "router_out"; + name = "Router Driver" + }, +/turf/open/floor/plating, +/area/router) +"bNo" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "starboard_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"bNp" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"bNq" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bNr" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bedsheetbin, +/obj/item/clothing/glasses/science, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bNs" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bNt" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bNu" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/grass, +/area/medical/virology) +"bNv" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = 25 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bNw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bNx" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bNy" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bNz" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bNA" = ( +/obj/machinery/smartfridge/chemistry/virology/preloaded, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bNB" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/item/clothing/gloves/color/latex, +/obj/item/healthanalyzer, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bNC" = ( +/obj/structure/table, +/obj/machinery/reagentgrinder, +/obj/machinery/light, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bND" = ( +/obj/machinery/computer/pandemic, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bNE" = ( +/obj/machinery/computer/station_alert{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/corner, +/area/engine/atmos) +"bNF" = ( +/turf/open/floor/plasteel/stairs, +/area/medical/medbay/central) +"bNG" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"bNH" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit) +"bNI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/departments/evac, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bNJ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/exit) +"bNK" = ( +/obj/machinery/power/solar{ + id = "aftstarboard"; + name = "Aft-Starboard Solar Array" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/aft) +"bNL" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/solar/starboard/aft) +"bNM" = ( +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/oil, +/turf/open/floor/plasteel, +/area/maintenance/port/fore) +"bNN" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/router/eva) +"bNO" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"bNP" = ( +/obj/machinery/power/smes, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"bNQ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit) +"bNR" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit) +"bNS" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/space/basic, +/area/solar/starboard/aft) +"bNT" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/port/fore) +"bNU" = ( +/obj/machinery/power/solar{ + id = "aftstarboard"; + name = "Aft-Starboard Solar Array" + }, +/obj/structure/cable, +/turf/open/floor/plasteel/airless/solarpanel, +/area/solar/starboard/aft) +"bNV" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bNW" = ( +/turf/open/floor/plasteel/stairs/left, +/area/hallway/secondary/exit) +"bNX" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel/stairs/right, +/area/hallway/secondary/exit) +"bNY" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/stairs/left, +/area/hallway/secondary/exit) +"bNZ" = ( +/turf/open/floor/plasteel/stairs/right, +/area/hallway/secondary/exit) +"bOa" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bOb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bOc" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/space/basic, +/area/solar/starboard/aft) +"bOd" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/space/basic, +/area/solar/starboard/aft) +"bOe" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external/glass{ + name = "Departures Shuttle Dock" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bOf" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/space/basic, +/area/solar/starboard/aft) +"bOg" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bOh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bOi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bOj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bOk" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space/basic, +/area/solar/starboard/aft) +"bOl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bOm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bOn" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Bathroom Maintenance"; + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/crew_quarters/toilet/restrooms) +"bOo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/docking, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"bOp" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bOq" = ( +/obj/machinery/power/tracker, +/obj/structure/cable, +/turf/open/floor/plating/airless, +/area/solar/starboard/aft) +"bOr" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"bOs" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/bz, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bOt" = ( +/obj/structure/table, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/gateway) +"bOu" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/prox_sensor{ + pixel_x = 8 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 8 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 8 + }, +/obj/item/assembly/prox_sensor{ + pixel_x = 8 + }, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science RC"; + pixel_x = 30; + receive_ore_updates = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bOv" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"bOw" = ( +/obj/structure/lattice, +/obj/item/reagent_containers/food/drinks/bottle/grappa, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bOx" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/science/research{ + name = "Research Sector" + }) +"bOy" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bOz" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"bOA" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"bOB" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/router/eva) +"bOC" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall/r_wall, +/area/router/eva) +"bOD" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, +/obj/machinery/sparker/toxmix{ + pixel_x = 25 + }, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"bOE" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/item/hand_labeler, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bOF" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bOG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bOH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bOI" = ( +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/computer/security/telescreen{ + dir = 1; + name = "Test Chamber Monitor"; + network = list("xeno"); + pixel_y = 2 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bOJ" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/mob/living/simple_animal/pet/cat/space, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/captain) +"bOK" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/northright{ + name = "Secure Xenobiological Containment"; + req_one_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bOL" = ( +/obj/machinery/computer/card{ + dir = 8 + }, +/obj/machinery/keycard_auth{ + pixel_x = 8; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/captain) +"bOM" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bON" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bOO" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bOP" = ( +/obj/machinery/shieldwallgen/xenobiologyaccess, +/turf/open/floor/plating, +/area/science/xenobiology) +"bOQ" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"bOR" = ( +/obj/structure/table/wood, +/obj/item/pinpointer/nuke, +/obj/item/card/id/captains_spare, +/obj/item/hand_tele, +/obj/item/disk/nuclear, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"bOS" = ( +/obj/structure/table/wood, +/obj/machinery/light, +/obj/item/storage/photo_album/Captain, +/obj/item/camera{ + pixel_y = -6 + }, +/obj/item/stamp/captain, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"bOT" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bOU" = ( +/obj/structure/disposaloutlet, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bOV" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"bOW" = ( +/obj/structure/bookcase/random/nonfiction, +/turf/open/floor/engine, +/area/science/xenobiology) +"bOX" = ( +/obj/structure/table/reinforced, +/obj/item/electropack, +/obj/item/assembly/signaler, +/turf/open/floor/engine, +/area/science/xenobiology) +"bOY" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/machinery/camera{ + c_tag = "Customs - Aft"; + dir = 4 + }, +/obj/structure/window/reinforced/spawner, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "HoPAft"; + name = "HoP Aft Desk Shutters" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"bOZ" = ( +/obj/structure/bed, +/obj/item/bedsheet/purple, +/turf/open/floor/engine, +/area/science/xenobiology) +"bPa" = ( +/obj/item/beacon, +/turf/open/floor/engine, +/area/science/xenobiology) +"bPb" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/obj/item/assembly/igniter, +/turf/open/floor/engine, +/area/science/xenobiology) +"bPc" = ( +/obj/structure/chair/comfy/black, +/turf/open/floor/engine, +/area/science/xenobiology) +"bPd" = ( +/obj/structure/table/reinforced, +/obj/item/book/random/triple, +/turf/open/floor/engine, +/area/science/xenobiology) +"bPe" = ( +/obj/structure/table/reinforced, +/obj/item/modular_computer/laptop/preset/civilian, +/turf/open/floor/engine, +/area/science/xenobiology) +"bPf" = ( +/obj/machinery/light, +/turf/open/floor/engine, +/area/science/xenobiology) +"bPg" = ( +/obj/structure/chair{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bPh" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/violet/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/space/basic, +/area/space/nearstation) +"bPi" = ( +/obj/structure/chair{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"bPj" = ( +/obj/effect/spawner/lootdrop/two_percent_xeno_egg_spawner, +/obj/machinery/light, +/turf/open/floor/engine, +/area/science/xenobiology) +"bPk" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/under/misc/staffassistant, +/obj/item/clothing/under/misc/staffassistant, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/suit/apron/surgical, +/turf/open/floor/engine, +/area/science/xenobiology) +"bPl" = ( +/obj/structure/chair/sofa/right, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/item/book/manual/wiki/research_and_development, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bPm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bPn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bPo" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bPp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bPq" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/mineral/stacking_machine{ + input_dir = 2 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bPr" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible, +/obj/machinery/atmospherics/pipe/simple/violet/hidden{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bPs" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bPt" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/bridge) +"bPu" = ( +/obj/effect/landmark/start/cook, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/cafeteria, +/area/crew_quarters/kitchen) +"bPv" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/yellow, +/obj/item/multitool, +/obj/item/multitool{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/t_scanner{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/item/t_scanner{ + pixel_x = -4 + }, +/turf/open/floor/plasteel, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"bPw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bPx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"bPy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"bPz" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bPA" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/violet/visible, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bPB" = ( +/obj/machinery/meter, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPC" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "Waste In" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPD" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/camera{ + c_tag = "Escape Hall - Fore"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bPE" = ( +/obj/structure/table/glass, +/obj/item/clipboard, +/obj/item/storage/crayons, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bPF" = ( +/obj/structure/table/glass, +/obj/item/storage/fancy/cigarettes, +/obj/item/lighter{ + pixel_x = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bPG" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bPH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bPI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bPJ" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPK" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"bPL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bPM" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/storage/tech) +"bPN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bPO" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/effect/turf_decal/tile/red, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/secondary/exit) +"bPP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/medical/medbay/central) +"bPQ" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bPR" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bPS" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"bPT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white/corner{ + dir = 4 + }, +/area/hallway/secondary/exit) +"bPU" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/highsecurity{ + name = "AI Upload Access"; + req_access_txt = "16" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"bPV" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai) +"bPW" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/vehicle/ridden/atv, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bPX" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/violet/hidden{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bPY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bPZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/sorting/mail{ + sortType = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bQa" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bQb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/camera/motion{ + c_tag = "AI Foyer"; + network = list("minisat"); + pixel_x = 22 + }, +/obj/machinery/turretid{ + control_area = "/area/ai_monitored/turret_protected/ai"; + dir = 1; + name = "AI Chamber turret control"; + pixel_x = 5; + pixel_y = 24; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"bQc" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"bQd" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bQe" = ( +/obj/structure/lattice, +/obj/structure/grille/broken, +/turf/open/space/basic, +/area/space/nearstation) +"bQf" = ( +/obj/structure/rack, +/obj/item/tank/jetpack/carbondioxide, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bQg" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=sci"; + location = "market" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bQh" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/conveyor{ + dir = 4; + id = "EngiCargoConveyer" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bQi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"bQj" = ( +/obj/structure/bodycontainer/morgue{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"bQk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bQl" = ( +/obj/structure/bed/roller, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/west, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bQm" = ( +/obj/structure/bed/roller, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bQn" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/west, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bQo" = ( +/obj/structure/disposalpipe/junction/yjunction, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"bQp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"bQq" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/table/wood, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/item/modular_computer/laptop/preset/civilian, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/paper/guides/cogstation/letter_atmos, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bQr" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bQs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit) +"bQt" = ( +/obj/machinery/conveyor/auto{ + dir = 5; + id = "router" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/router) +"bQu" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bQv" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1; + sortType = 24 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bQw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bQx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bQy" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bQz" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bQA" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = -28 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"bQB" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/weldingtool, +/obj/item/wrench/medical, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bQC" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/west, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bQD" = ( +/obj/machinery/power/apc{ + name = "Tech Storage APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/storage/tech) +"bQE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bQF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bQG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bQH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bQI" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bQJ" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/power/apc{ + name = "Medbay Treatment Center APC"; + pixel_y = -24 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bQK" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/atmospheric_technician, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bQL" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bQM" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bQN" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/space/basic, +/area/space/nearstation) +"bQO" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/space/basic, +/area/space/nearstation) +"bQP" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bQQ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/science/robotics/lab) +"bQR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/directions/evac{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bQS" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/violet/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/space/basic, +/area/space/nearstation) +"bQT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/radio/intercom{ + frequency = 1447; + name = "Station Intercom (AI Private)"; + pixel_y = 24 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"bQU" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"bQV" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/violet/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/space/basic, +/area/space/nearstation) +"bQW" = ( +/obj/machinery/conveyor/auto{ + dir = 4; + id = "router" + }, +/turf/open/floor/plating, +/area/router) +"bQX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bQY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bQZ" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/landmark/start/scientist, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bRa" = ( +/obj/item/cigbutt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"bRb" = ( +/obj/machinery/door/window/southleft{ + name = "Captain's Equipment"; + req_access_txt = "20" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/captain) +"bRc" = ( +/obj/machinery/suit_storage_unit/captain, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"bRd" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/engine/storage"; + dir = 4; + name = "Canister Storage APC"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/engine/storage{ + name = "Canister Storage" + }) +"bRe" = ( +/obj/machinery/computer/security/wooden_tv, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"bRf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bRg" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bRh" = ( +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bRi" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bRj" = ( +/obj/machinery/atmospherics/components/trinary/filter/flipped, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bRk" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bRl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/conveyor/auto{ + dir = 4; + id = "router" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/router) +"bRm" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bRn" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible, +/obj/machinery/atmospherics/pipe/simple/violet/hidden{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bRo" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/violet/hidden, +/turf/open/space/basic, +/area/space/nearstation) +"bRp" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/violet/hidden{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bRq" = ( +/obj/machinery/portable_atmospherics/scrubber/huge/movable, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bRr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bRs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bRt" = ( +/obj/structure/closet/wardrobe/miner, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/quartermaster/miningoffice"; + dir = 8; + name = "Mining Office APC"; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bRu" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bRv" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/violet/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space/basic, +/area/space/nearstation) +"bRw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bRx" = ( +/obj/structure/table, +/obj/item/circuitboard/machine/cyborgrecharger, +/obj/item/disk/design_disk, +/obj/machinery/camera/motion{ + c_tag = "Computer Core"; + dir = 1; + network = list("minisat") + }, +/turf/open/floor/circuit/green, +/area/science/server{ + name = "Computer Core" + }) +"bRy" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bRz" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bRA" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/engine, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"bRB" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = 29 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bRC" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bRD" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"bRE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/conveyor/auto{ + dir = 4; + id = "router" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/router) +"bRF" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"bRG" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bRH" = ( +/obj/structure/chair/sofa/right, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = 29 + }, +/turf/open/floor/wood, +/area/medical/medbay/lobby) +"bRI" = ( +/turf/closed/wall/r_wall, +/area/medical/medbay/central) +"bRJ" = ( +/obj/structure/chair/sofa/left, +/obj/effect/landmark/start/assistant, +/obj/machinery/status_display{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Waiting Room"; + network = list("ss13","rd") + }, +/turf/open/floor/wood, +/area/medical/medbay/lobby) +"bRK" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bRL" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bRM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/stairs/left, +/area/science/research{ + name = "Research Sector" + }) +"bRN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/stairs/medium, +/area/science/research{ + name = "Research Sector" + }) +"bRO" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bRP" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "E.V.A. Storage"; + req_access_txt = "18" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bRQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bRR" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bRS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bRT" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/bin{ + name = "Lab Delivery" + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bRU" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bRV" = ( +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel/dark/side{ + dir = 9 + }, +/area/science/robotics/lab) +"bRW" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bRX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bRY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bRZ" = ( +/obj/structure/bookcase/random/nonfiction, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"bSa" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/storage/belt/medolier, +/obj/item/clothing/neck/stethoscope, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bSb" = ( +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bSc" = ( +/obj/machinery/vending/wardrobe/medi_wardrobe, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bSd" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/loading_area, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/science/robotics/lab) +"bSe" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/science/robotics/lab) +"bSf" = ( +/obj/structure/table, +/obj/item/analyzer, +/obj/item/healthanalyzer, +/obj/item/plant_analyzer, +/obj/item/aicard, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = 29 + }, +/turf/open/floor/plating, +/area/storage/tech) +"bSg" = ( +/obj/machinery/rnd/production/techfab/department/medical, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bSh" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/medbay/central) +"bSi" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bSj" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/xeno_spawn, +/obj/machinery/camera{ + c_tag = "Xenobiology - Kill Chamber"; + dir = 4 + }, +/turf/open/floor/circuit/telecomms, +/area/science/xenobiology) +"bSk" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/public/glass{ + name = "AI Access" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"bSl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bSm" = ( +/obj/machinery/modular_computer/console/preset/engineering, +/turf/open/floor/plasteel, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"bSn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/sign/warning/electricshock, +/turf/open/floor/plating, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"bSo" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"bSp" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"bSq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"bSr" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/blue, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"bSs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/blue, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"bSt" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/mineral/titanium/blue, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"bSu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"bSv" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plating, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"bSw" = ( +/obj/machinery/power/port_gen/pacman, +/obj/machinery/light, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/turf/open/floor/plating, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"bSx" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/turf/open/floor/plasteel, +/area/engine/break_room) +"bSy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bSz" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/conveyor/auto{ + dir = 4; + id = "router" + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1; + sortType = 11 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/router) +"bSA" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel/stairs/right, +/area/hallway/primary/central) +"bSB" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bSC" = ( +/turf/closed/wall, +/area/science/lab) +"bSD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/conveyor/auto{ + dir = 4; + id = "router" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/router) +"bSE" = ( +/turf/closed/wall/r_wall, +/area/science/lab) +"bSF" = ( +/obj/machinery/conveyor/auto{ + dir = 4; + id = "router" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/router) +"bSG" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/lab) +"bSH" = ( +/obj/structure/sign/departments/science, +/turf/closed/wall/r_wall, +/area/science/lab) +"bSI" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plating, +/area/router) +"bSJ" = ( +/obj/structure/closet/crate/science, +/obj/item/target, +/obj/item/target, +/obj/item/target/alien, +/obj/item/target/alien, +/obj/item/target/syndicate, +/obj/item/target/syndicate, +/obj/item/gun/energy/laser/practice, +/obj/item/gun/energy/laser/practice, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + areastring = "/area/science/circuit"; + dir = 1; + name = "Circuitry Lab APC"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bSK" = ( +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bSL" = ( +/turf/open/floor/plasteel/white, +/area/science/lab) +"bSM" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stack/cable_coil/red, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bSN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/light{ + dir = 1; + light_color = "#cee5d2" + }, +/obj/item/folder/white, +/obj/item/disk/design_disk, +/obj/item/disk/design_disk, +/obj/item/disk/tech_disk, +/obj/item/disk/tech_disk, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bSO" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/public/glass{ + name = "AI Access" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"bSP" = ( +/obj/machinery/computer/rdconsole/core, +/turf/open/floor/plasteel, +/area/science/lab) +"bSQ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bSR" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bSS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bST" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bSU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bSV" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"bSW" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bSX" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/white/full, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medical)"; + pixel_x = 28; + pixel_y = 24 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bSY" = ( +/obj/structure/table, +/obj/item/stock_parts/micro_laser{ + pixel_x = 4 + }, +/obj/item/stock_parts/micro_laser{ + pixel_x = 4 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = -6 + }, +/obj/item/stock_parts/scanning_module{ + pixel_x = -6 + }, +/obj/item/stock_parts/capacitor, +/obj/item/stock_parts/capacitor, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bSZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bTa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bTb" = ( +/turf/open/floor/plasteel, +/area/science/lab) +"bTc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/lab) +"bTd" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/matter_bin, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bTe" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/scientist, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bTf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bTg" = ( +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/science/robotics/mechbay"; + dir = 1; + name = "Mech Bay APC"; + pixel_y = 28 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"bTh" = ( +/obj/effect/turf_decal/bot, +/obj/effect/landmark/start/cyborg, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bTi" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 5 + }, +/area/science/robotics/lab) +"bTj" = ( +/obj/structure/table, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = -6 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 4 + }, +/obj/item/reagent_containers/dropper, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bTk" = ( +/obj/item/rack_parts, +/obj/structure/table_frame, +/obj/item/flashlight, +/obj/item/flashlight, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/machinery/power/apc{ + areastring = "/area/quartermaster/warehouse"; + dir = 1; + name = "Warehouse APC"; + pixel_y = 24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bTl" = ( +/obj/structure/table, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/item/clothing/glasses/welding, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bTm" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bTn" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bTo" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_electronics/debugger, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bTp" = ( +/obj/machinery/vending/wardrobe/law_wardrobe, +/obj/effect/turf_decal/bot, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"bTq" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/circuit) +"bTr" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"bTs" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/circuit) +"bTt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall/r_wall, +/area/hallway/primary/central) +"bTu" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bTv" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bTw" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bTx" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 8; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bTy" = ( +/obj/item/kirbyplants, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bTz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bTA" = ( +/obj/structure/filingcabinet/medical, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bTB" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/medical/medbay/lobby) +"bTC" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bTD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bTE" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bTF" = ( +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/router) +"bTG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/circuit) +"bTH" = ( +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"bTI" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"bTJ" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bTK" = ( +/turf/open/floor/engine/co2, +/area/engine/atmos) +"bTL" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"bTM" = ( +/obj/structure/table, +/obj/machinery/light, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/item/storage/toolbox/mechanical, +/obj/machinery/camera{ + c_tag = "Research - Development Lab"; + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science RC"; + pixel_y = -30; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bTN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/science/circuit) +"bTO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bTP" = ( +/obj/machinery/disposal/bin, +/obj/machinery/light, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bTQ" = ( +/obj/machinery/vending/assist, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bTR" = ( +/turf/closed/wall/r_wall, +/area/science/circuit) +"bTS" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/obj/item/stock_parts/cell/high/plus, +/obj/item/radio/off{ + pixel_x = -3; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"bTT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/hallway/primary/central) +"bTU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "recycler" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bTV" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "EngiCargoConveyer" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bTW" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"bTX" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/status_display/ai{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"bTY" = ( +/turf/open/floor/mineral/titanium/blue, +/area/hallway/primary/central) +"bTZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space/basic, +/area/space/nearstation) +"bUa" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Atmospherics - Entrance" + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bUb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/conveyor{ + dir = 4; + id = "EngiCargoConveyer" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bUc" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/router) +"bUd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bUe" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plating/airless, +/area/router/aux) +"bUf" = ( +/obj/structure/plasticflaps, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/conveyor{ + dir = 4; + id = "EngiCargoConveyer" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bUg" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/conveyor/auto{ + dir = 1; + id = "router" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/router) +"bUh" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bUi" = ( +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + locked = 0; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"bUj" = ( +/obj/machinery/atmospherics/pipe/simple/violet/hidden{ + dir = 8 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"bUk" = ( +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/window/reinforced/spawner/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bUl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bUm" = ( +/obj/structure/closet/crate/internals, +/obj/item/tank/internals/emergency_oxygen/double, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bUn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bUo" = ( +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bUp" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor/auto{ + id = "router" + }, +/turf/open/floor/plating, +/area/router) +"bUq" = ( +/turf/closed/wall/r_wall, +/area/hallway/primary/aft) +"bUr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/hallway/primary/aft) +"bUs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bUt" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/hallway/primary/central) +"bUu" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/gateway) +"bUv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall/r_wall, +/area/hallway/primary/aft) +"bUw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUx" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"bUy" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUz" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bUA" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"bUB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + areastring = "/area/engine/engine_smes"; + dir = 1; + name = "Power Monitoring APC"; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"bUC" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bUD" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bUE" = ( +/turf/open/floor/plasteel/stairs/right, +/area/hallway/primary/aft) +"bUF" = ( +/obj/machinery/doppler_array/research/science{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bUG" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"bUH" = ( +/obj/machinery/shieldgen, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bUI" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bUJ" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/science/lab) +"bUK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Quartermaster's Office"; + req_access_txt = "31;41" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bUL" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/router) +"bUM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/quartermaster/qm) +"bUN" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/engineering{ + name = "Primary Tool Storage"; + req_access_txt = "11" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"bUO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/storage/primary"; + dir = 1; + name = "Primary Tool Storage APC"; + pixel_y = 24 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"bUP" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall/r_wall, +/area/quartermaster/sorting) +"bUQ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "DeliveryDoor"; + name = "Cargo Delivery Door Control"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bUR" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/mob/living/simple_animal/bot/firebot, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bUS" = ( +/obj/structure/closet/secure_closet/quartermaster, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/item/clothing/suit/space/eva, +/obj/item/clothing/head/helmet/space/eva, +/obj/item/paper/fluff/cogstation/letter_qm, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"bUT" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/filingcabinet/filingcabinet, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bUU" = ( +/obj/item/beacon, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"bUV" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/violet/hidden{ + dir = 10 + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/space/nearstation) +"bUW" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/starboard/aft"; + dir = 1; + name = "Starboard Quarter Maintenance APC"; + pixel_y = 24 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bUX" = ( +/obj/structure/transit_tube/station/reverse/flipped{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"bUY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/item/grown/bananapeel, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/router) +"bUZ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/wirecutters, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bVa" = ( +/obj/machinery/light/small, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/router) +"bVb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/transit_tube/horizontal, +/turf/open/floor/plasteel, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"bVc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bVd" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bVe" = ( +/obj/machinery/photocopier, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bVf" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Power Monitoring"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"bVg" = ( +/obj/machinery/power/emitter, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/west, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bVh" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bVi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"bVj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor/auto{ + id = "disposal" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bVk" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bVl" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bVm" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bVn" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"bVo" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bVp" = ( +/obj/machinery/computer/card/minor/rd{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"bVq" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"bVr" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bVs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/start/cargo_technician, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bVt" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bVu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_x = 26 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 1; + locked = 0; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/router) +"bVv" = ( +/obj/structure/sign/departments/xenobio{ + pixel_x = -32 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"bVw" = ( +/obj/machinery/conveyor/auto{ + dir = 1; + id = "cargo" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bVx" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/conveyor/auto{ + dir = 1; + id = "cargo" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bVy" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor/auto{ + dir = 1; + id = "cargo" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"bVz" = ( +/obj/structure/rack, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/head/hardhat/red{ + pixel_y = 6 + }, +/obj/item/clothing/mask/gas, +/obj/item/tank/internals/air, +/obj/item/extinguisher{ + pixel_x = -4 + }, +/obj/item/crowbar/red{ + pixel_x = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"bVA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall, +/area/router) +"bVB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bVC" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "AI SMES Access"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"bVD" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/space) +"bVE" = ( +/obj/effect/landmark/start/atmospheric_technician, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bVF" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"bVG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bVH" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/janitor) +"bVI" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVK" = ( +/obj/item/restraints/legcuffs/beartrap, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"bVL" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/noticeboard/rd{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bVM" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bVN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "capblast"; + name = "blast door" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/captain) +"bVO" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bVP" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bVQ" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bVR" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/sign/warning/securearea{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bVS" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#cee5d2" + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bVT" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bVU" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "38" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"bVV" = ( +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/lawoffice) +"bVW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"bVX" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bVY" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southright{ + name = "Primary Tool Storage Desk"; + req_access_txt = "11" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"bVZ" = ( +/obj/machinery/power/apc{ + name = "Cargo Bay APC"; + pixel_y = -24 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"bWa" = ( +/turf/closed/wall/r_wall, +/area/science/research{ + name = "Research Sector" + }) +"bWb" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bWc" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light{ + dir = 1; + light_color = "#cee5d2" + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bWd" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/structure/sign/poster/official/wtf_is_co2{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"bWe" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Bridge" + }, +/turf/open/floor/plasteel, +/area/bridge) +"bWf" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWg" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Law Office"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/lawoffice) +"bWh" = ( +/obj/structure/table/wood, +/obj/item/flashlight/lamp/green, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/lawoffice) +"bWi" = ( +/obj/structure/table/wood, +/obj/item/cartridge/lawyer{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/stamp/law, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/lawoffice) +"bWj" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/lawoffice) +"bWk" = ( +/obj/structure/table/wood, +/obj/item/modular_computer/laptop/preset/civilian, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/lawoffice) +"bWl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Toxins Storage"; + req_access_txt = "7;8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/science/mixing) +"bWm" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/engineering{ + name = "AI SMES Access"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"bWn" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bWo" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bWp" = ( +/obj/machinery/atmospherics/miner/n2o, +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bWq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWr" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/camera{ + c_tag = "Research Entrance"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bWs" = ( +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bWt" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bWu" = ( +/obj/machinery/vending/assist, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bWv" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bWw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/lawoffice) +"bWx" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bWy" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bWz" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bWA" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bWB" = ( +/obj/structure/rack, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/extinguisher, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bWC" = ( +/obj/machinery/shower{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bWD" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=2"; + freq = 1400; + location = "Medbay" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bWE" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWG" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"bWH" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel/stairs/medium, +/area/hallway/primary/central) +"bWI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"bWJ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bWK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/floor/plating, +/area/engine/atmos) +"bWL" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bWM" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/camera{ + c_tag = "Central Hall - AI Access"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bWN" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/science/server{ + name = "Computer Core" + }) +"bWO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bWP" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/command{ + name = "Computer Core"; + req_access_txt = "30" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"bWQ" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bWR" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/science/research{ + name = "Research Sector" + }) +"bWS" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"bWT" = ( +/obj/structure/chair/sofa/left, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/landmark/start/scientist, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bWU" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bWV" = ( +/obj/machinery/vending/coffee, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bWW" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bWX" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bWY" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall/r_wall, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"bWZ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall, +/area/hallway/primary/aft) +"bXa" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/item/multitool{ + pixel_y = 4 + }, +/obj/item/book/manual/wiki/robotics_cyborgs, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"bXb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bXc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"bXd" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"bXe" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/atmospherics/miner/toxins, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"bXf" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "EngiLockdown"; + name = "Engineering Emergency Lockdown"; + pixel_x = 24; + pixel_y = -6; + req_access_txt = "11" + }, +/obj/machinery/button/door{ + name = "Privacy Shutters"; + pixel_x = 24; + pixel_y = 6 + }, +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"bXg" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/science/mixing) +"bXh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bXi" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bXj" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXk" = ( +/obj/structure/chair/stool, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"bXl" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bXm" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bXn" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bXo" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bXp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plating, +/area/router) +"bXq" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"bXr" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Research Fore"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bXs" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"bXt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXu" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXw" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bXx" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bXy" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/light, +/obj/item/kirbyplants{ + icon_state = "plant-16" + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bXz" = ( +/obj/machinery/power/apc{ + name = "Medbay Lobby APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bXA" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bXB" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/modular_computer/laptop/preset/civilian, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bXC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bXD" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bXE" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bXF" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall/r_wall, +/area/security/checkpoint/supply) +"bXG" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"bXH" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hydroponics) +"bXI" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "capblast"; + name = "blast door" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/captain) +"bXJ" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bXK" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/light, +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/white/full, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bXL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/storage/belt/utility, +/turf/open/floor/plasteel, +/area/maintenance/aft) +"bXM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 8; + id = "router_off" + }, +/turf/open/floor/plating, +/area/router) +"bXN" = ( +/obj/machinery/smartfridge/organ/preloaded, +/turf/closed/wall, +/area/medical/morgue) +"bXO" = ( +/obj/structure/table/glass, +/obj/machinery/reagentgrinder, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology - Fore"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bXP" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bXQ" = ( +/obj/structure/closet/l3closet/scientist, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bXR" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/machinery/atmospherics/miner/carbon_dioxide, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"bXS" = ( +/obj/structure/closet/bombcloset, +/obj/machinery/camera{ + c_tag = "Toxins Lab - Access"; + network = list("ss13","rd") + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bXT" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bXU" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/research{ + name = "Research Sector" + }) +"bXV" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"bXW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bXX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bXY" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/recharge_station, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bXZ" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/item/paper_bin, +/obj/item/radio/headset/headset_sci, +/obj/item/radio/headset/headset_sci, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bYa" = ( +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bYb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bYc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/research{ + name = "Research Sector" + }) +"bYd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall/r_wall, +/area/hallway/primary/central) +"bYe" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bYf" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor/auto{ + dir = 8; + id = "router" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/router) +"bYg" = ( +/obj/machinery/door/poddoor{ + id = "toxinsdriver"; + name = "toxins launcher bay door" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/science/mixing) +"bYh" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bYi" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/recharger, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bYj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bYk" = ( +/obj/machinery/vending/wardrobe/science_wardrobe, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bYl" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/sorting/mail/flip{ + sortType = 6 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bYm" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bYn" = ( +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bYo" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/computer/mech_bay_power_console, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"bYp" = ( +/turf/open/floor/plasteel/recharge_floor, +/area/science/robotics/mechbay) +"bYq" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/mech_bay_recharge_port{ + dir = 8 + }, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"bYr" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/photocopier, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bYs" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research/glass{ + name = "Toxins Lab Access"; + req_access_txt = "7;8" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"bYt" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bYu" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bYv" = ( +/turf/closed/wall, +/area/science/robotics/mechbay) +"bYw" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bYx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"bYy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"bYz" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bYA" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bYB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"bYC" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"bYD" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bYE" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bYF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/machinery/recharge_station, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"bYG" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"bYH" = ( +/obj/structure/sign/poster/contraband/kss13{ + pixel_y = -32 + }, +/obj/structure/cable, +/obj/machinery/recharge_station, +/turf/open/floor/circuit/green, +/area/science/robotics/mechbay) +"bYI" = ( +/obj/effect/landmark/start/medical_doctor, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bYJ" = ( +/obj/structure/closet/secure_closet/medical3, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/item/storage/belt/medical, +/obj/item/clothing/neck/stethoscope, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"bYK" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"bYL" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bYM" = ( +/obj/machinery/vending/wardrobe/cargo_wardrobe, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"bYN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/storage) +"bYO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bYP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bYQ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space/basic, +/area/solar/starboard/aft) +"bYR" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space/basic, +/area/solar/starboard/aft) +"bYS" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/server{ + name = "Computer Core" + }) +"bYT" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"bYU" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"bYV" = ( +/obj/machinery/rnd/destructive_analyzer, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"bYW" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bYX" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"bYY" = ( +/turf/open/floor/circuit/green, +/area/science/server{ + name = "Computer Core" + }) +"bYZ" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/circuit/green, +/area/science/server{ + name = "Computer Core" + }) +"bZa" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/item/storage/box/disks, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"bZb" = ( +/obj/structure/table, +/obj/machinery/button/door{ + id = "RDServer"; + layer = 3.6; + name = "RD Server Lockup Control"; + pixel_x = -24 + }, +/obj/item/circuitboard/machine/rdserver, +/obj/item/disk/tech_disk, +/turf/open/floor/circuit/green, +/area/science/server{ + name = "Computer Core" + }) +"bZc" = ( +/obj/machinery/computer/robotics{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment, +/turf/open/floor/circuit/green, +/area/science/server{ + name = "Computer Core" + }) +"bZd" = ( +/obj/effect/landmark/blobstart, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bZe" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/science/server{ + name = "Computer Core" + }) +"bZf" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bZg" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bZh" = ( +/turf/closed/wall, +/area/crew_quarters/toilet/restrooms) +"bZi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"bZj" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 4; + node1_concentration = 0.8; + node2_concentration = 0.2; + on = 1; + target_pressure = 4500 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bZk" = ( +/obj/machinery/shower{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"bZl" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bZm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=upload"; + location = "med" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"bZn" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/door/window/eastright, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"bZo" = ( +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bZp" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"bZq" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/door/window/eastright, +/obj/effect/landmark/start/assistant, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"bZr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/hallway/primary/central) +"bZs" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"bZt" = ( +/turf/closed/wall, +/area/maintenance/starboard/aft) +"bZu" = ( +/obj/structure/rack, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/head/hardhat/red{ + pixel_y = 6 + }, +/obj/item/clothing/mask/gas, +/obj/item/tank/internals/air, +/obj/item/extinguisher, +/obj/item/crowbar, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bZv" = ( +/obj/structure/rack, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/clothing/head/hardhat/red{ + pixel_y = 6 + }, +/obj/item/clothing/mask/gas, +/obj/item/tank/internals/air, +/obj/item/extinguisher, +/obj/item/crowbar, +/obj/machinery/camera{ + c_tag = "Fire Suppression Storage"; + pixel_x = 22 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bZw" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"bZx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Fire Suppression Storage"; + req_access_txt = "12" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bZy" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"bZz" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Xenobiology Kill Room"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"bZA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/library) +"bZB" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bZC" = ( +/obj/machinery/computer/libraryconsole, +/obj/structure/table/wood, +/turf/open/floor/carpet, +/area/library) +"bZD" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"bZE" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bZF" = ( +/turf/open/floor/wood, +/area/library) +"bZG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/sign/warning/fire{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"bZH" = ( +/turf/closed/wall, +/area/library) +"bZI" = ( +/obj/machinery/air_sensor/atmos/mix_tank, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"bZJ" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/photocopier, +/turf/open/floor/carpet, +/area/library) +"bZK" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"bZL" = ( +/obj/machinery/air_sensor/atmos/nitrous_tank, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"bZM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"bZN" = ( +/obj/structure/closet/crate/freezer, +/obj/item/rack_parts, +/obj/item/rack_parts, +/obj/item/wrench, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/kitchen/backroom) +"bZO" = ( +/obj/machinery/air_sensor/atmos/toxin_tank, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"bZP" = ( +/obj/machinery/air_sensor/atmos/carbon_tank, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"bZQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"bZR" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"bZS" = ( +/turf/closed/wall/r_wall, +/area/library) +"bZT" = ( +/obj/structure/table, +/obj/item/book/manual/wiki/robotics_cyborgs{ + pixel_x = -3; + pixel_y = -2 + }, +/obj/item/book/manual/ripley_build_and_repair{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/item/mmi/posibrain, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"bZU" = ( +/obj/structure/table/wood, +/obj/machinery/door/window/northright{ + name = "Library Desk Window"; + req_access_txt = "37" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/library) +"bZV" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/structure/table/wood, +/obj/machinery/light{ + dir = 1; + light_color = "#c1caff" + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/carpet, +/area/library) +"bZW" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/science/mixing) +"bZX" = ( +/obj/structure/table/wood, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/computer/libraryconsole/bookmanagement, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/library) +"bZY" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"bZZ" = ( +/obj/machinery/vending/wardrobe/curator_wardrobe, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/library) +"caa" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cab" = ( +/obj/structure/bookcase/random/adult{ + name = "Forbidden Knowledge" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/library) +"cac" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cad" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cae" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light, +/obj/item/storage/firstaid/toxin, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"caf" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/violet/hidden{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cag" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_electronics/analyzer, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cah" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cai" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"caj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cak" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"cal" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 10 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engine/atmos) +"cam" = ( +/obj/machinery/door/poddoor/incinerator_atmos_main, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"can" = ( +/obj/machinery/power/turbine{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cao" = ( +/obj/machinery/power/compressor{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cap" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/air_sensor/atmos/incinerator_tank{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/machinery/igniter/incinerator_atmos, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"caq" = ( +/obj/machinery/door/airlock/public/glass/incinerator/atmos_exterior, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"car" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cas" = ( +/obj/machinery/door/airlock/public/glass/incinerator/atmos_interior, +/obj/effect/mapping_helpers/airlock/locked, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"cat" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/mix_input, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"cau" = ( +/obj/machinery/door/poddoor/incinerator_atmos_aux, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cav" = ( +/turf/closed/wall/r_wall, +/area/science/explab) +"caw" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/explab) +"cax" = ( +/turf/closed/wall, +/area/science/explab) +"cay" = ( +/obj/machinery/air_sensor/atmos/nitrogen_tank, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"caz" = ( +/obj/machinery/door/airlock/research{ + name = "Mech Bay"; + req_access_txt = "29" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"caA" = ( +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/science/explab) +"caB" = ( +/obj/structure/closet/bombcloset, +/turf/open/floor/plasteel, +/area/science/explab) +"caC" = ( +/obj/structure/table, +/obj/item/wrench, +/obj/item/clothing/suit/fire/firefighter, +/obj/item/extinguisher{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/stack/cable_coil/red, +/turf/open/floor/plasteel, +/area/science/explab) +"caD" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/maintenance/disposal) +"caE" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"caF" = ( +/obj/machinery/air_sensor/atmos/oxygen_tank, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"caG" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"caH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"caI" = ( +/obj/structure/table/reinforced, +/obj/item/integrated_electronics/analyzer, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science RC"; + pixel_x = 30; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"caJ" = ( +/obj/machinery/air_sensor/atmos/air_tank, +/turf/open/floor/engine/air, +/area/engine/atmos) +"caK" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/machinery/atmospherics/miner/nitrogen, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"caL" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/miner/oxygen, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"caM" = ( +/obj/machinery/light/small, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"caN" = ( +/obj/machinery/light/small, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"caO" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/science/robotics/lab) +"caP" = ( +/obj/structure/chair/office/light, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/explab) +"caQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Medbay Lobby" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white/side, +/area/medical/medbay/lobby) +"caR" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/kirbyplants{ + icon_state = "plant-06" + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"caS" = ( +/obj/machinery/light/small, +/turf/open/floor/engine/air, +/area/engine/atmos) +"caT" = ( +/obj/effect/spawner/structure/window/plasma/reinforced, +/turf/open/floor/plating, +/area/science/explab) +"caU" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/closed/wall/r_wall, +/area/science/explab) +"caV" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology - Pen 1"; + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"caW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"caX" = ( +/turf/open/floor/engine, +/area/science/explab) +"caY" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"caZ" = ( +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/obj/machinery/camera{ + c_tag = "Xenobiology - Pen 2"; + dir = 8; + pixel_y = -22 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cba" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/science/explab) +"cbb" = ( +/turf/closed/wall/r_wall, +/area/science/storage) +"cbc" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/stack/sheet/metal/ten, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science, +/obj/item/screwdriver, +/obj/item/screwdriver, +/obj/item/multitool, +/obj/item/multitool, +/obj/machinery/camera{ + c_tag = "Research - Circuitry Lab"; + dir = 8; + pixel_y = -22 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cbd" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/item/clothing/ears/earmuffs, +/obj/item/radio, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cbe" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/mask/gas, +/turf/open/floor/engine, +/area/science/explab) +"cbf" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"cbg" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/turf/open/floor/engine, +/area/science/storage) +"cbh" = ( +/obj/machinery/rnd/experimentor, +/turf/open/floor/engine, +/area/science/explab) +"cbi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "capblast"; + name = "blast door" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/captain) +"cbj" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/closed/wall/r_wall, +/area/science/server{ + name = "Computer Core" + }) +"cbk" = ( +/obj/structure/table, +/obj/item/paper_bin, +/obj/item/pen, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/quartermaster/qm"; + dir = 8; + name = "Quartermaster's Office APC"; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"cbl" = ( +/obj/structure/table/reinforced, +/obj/item/healthanalyzer, +/turf/open/floor/engine, +/area/science/explab) +"cbm" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/door/airlock/maintenance{ + name = "Medbay Maintenance"; + req_access_txt = "5" + }, +/turf/open/floor/plating, +/area/medical/medbay/central) +"cbn" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/engine, +/area/science/storage) +"cbo" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cbp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable, +/obj/machinery/door/poddoor/preopen{ + id = "capblast"; + name = "blast door" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/captain) +"cbq" = ( +/obj/structure/table/reinforced, +/obj/item/clipboard, +/obj/item/pen, +/turf/open/floor/engine, +/area/science/explab) +"cbr" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cbs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cbt" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/engine, +/area/science/explab) +"cbu" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine, +/area/science/storage) +"cbv" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/effect/turf_decal/stripes/line, +/obj/structure/sign/warning/biohazard{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cbw" = ( +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cbx" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/syringes, +/obj/item/pen/blue, +/turf/open/floor/engine, +/area/science/explab) +"cby" = ( +/obj/structure/closet/emcloset, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cbz" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/gloves/color/latex, +/obj/item/reagent_containers/dropper, +/obj/item/pen/red, +/turf/open/floor/engine, +/area/science/explab) +"cbA" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"cbB" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cbC" = ( +/obj/machinery/portable_atmospherics/canister/nitrous_oxide, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/science/storage) +"cbD" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cbE" = ( +/turf/closed/wall/r_wall, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cbF" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cbG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cbH" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"cbI" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cbJ" = ( +/obj/structure/table/reinforced, +/obj/item/analyzer, +/obj/item/t_scanner, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/engine/supermatter"; + dir = 4; + name = "Thermo-Electric Generator APC"; + pixel_x = 24 + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"cbK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/sign/departments/chemistry{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cbL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cbM" = ( +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/item/storage/box/lights/mixed, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/structure/cable{ + icon_state = "1-10" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cbN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cbO" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"cbP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cbQ" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/item/reagent_containers/food/snacks/meat/slab/spider, +/obj/item/reagent_containers/food/snacks/meat/slab/xeno, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/kitchen/backroom) +"cbR" = ( +/obj/structure/cable{ + icon_state = "1-10" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"cbS" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "starboard_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"cbT" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = -2; + pixel_y = -27 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cbU" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8; + name = "Air to Distro" + }, +/obj/machinery/power/apc/highcap/ten_k{ + areastring = "/area/engine/atmos"; + name = "Atmospherics APC"; + pixel_y = -28 + }, +/obj/structure/cable, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cbV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/window/reinforced/spawner, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/science/server{ + name = "Computer Core" + }) +"cbW" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"cbX" = ( +/obj/structure/table, +/obj/item/aicard, +/obj/item/disk/tech_disk, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/circuit, +/area/bridge) +"cbY" = ( +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/science/server{ + name = "Computer Core" + }) +"cbZ" = ( +/obj/machinery/computer/slot_machine, +/obj/structure/window/reinforced/spawner/west, +/turf/open/floor/carpet/green, +/area/crew_quarters/bar) +"cca" = ( +/obj/machinery/computer/slot_machine, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/carpet/green, +/area/crew_quarters/bar) +"ccb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/stairs/medium, +/area/crew_quarters/bar) +"ccc" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/router/aux) +"ccd" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Robotics Lab"; + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/science/robotics/lab) +"cce" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/science/circuit) +"ccf" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/conveyor{ + dir = 1; + id = "starboard_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"ccg" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cch" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/conveyor/auto{ + dir = 1; + id = "router" + }, +/turf/open/floor/plating, +/area/router) +"cci" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/mass_driver{ + id = "workshop_in"; + name = "Router Driver" + }, +/turf/open/floor/plating, +/area/router) +"ccj" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + name = "Routing Depot"; + req_one_access_txt = "10;31" + }, +/turf/open/floor/plating, +/area/router) +"cck" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/conveyor/auto{ + dir = 4; + id = "disposal" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ccl" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/stairs, +/area/maintenance/department/chapel) +"ccm" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/science/robotics/lab) +"ccn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor/auto{ + dir = 1; + id = "router" + }, +/turf/open/floor/plating, +/area/router) +"cco" = ( +/obj/machinery/conveyor/auto{ + id = "router" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/router) +"ccp" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ccq" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/sign/poster/official/nanomichi_ad{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"ccr" = ( +/obj/structure/disposalpipe/trunk, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"ccs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/conveyor{ + dir = 1; + id = "starboard_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"cct" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/science/robotics/mechbay) +"ccu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"ccv" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/door/airlock/mining{ + name = "Mining Office"; + req_one_access_txt = "10;24;48" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"ccw" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ccx" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"ccy" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor/auto{ + dir = 1; + id = "router" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/router) +"ccz" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"ccA" = ( +/obj/machinery/disposal/deliveryChute, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/router) +"ccB" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/folder/white, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 8; + icon_state = "left"; + name = "Robotics Desk"; + req_access_txt = "29" + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"ccC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ccD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ccE" = ( +/obj/machinery/mass_driver{ + id = "eng_in"; + name = "Router Driver" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/router) +"ccF" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/item/flashlight, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"ccG" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/camera{ + c_tag = "Atmospherics East"; + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"ccH" = ( +/obj/machinery/mass_driver{ + dir = 8; + id = "disposal_in"; + name = "Router Driver" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"ccI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/obj/machinery/conveyor/auto{ + dir = 4; + id = "disposal" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ccJ" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "starboard_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"ccK" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"ccL" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/machinery/rnd/bepis, +/turf/open/floor/engine, +/area/science/explab) +"ccM" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/main) +"ccN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ccO" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/sorting/mail{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"ccP" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/obj/structure/grille, +/turf/open/floor/plating/airless, +/area/router/aux) +"ccQ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"ccR" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"ccS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/courtroom) +"ccT" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/light, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"ccU" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"ccV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Starboard Quarter Maintenance"; + req_one_access_txt = "12;48" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"ccW" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"ccX" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"ccY" = ( +/obj/structure/cable, +/obj/effect/landmark/start/librarian, +/obj/machinery/power/apc{ + areastring = "/area/library"; + dir = 4; + name = "Library APC"; + pixel_x = 24 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/library) +"ccZ" = ( +/obj/structure/closet/cardboard, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cda" = ( +/obj/structure/table, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cdb" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/turf/open/floor/plating/airless, +/area/router/aux) +"cdc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/hallway/secondary/entry) +"cdd" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"cde" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/primary/central) +"cdf" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"cdg" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdh" = ( +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"cdi" = ( +/obj/machinery/disposal/deliveryChute, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"cdj" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/machinery/microwave, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdk" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdm" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/photocopier, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/paper/guides/cogstation/disposals, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdn" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"cdo" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cdp" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible, +/obj/machinery/atmospherics/pipe/simple/violet/hidden{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cdq" = ( +/obj/machinery/mass_driver{ + id = "sq_in"; + name = "Router Driver" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"cdr" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cds" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdt" = ( +/turf/closed/wall/r_wall, +/area/router/eng) +"cdu" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdv" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = -29 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdw" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdx" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 1 + }, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"cdy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/closed/wall, +/area/engine/break_room) +"cdz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdA" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdB" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/structure/sign/warning/enginesafety, +/turf/closed/wall, +/area/engine/break_room) +"cdC" = ( +/turf/closed/wall, +/area/engine/break_room) +"cdD" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/line, +/obj/item/storage/box/monkeycubes, +/obj/item/storage/box/monkeycubes, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science RC"; + pixel_y = 30; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cdE" = ( +/obj/structure/table/wood, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/item/tape, +/obj/item/taperecorder{ + pixel_x = -4 + }, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/lawoffice) +"cdF" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"cdG" = ( +/obj/structure/plasticflaps, +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor/preopen{ + id = "engblock"; + name = "Engineering Router" + }, +/turf/open/floor/plating, +/area/router/eng) +"cdH" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/closed/wall, +/area/engine/break_room) +"cdI" = ( +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"cdJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdK" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdL" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdN" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/door/airlock/command{ + name = "Chief Engineer's Office"; + req_access_txt = "56" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"cdO" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "EngiLockdown"; + name = "Engineering Emergency Lockdown" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdP" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Aft Hall - Primary Tool Storage"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cdQ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/poddoor/preopen{ + id = "EngiLockdown"; + name = "Engineering Emergency Lockdown" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cdR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/sign/poster/contraband/hacking_guide{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"cdS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/engine/break_room) +"cdT" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Asteroid Mining Access"; + req_access_txt = "10;24" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cdU" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor/auto{ + id = "eng" + }, +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor/preopen{ + id = "engblock"; + name = "Engineering Router" + }, +/turf/open/floor/plating, +/area/router/eng) +"cdV" = ( +/turf/closed/wall/r_wall, +/area/engine/teg_hot) +"cdW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"cdX" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/chemist, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medical)"; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cdY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cdZ" = ( +/turf/closed/wall/r_wall, +/area/medical/medbay/lobby) +"cea" = ( +/obj/structure/table/wood, +/obj/structure/window/reinforced/spawner/north, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/paper_bin, +/obj/item/pen, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/library) +"ceb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics3"; + name = "robotics lab shutters" + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"cec" = ( +/obj/structure/table/glass, +/obj/item/paicard, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/medical/medbay/lobby) +"ced" = ( +/obj/machinery/computer/med_data{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cee" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cef" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"ceg" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/medical/medbay/lobby) +"ceh" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/storage/tech) +"cei" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cej" = ( +/obj/machinery/vending/medical, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cek" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/medical/medbay/lobby) +"cel" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cem" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/door/window/eastright{ + name = "Medbay Desk"; + req_access_txt = "5" + }, +/obj/item/folder/white, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cen" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/circuit, +/area/bridge) +"ceo" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/bridge) +"cep" = ( +/obj/machinery/camera/motion{ + c_tag = "Telecomms Satellite Exterior - Starboard Bow"; + dir = 1; + network = list("tcomms"); + pixel_x = 22 + }, +/turf/open/space/basic, +/area/space) +"ceq" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall/rust, +/area/engine/teg_hot) +"cer" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/mass_driver{ + dir = 1; + id = "eng_out"; + name = "Router Driver" + }, +/obj/structure/window/reinforced/spawner/west, +/turf/open/floor/plating, +/area/router/eng) +"ces" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/conveyor/auto{ + id = "eng" + }, +/obj/structure/window/reinforced/spawner/east, +/turf/open/floor/plating, +/area/router/eng) +"cet" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/engine/teg_hot) +"ceu" = ( +/obj/machinery/vending/snack/random, +/turf/open/floor/carpet/blue, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"cev" = ( +/obj/machinery/vending/games, +/turf/open/floor/carpet/blue, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"cew" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/conveyor/auto{ + dir = 1; + id = "service" + }, +/obj/structure/window/reinforced/spawner/west, +/turf/open/floor/plating, +/area/router/eng) +"cex" = ( +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"cey" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Arcade" + }, +/turf/open/floor/carpet/blue, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"cez" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/fire{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/brute, +/obj/item/storage/firstaid/brute, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"ceA" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2, +/obj/item/storage/firstaid/o2, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"ceB" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"ceC" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/solars/port) +"ceD" = ( +/obj/docking_port/stationary{ + dir = 8; + dwidth = 2; + height = 13; + id = "ferry_home"; + name = "port bay 2"; + width = 5 + }, +/turf/open/space/basic, +/area/space) +"ceE" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/external{ + name = "Ferry Docking Bay" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ceF" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/external{ + name = "Ferry Docking Bay" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ceG" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "trash"; + name = "Disposal Driver" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ceH" = ( +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor{ + id = "trash"; + name = "Disposal Bay Door" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ceI" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"ceJ" = ( +/obj/machinery/power/solar_control{ + dir = 4; + name = "Starboard Quarter Solar Control" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"ceK" = ( +/obj/structure/grille, +/turf/open/floor/plating, +/area/router/eng) +"ceL" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/table, +/obj/item/destTagger, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/router/eng) +"ceM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/button/massdriver{ + id = "eng_out"; + pixel_x = -24; + pixel_y = 24 + }, +/obj/machinery/button/door{ + id = "engblock"; + name = "Router Access Control"; + pixel_x = -24; + pixel_y = 32; + req_access_txt = "31" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/router/eng) +"ceN" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/router/eng) +"ceO" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = 29 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/router/eng) +"ceP" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/router/eng) +"ceQ" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = -32 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/cable{ + icon_state = "2-5" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"ceR" = ( +/obj/machinery/door/poddoor{ + id = "TEGMixVent"; + name = "Mixing Chamber Vent" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/engine/vacuum, +/area/engine/teg_hot) +"ceS" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance{ + lootcount = 3; + name = "3maintenance loot spawner" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"ceT" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/computer/cargo/request{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/requests_console{ + department = "Engineering Router"; + name = "Engineering Router RC"; + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/router/eng) +"ceU" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 9 + }, +/obj/structure/fireaxecabinet{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"ceV" = ( +/turf/open/floor/plasteel, +/area/router/eng) +"ceW" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/router/eng) +"ceX" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/power/apc{ + name = "Engineering Router APC"; + pixel_y = -24 + }, +/obj/machinery/light/small, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/router/eng) +"ceY" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"ceZ" = ( +/obj/machinery/door/firedoor, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Asteroid Mining Access"; + req_access_txt = "10;24" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cfa" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 6 + }, +/turf/open/floor/engine/vacuum, +/area/engine/teg_hot) +"cfb" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/photocopier, +/turf/open/floor/carpet/blue, +/area/medical/medbay/central) +"cfc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"cfd" = ( +/obj/structure/closet/crate/wooden, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cfe" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Port Bow Hall - Starboard"; + network = list("ss13","rd") + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cff" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 10 + }, +/turf/open/floor/engine/vacuum, +/area/engine/teg_hot) +"cfg" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/effect/landmark/start/research_director, +/obj/machinery/camera{ + c_tag = "Research Director's Office - Port"; + network = list("ss13","rd") + }, +/obj/machinery/keycard_auth{ + pixel_x = -8; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"cfh" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"cfi" = ( +/turf/open/floor/plasteel, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"cfj" = ( +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"cfk" = ( +/obj/structure/closet/secure_closet/engineering_electrical, +/turf/open/floor/plasteel, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"cfl" = ( +/turf/closed/wall, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"cfm" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"cfn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"cfo" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple, +/turf/open/floor/engine/vacuum, +/area/engine/teg_hot) +"cfp" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/engine/teg_hot) +"cfq" = ( +/obj/structure/lattice/catwalk, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cfr" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/door/airlock/external/glass{ + name = "Mixing Chamber Access"; + req_one_access_txt = "10;24" + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plating, +/area/engine/teg_hot) +"cfs" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cft" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/camera{ + c_tag = "Engineering - Mixing Chamber"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/teg_hot) +"cfu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/teg_hot) +"cfv" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel, +/area/engine/storage{ + name = "Canister Storage" + }) +"cfw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Engineering Construction Area"; + dir = 4 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/turf/open/floor/plasteel, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"cfx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"cfy" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/storage_shared{ + name = "Electrical Substation" + }) +"cfz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cfA" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 5 + }, +/turf/open/floor/engine/vacuum, +/area/engine/teg_hot) +"cfB" = ( +/obj/machinery/atmospherics/pipe/heat_exchanging/simple{ + dir = 9 + }, +/turf/open/floor/engine/vacuum, +/area/engine/teg_hot) +"cfC" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/floor/engine/vacuum, +/area/engine/teg_hot) +"cfD" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/space/basic, +/area/space/nearstation) +"cfE" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/teg_hot) +"cfF" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/teg_hot) +"cfG" = ( +/obj/machinery/door/airlock/highsecurity{ + name = "Secure Tech Storage"; + req_access_txt = "19;23" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/storage/tech) +"cfH" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/outlet_injector/on, +/turf/open/floor/engine/vacuum, +/area/engine/teg_hot) +"cfI" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/sparker{ + id = "TEGMixIgniter"; + pixel_x = 24 + }, +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/remains/human, +/turf/open/floor/engine/vacuum, +/area/engine/teg_hot) +"cfJ" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/teg_hot) +"cfK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/teg_hot) +"cfL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics Access"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engine/storage{ + name = "Canister Storage" + }) +"cfM" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cfN" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cfO" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cfP" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cfQ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Library Access" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/library) +"cfR" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/vending/cigarette, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cfS" = ( +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cfT" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/visible, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cfU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/item/beacon, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cfV" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cfW" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/structure/window/plasma/reinforced/spawner/north, +/obj/structure/window/plasma/reinforced/spawner, +/obj/structure/lattice, +/turf/open/space/basic, +/area/engine/teg_hot) +"cfX" = ( +/obj/item/pipe, +/obj/structure/cable{ + icon_state = "2-5" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"cfY" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/item/stack/sheet/metal, +/obj/item/stack/sheet/metal, +/obj/item/stack/sheet/metal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"cfZ" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel/stairs/right, +/area/science/research{ + name = "Research Sector" + }) +"cga" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cgb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external/glass{ + name = "Mixing Chamber Access"; + req_one_access_txt = "10;24" + }, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plating, +/area/engine/teg_hot) +"cgc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"cgd" = ( +/obj/structure/fans/tiny, +/obj/structure/plasticflaps, +/obj/machinery/conveyor/auto{ + dir = 4; + id = "disposal" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cge" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cgf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cgg" = ( +/obj/effect/landmark/start/atmospheric_technician, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cgh" = ( +/obj/machinery/pipedispenser, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/end{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cgi" = ( +/obj/machinery/atmospherics/pipe/simple/violet/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/closed/wall/r_wall, +/area/engine/teg_hot) +"cgj" = ( +/obj/machinery/conveyor/auto{ + id = "cargo" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"cgk" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/conveyor/auto{ + id = "cargo" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"cgl" = ( +/obj/machinery/button/door{ + id = "TEGMixVent"; + name = "Mixing Chamber Vent"; + pixel_y = 24; + req_access_txt = "10" + }, +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4; + name = "atmos mix to burn" + }, +/turf/open/floor/plasteel/dark, +/area/engine/teg_hot) +"cgm" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"cgn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"cgo" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible, +/turf/open/floor/plasteel/dark, +/area/engine/teg_hot) +"cgp" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/obj/machinery/button/ignition{ + id = "TEGMixIgniter"; + name = "Mix Igniter"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/engine/teg_hot) +"cgq" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cgr" = ( +/obj/machinery/vending/wardrobe/robo_wardrobe, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cgs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cgt" = ( +/obj/structure/rack, +/obj/item/caution, +/obj/item/caution, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cgu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/plasteel/dark, +/area/engine/teg_hot) +"cgv" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cgw" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/engine/teg_hot) +"cgx" = ( +/obj/machinery/atmospherics/pipe/manifold4w/cyan/visible, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cgy" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/rust, +/area/maintenance/solars/starboard/aft) +"cgz" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cgA" = ( +/obj/machinery/pipedispenser/disposal, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cgB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cgC" = ( +/obj/structure/grille, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/hallway/primary/central) +"cgD" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/teg_hot) +"cgE" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"cgF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/spawner/north, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/science/server{ + name = "Computer Core" + }) +"cgG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/spawner/north, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/science/server{ + name = "Computer Core" + }) +"cgH" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/closed/wall/r_wall, +/area/science/server{ + name = "Computer Core" + }) +"cgI" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/closed/wall/r_wall, +/area/science/server{ + name = "Computer Core" + }) +"cgJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall/r_wall, +/area/science/server{ + name = "Computer Core" + }) +"cgK" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/closed/wall/r_wall, +/area/science/server{ + name = "Computer Core" + }) +"cgL" = ( +/obj/machinery/computer/rdservercontrol{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plasteel/dark, +/area/science/server{ + name = "Computer Core" + }) +"cgM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"cgN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/science/server{ + name = "Computer Core" + }) +"cgO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/science/server{ + name = "Computer Core" + }) +"cgP" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/closed/wall/r_wall, +/area/science/server{ + name = "Computer Core" + }) +"cgQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/science/server{ + name = "Computer Core" + }) +"cgR" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 6 + }, +/turf/open/floor/plasteel/dark, +/area/engine/teg_hot) +"cgS" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 4; + node1_concentration = 0.8; + node2_concentration = 0.2; + on = 1; + target_pressure = 4500 + }, +/turf/open/floor/plasteel/dark, +/area/engine/teg_hot) +"cgT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cgU" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4; + name = "manual mix to burn" + }, +/turf/open/floor/plasteel/dark, +/area/engine/teg_hot) +"cgV" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cgW" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 3; + height = 5; + id = "mining_home"; + name = "mining shuttle bay"; + roundstart_template = /datum/map_template/shuttle/mining/delta; + width = 7 + }, +/turf/open/space/basic, +/area/space) +"cgX" = ( +/obj/machinery/conveyor/auto{ + dir = 4; + id = "disposal" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cgY" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cgZ" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cha" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/sorting/mail{ + dir = 4; + sortType = 1 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"chb" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/engine/teg_hot) +"chc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"chd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/landmark/start/cargo_technician, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"che" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"chf" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"chg" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/engine/teg_hot) +"chh" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plating, +/area/tcommsat/computer) +"chi" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"chj" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 1 + }, +/obj/machinery/meter, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/engine/teg_hot) +"chk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engine/teg_hot) +"chl" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/storage{ + name = "Canister Storage" + }) +"chm" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/closed/wall/r_wall/rust, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"chn" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/disposal/incinerator"; + dir = 8; + name = "Incinerator APC"; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cho" = ( +/turf/closed/wall/r_wall/rust, +/area/maintenance/department/eva) +"chp" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"chq" = ( +/obj/machinery/pipedispenser/disposal/transit_tube, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"chr" = ( +/obj/machinery/atmospherics/components/binary/valve/digital, +/turf/open/floor/plasteel/dark, +/area/engine/teg_hot) +"chs" = ( +/turf/open/floor/plasteel/dark, +/area/engine/teg_hot) +"cht" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/engine/teg_hot) +"chu" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engine/teg_hot) +"chv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"chw" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"chx" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"chy" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engine/teg_hot) +"chz" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"chA" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"chB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"chC" = ( +/turf/closed/wall/r_wall/rust, +/area/space/nearstation) +"chD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"chE" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engine/teg_cold) +"chF" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 4 + }, +/obj/structure/table, +/obj/item/analyzer, +/obj/item/pipe_dispenser, +/obj/item/wrench, +/turf/open/floor/plasteel/dark, +/area/engine/teg_cold) +"chG" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/engine/teg_cold) +"chH" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/closed/wall/r_wall/rust, +/area/maintenance/fore) +"chI" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/engine/teg_cold) +"chJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/security) +"chK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/heat_exchanging/junction{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/teg_cold) +"chL" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"chM" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"chN" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall/r_wall, +/area/engine/teg_hot) +"chO" = ( +/obj/structure/table, +/obj/machinery/requests_console{ + department = "Atmospherics"; + departmentType = 4; + name = "Atmos RC"; + pixel_x = 30 + }, +/obj/item/clothing/head/welding{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/clothing/glasses/welding, +/obj/item/multitool, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"chP" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock{ + name = "Law Office"; + req_access_txt = "38" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"chQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"chR" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/science/mixing"; + dir = 1; + name = "Toxins Lab APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/engine, +/area/science/storage) +"chS" = ( +/obj/machinery/suit_storage_unit/atmos, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"chT" = ( +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/turf/open/floor/engine, +/area/science/storage) +"chU" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/wood, +/area/library) +"chV" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"chW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"chX" = ( +/obj/structure/sign/warning/nosmoking, +/turf/closed/wall/r_wall, +/area/engine/teg_hot) +"chY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/light{ + dir = 8 + }, +/obj/item/storage/hypospraykit/fire, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/grenade/chem_grenade/smart_metal_foam, +/obj/item/wrench, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"chZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"cia" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"cib" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"cic" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"cid" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/table, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/item/analyzer, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"cie" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/teg_cold) +"cif" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cig" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/disposaloutlet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cih" = ( +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cii" = ( +/obj/machinery/disposal/deliveryChute, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cij" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/westleft{ + name = "Science Desk"; + req_one_access_txt = "29;47" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cik" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/mass_driver{ + dir = 8; + id = "router_in"; + name = "Router Driver" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cil" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cim" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1; + sortType = 11 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cin" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/conveyor/auto{ + dir = 4; + id = "disposal" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cio" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/closed/wall, +/area/science/robotics/mechbay) +"cip" = ( +/obj/machinery/mass_driver{ + id = "cargo_in"; + name = "Router Driver" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ciq" = ( +/obj/machinery/conveyor/auto{ + dir = 4; + id = "disposal" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cir" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/engine/teg_cold) +"cis" = ( +/obj/structure/sign/warning/vacuum{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cit" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ciu" = ( +/obj/structure/barricade/wooden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/poster/ripped{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"civ" = ( +/obj/structure/girder/displaced, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ciw" = ( +/obj/structure/cable, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cix" = ( +/obj/structure/girder, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ciy" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ciz" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/item/reagent_containers/food/drinks/trophy, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"ciA" = ( +/obj/effect/turf_decal/tile/brown, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"ciB" = ( +/obj/structure/frame/computer, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/airless, +/area/maintenance/port/fore) +"ciC" = ( +/obj/structure/table, +/obj/item/paper/pamphlet/gateway, +/turf/open/floor/plasteel/white, +/area/gateway) +"ciD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/engine/teg_cold) +"ciE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"ciF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ciG" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "disposal_off" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ciH" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 6 + }, +/obj/machinery/meter, +/obj/structure/disposalpipe/junction/flip{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/engine/teg_cold) +"ciI" = ( +/turf/closed/wall/r_wall/rust, +/area/quartermaster/warehouse) +"ciJ" = ( +/turf/closed/wall/rust, +/area/quartermaster/warehouse) +"ciK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"ciL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"ciM" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/conveyor/auto{ + dir = 4; + id = "disposal" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ciN" = ( +/obj/structure/table/reinforced, +/obj/item/storage/box/donkpockets{ + pixel_y = 4 + }, +/obj/machinery/door/poddoor/preopen{ + id = "kitchenlock"; + name = "Kitchen Lockup" + }, +/obj/machinery/door/window/northleft{ + name = "Kitchen Slider"; + req_access_txt = "28" + }, +/obj/machinery/door/window/southleft{ + name = "Bar Slider"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/kitchen) +"ciO" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "disposal_out"; + name = "Router Driver" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ciP" = ( +/obj/effect/turf_decal/delivery, +/obj/item/weldingtool, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"ciQ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"ciR" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/door/airlock/security{ + name = "Cargo Security Checkpoint"; + req_access_txt = "63" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"ciS" = ( +/obj/machinery/conveyor/auto{ + dir = 9; + id = "disposal" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ciT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/structure/closet/radiation, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28; + pixel_y = -4 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"ciU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/structure/closet/radiation, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"ciV" = ( +/obj/machinery/conveyor/auto{ + dir = 8; + id = "disposal" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ciW" = ( +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 8; + sortType = 11 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"ciX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/conveyor/auto{ + dir = 8; + id = "disposal" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"ciY" = ( +/obj/structure/table, +/obj/item/storage/toolbox/emergency, +/obj/item/wrench, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/machinery/power/apc{ + areastring = "/area/engine/teg_hot"; + dir = 8; + name = "Hot Loop APC"; + pixel_x = -24 + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"ciZ" = ( +/obj/machinery/atmospherics/components/binary/valve/digital, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"cja" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cjb" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cjc" = ( +/obj/structure/fans/tiny, +/obj/structure/plasticflaps, +/obj/machinery/door/poddoor{ + name = "Disposal Router" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cjd" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"cje" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"cjf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security/glass{ + name = "Cargo Detainment Cell"; + req_access_txt = "63" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cjg" = ( +/obj/machinery/conveyor/auto{ + dir = 1; + id = "disposal" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cjh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"cji" = ( +/obj/structure/fans/tiny, +/obj/structure/plasticflaps, +/obj/machinery/conveyor/auto{ + dir = 1; + id = "disposal" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cjj" = ( +/turf/closed/wall, +/area/crew_quarters/theatre/mime) +"cjk" = ( +/obj/machinery/vending/autodrobe, +/turf/open/floor/plasteel/checker, +/area/crew_quarters/theatre/mime) +"cjl" = ( +/obj/structure/closet/crate/wooden/toy, +/obj/item/toy/figure/mime, +/turf/open/floor/plasteel/checker, +/area/crew_quarters/theatre/mime) +"cjm" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/hallway/secondary/service) +"cjn" = ( +/obj/structure/reagent_dispensers/cooking_oil, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/kitchen/backroom) +"cjo" = ( +/obj/structure/table, +/obj/item/flashlight/seclite, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cjp" = ( +/turf/closed/wall/r_wall, +/area/crew_quarters/theatre/mime) +"cjq" = ( +/turf/closed/wall/rust, +/area/maintenance/port/central) +"cjr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/server{ + name = "Computer Core" + }) +"cjs" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"cjt" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + areastring = "/area/quartermaster/office"; + dir = 1; + name = "Cargo Office APC"; + pixel_y = 24 + }, +/obj/structure/sign/poster/contraband/scum{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cju" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/table, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/item/clothing/ears/earmuffs, +/obj/item/extinguisher{ + pixel_x = -12; + pixel_y = -2 + }, +/obj/machinery/camera{ + c_tag = "Engineering - Hot Loop"; + dir = 8; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"cjv" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/carpet, +/area/library) +"cjw" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/wood, +/area/library) +"cjx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/wood, +/area/library) +"cjy" = ( +/obj/machinery/recharge_station, +/turf/open/floor/plating, +/area/maintenance/port/central) +"cjz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/kirbyplants/photosynthetic, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cjA" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/item/kirbyplants/random, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cjB" = ( +/obj/item/stack/cable_coil/cut/red, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"cjC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/clothing/mask/cigarette, +/obj/structure/sign/poster/official/twelve_gauge{ + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cjD" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall, +/area/maintenance/department/eva) +"cjE" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; + pixel_y = 32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cjF" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; + pixel_y = 32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cjG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cjH" = ( +/obj/structure/lattice, +/obj/structure/sign/warning/electricshock{ + pixel_x = -32 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cjI" = ( +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES" + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"cjJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "E.V.A. Storage"; + req_access_txt = "18" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cjK" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/teg_cold) +"cjL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/engine/teg_cold) +"cjM" = ( +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/item/storage/toolbox/mechanical, +/obj/item/radio/off, +/obj/item/multitool{ + pixel_x = -6 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"cjN" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Security - Visitation Area"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"cjO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt{ + desc = "A thin layer of dust coating the floor."; + name = "dust" + }, +/turf/open/floor/plating, +/area/maintenance/port/fore) +"cjP" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cjQ" = ( +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/captain) +"cjR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Head of Security's Office"; + req_one_access_txt = "58" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/hos) +"cjS" = ( +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"cjT" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/landmark/start/security_officer, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"cjU" = ( +/obj/machinery/atmospherics/pipe/manifold/supply/visible{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/engine/teg_cold) +"cjV" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Engineering Sector" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cjW" = ( +/obj/structure/bed, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/item/bedsheet/hos, +/obj/effect/landmark/start/head_of_security, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "hos"; + name = "HoS Office Shutters"; + pixel_y = -32; + pixel_x = -5 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"cjX" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 9 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark, +/area/engine/teg_cold) +"cjY" = ( +/obj/machinery/computer/station_alert{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/machinery/keycard_auth{ + pixel_x = 8; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"cjZ" = ( +/obj/item/beacon, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/ai_monitored/storage/eva) +"cka" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"ckb" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/science/robotics/lab) +"ckc" = ( +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/aft/secondary"; + dir = 8; + name = "Aft Air Hookup APC"; + pixel_x = -24 + }, +/turf/open/floor/plating, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"ckd" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cke" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/wood, +/area/library) +"ckf" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"ckg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark/corner, +/area/ai_monitored/storage/eva) +"ckh" = ( +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/cafeteria, +/area/medical/medbay/central) +"cki" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"ckj" = ( +/turf/open/floor/plasteel/cafeteria, +/area/medical/medbay/central) +"ckk" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/camera{ + c_tag = "Research Maintenance"; + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"ckl" = ( +/turf/open/space/basic, +/area/space/station_ruins) +"ckm" = ( +/turf/closed/wall/r_wall, +/area/engine/teg_cold) +"ckn" = ( +/obj/machinery/door/airlock/external/glass{ + name = "External Solar Access"; + req_access_txt = "10;13" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cko" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/engine/engineering"; + dir = 4; + name = "Engine Room APC"; + pixel_x = 24 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"ckp" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/landmark/start/chemist, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"ckq" = ( +/obj/structure/closet/crate/hydroponics, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"ckr" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"cks" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"ckt" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"cku" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"ckv" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Warehouse"; + req_one_access_txt = "10;31" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"ckw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"ckx" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"cky" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"ckz" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/table, +/obj/item/pipe_dispenser, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"ckA" = ( +/obj/structure/sign/warning/fire, +/turf/closed/wall/r_wall, +/area/engine/teg_hot) +"ckB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/closet/crate/engineering, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/item/rcl/pre_loaded, +/obj/item/rcl/pre_loaded, +/obj/item/stack/cable_coil/red, +/obj/item/stack/cable_coil/red, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/machinery/camera{ + c_tag = "Engineering - Cold Loop"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"ckC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/binary/valve/digital{ + name = "gas to cold loop" + }, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"ckD" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/sign/warning/fire{ + pixel_x = 32; + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"ckE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"ckF" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/engine/teg_cold"; + dir = 4; + name = "Cold Loop APC"; + pixel_x = 24 + }, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"ckG" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"ckH" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"ckI" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"ckJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/engine/teg_hot) +"ckK" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/clothing/under/rank/cargo/miner, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"ckL" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/clothing/under/rank/cargo/miner, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"ckM" = ( +/obj/structure/closet/secure_closet/miner, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/item/clothing/under/rank/cargo/miner, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"ckN" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/north, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"ckO" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"ckP" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"ckQ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"ckR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/science/lab) +"ckS" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ckT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"ckU" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"ckV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"ckW" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"ckX" = ( +/obj/machinery/atmospherics/components/binary/valve, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ckY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/checker, +/area/ai_monitored/storage/eva) +"ckZ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/ai_monitored/storage/eva) +"cla" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"clb" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"clc" = ( +/obj/machinery/vending/wardrobe/chem_wardrobe, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cld" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cle" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/science/misc_lab"; + dir = 1; + name = "Research Observatory APC"; + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"clf" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology - Pen 3"; + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"clg" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"clh" = ( +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cli" = ( +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"clj" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"clk" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cll" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"clm" = ( +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cln" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"clo" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"clp" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"clq" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"clr" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"cls" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"clt" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/sign/warning/electricshock, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"clu" = ( +/obj/machinery/door/window/northleft{ + name = "Library Desk Door"; + req_access_txt = "37" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/library) +"clv" = ( +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"clw" = ( +/obj/effect/landmark/start/librarian, +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/library) +"clx" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/storage{ + name = "Canister Storage" + }) +"cly" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"clz" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"clA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"clB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/closed/wall/r_wall, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"clC" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"clD" = ( +/obj/machinery/telecomms/server/presets/medical, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"clE" = ( +/obj/machinery/ntnet_relay, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"clF" = ( +/obj/machinery/telecomms/server/presets/supply, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"clG" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"clH" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engine/storage_shared{ + name = "Electrical Substation" + }) +"clI" = ( +/obj/machinery/telecomms/bus/preset_four, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"clJ" = ( +/obj/machinery/telecomms/broadcaster/preset_left, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"clK" = ( +/obj/machinery/telecomms/processor/preset_four, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"clL" = ( +/obj/machinery/telecomms/bus/preset_two, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"clM" = ( +/obj/machinery/telecomms/broadcaster/preset_right, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"clN" = ( +/obj/machinery/telecomms/processor/preset_two, +/turf/open/floor/circuit/telecomms/mainframe, +/area/tcommsat/server) +"clO" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"clP" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/amplifier, +/obj/item/stock_parts/subspace/analyzer, +/obj/item/stock_parts/subspace/analyzer, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"clQ" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/ansible, +/obj/item/stock_parts/subspace/crystal, +/obj/item/stock_parts/subspace/crystal, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"clR" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/filter, +/obj/item/stock_parts/subspace/transmitter, +/obj/item/stock_parts/subspace/transmitter, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"clS" = ( +/obj/structure/table, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/subspace/treatment, +/obj/item/stock_parts/manipulator, +/obj/item/stock_parts/manipulator, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"clT" = ( +/obj/structure/table, +/obj/item/stack/sheet/glass, +/obj/item/stack/sheet/glass, +/obj/item/stock_parts/micro_laser, +/obj/item/stock_parts/micro_laser, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"clU" = ( +/obj/structure/table, +/obj/item/stock_parts/scanning_module, +/obj/item/stock_parts/scanning_module, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"clV" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Supply - Security Post"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"clW" = ( +/turf/closed/wall/rust, +/area/storage/tech) +"clX" = ( +/turf/closed/wall/rust, +/area/maintenance/starboard/aft) +"clY" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/closet/firecloset, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"clZ" = ( +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Escape Hall - Port"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cma" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Escape Hall - Starboard"; + dir = 8; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cmb" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Supply - Mining Dock"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cmc" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Starboard Quarter Solar Maintenance"; + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cmd" = ( +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cme" = ( +/obj/structure/bed, +/obj/item/clothing/glasses/sunglasses/blindfold, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cmf" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"cmg" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"cmh" = ( +/obj/structure/sign/warning/radiation, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cmi" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cmj" = ( +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cmk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cml" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cmm" = ( +/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cmn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cmo" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cmp" = ( +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cmq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cmr" = ( +/obj/machinery/gravity_generator/main/station, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cms" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cmt" = ( +/obj/structure/disposalpipe/segment, +/turf/closed/wall/r_wall, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"cmu" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/structure/cable, +/obj/machinery/power/smes, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cmv" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cmw" = ( +/obj/machinery/camera{ + c_tag = "Engineering - Gravity Generator"; + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/gravity_generator) +"cmx" = ( +/obj/machinery/light, +/turf/open/floor/engine, +/area/engine/gravity_generator) +"cmy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Starboard Quarter Maintenance"; + req_one_access_txt = "12;48" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"cmz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Starboard Quarter Maintenance"; + req_one_access_txt = "12;48" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"cmA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Bar Backroom"; + req_access_txt = "25" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"cmB" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/window/northright{ + name = "Emergency Shower" + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"cmC" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"cmD" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/deliveryChute, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cmE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"cmF" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/primary/central) +"cmG" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"cmH" = ( +/obj/structure/plasticflaps, +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor/preopen{ + id = "cargoblock"; + name = "Cargo Router" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"cmI" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/item/radio/off{ + pixel_x = -3; + pixel_y = 1 + }, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"cmJ" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Mining Dock"; + req_one_access_txt = "10;24;48" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cmK" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cmL" = ( +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/aft) +"cmM" = ( +/obj/structure/sign/poster/official/safety_internals{ + pixel_x = -32 + }, +/obj/effect/landmark/blobstart, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cmN" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/item/radio/intercom{ + frequency = 1359; + name = "Station Intercom (Security)"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/dark, +/area/lawoffice) +"cmO" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Engineering" + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cmP" = ( +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/library) +"cmQ" = ( +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/obj/machinery/camera{ + c_tag = "Xenobiology - Pen 4"; + dir = 8; + pixel_y = -22 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cmR" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"cmS" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cmT" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/folder/red, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/door/window/northright{ + name = "Security Checkpoint"; + req_access_txt = "1" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cmU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cmV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cmW" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Cargo"; + name = "Cargo RC"; + pixel_x = -30 + }, +/obj/machinery/camera{ + c_tag = "Supply - Quartermaster's Office"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"cmX" = ( +/obj/machinery/light/small, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"cmY" = ( +/obj/machinery/door/airlock/engineering{ + name = "Hot Loop"; + req_one_access_txt = "10;24" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"cmZ" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/atmospherics/components/unary/cryo_cell{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"cna" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/atmospherics/components/unary/cryo_cell{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"cnb" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/stripes/line, +/obj/item/storage/box/beakers{ + pixel_x = -4 + }, +/obj/item/storage/box/syringes{ + pixel_x = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cnc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cnd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cne" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cnf" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cng" = ( +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"cnh" = ( +/obj/machinery/door/airlock/engineering{ + name = "Cold Loop"; + req_access_txt = "10" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cni" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cnj" = ( +/obj/machinery/camera{ + c_tag = "Research - Observatory"; + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cnk" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cnl" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1; + pixel_x = 5 + }, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cnm" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/gateway) +"cnn" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cno" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cnp" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/bridge) +"cnq" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/mob/living/simple_animal/cockroach, +/turf/open/floor/plating, +/area/maintenance/port/central) +"cnr" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cns" = ( +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cnt" = ( +/obj/structure/fans/tiny, +/obj/structure/plasticflaps, +/obj/machinery/conveyor/auto{ + dir = 8; + id = "disposal" + }, +/obj/machinery/door/poddoor{ + name = "Disposal Router" + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cnu" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/gateway) +"cnv" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/bot, +/obj/effect/decal/cleanable/dirt, +/obj/structure/frame/computer, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cnw" = ( +/obj/effect/turf_decal/bot, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"cnx" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"cny" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"cnz" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/obj/structure/sign/departments/chemistry{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cnA" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cnB" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/chair{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cnC" = ( +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/engine, +/area/science/explab) +"cnD" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/engine, +/area/science/xenobiology) +"cnE" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 9; + height = 22; + id = "emergency_home"; + name = "CogStation Escape Dock"; + width = 29 + }, +/turf/open/space/basic, +/area/space) +"cnF" = ( +/obj/structure/disposalpipe/segment, +/obj/item/reagent_containers/food/drinks/bottle/kahlua/empty, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/maintenance/port/fore) +"cnG" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Shuttle Maintenance Access" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cnH" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Departures Shuttle Dock" + }, +/obj/structure/fans/tiny, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cnI" = ( +/turf/open/floor/plating{ + icon_state = "platingdmg3" + }, +/area/space/nearstation) +"cnJ" = ( +/obj/structure/girder, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cnK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"cnL" = ( +/obj/structure/closet/crate/science, +/obj/item/stack/sheet/metal/ten, +/obj/item/stack/sheet/glass/five, +/obj/item/stack/rods/twentyfive, +/obj/item/target/syndicate, +/obj/item/target/alien, +/obj/item/target, +/obj/item/target/clown, +/turf/open/floor/plasteel, +/area/science/mixing) +"cnM" = ( +/obj/machinery/mass_driver{ + dir = 8; + id = "pb_in"; + name = "Router Driver" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"cnN" = ( +/obj/structure/bookcase/random/fiction, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/library) +"cnO" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/engine, +/area/science/storage) +"cnP" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/item/kirbyplants{ + icon_state = "plant-21"; + pixel_y = 3 + }, +/turf/open/floor/wood, +/area/library) +"cnQ" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/camera{ + c_tag = "Supply - Warehouse Exterior"; + dir = 1 + }, +/turf/open/space/basic, +/area/quartermaster/warehouse) +"cnR" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"cnS" = ( +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/highcap/fifteen_k{ + areastring = /area/maintenance/solars/starboard/aft; + dir = 1; + name = "Starboard Quarter Solars APC"; + pixel_y = 26 + }, +/turf/open/floor/plating, +/area/maintenance/solars/starboard/aft) +"cnT" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plasteel, +/area/science/mixing) +"cnU" = ( +/obj/machinery/door/poddoor/incinerator_toxmix, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cnV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/turf/open/floor/engine, +/area/science/storage) +"cnW" = ( +/obj/structure/chair/office/dark{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/library) +"cnX" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/vehicle/ridden/wheelchair, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cnY" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/vehicle/ridden/wheelchair, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cnZ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/holopad, +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_y = -32 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"coa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cob" = ( +/obj/structure/closet/l3closet/virology, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/sign/warning/biohazard{ + pixel_y = -32 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"coc" = ( +/obj/machinery/camera{ + c_tag = "Medbay - Reception"; + dir = 4 + }, +/turf/open/floor/plasteel/stairs, +/area/medical/medbay/central) +"cod" = ( +/obj/structure/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/wood, +/area/medical/medbay/lobby) +"coe" = ( +/obj/structure/bodycontainer/morgue, +/obj/machinery/camera{ + c_tag = "Medbay Morgue"; + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"cof" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"cog" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plating, +/area/engine/storage_shared{ + name = "Electrical Substation" + }) +"coh" = ( +/obj/machinery/power/smes, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/engine/storage_shared{ + name = "Electrical Substation" + }) +"coi" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"coj" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cok" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"col" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"com" = ( +/obj/machinery/chem_master, +/obj/effect/turf_decal/stripes/end{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"con" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/station_engineer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/storage/primary) +"coo" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/storage/primary) +"cop" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "CEPrivacy"; + name = "CE Privacy Shutters" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/chief) +"coq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departures" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cor" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departures" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cos" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Workshop"; + req_access_txt = "11" + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"cot" = ( +/obj/machinery/computer/apc_control{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"cou" = ( +/obj/structure/chair/office/dark{ + dir = 8 + }, +/obj/effect/landmark/start/chief_engineer, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"cov" = ( +/obj/structure/sign/warning/nosmoking{ + pixel_y = -32 + }, +/turf/closed/wall, +/area/medical/medbay/central) +"cow" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Asteroid Mining Access"; + req_one_access_txt = "10;48" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cox" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"coy" = ( +/obj/structure/sign/poster/official/safety_internals{ + pixel_x = -32 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"coz" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"coA" = ( +/obj/structure/closet/emcloset, +/obj/machinery/camera{ + c_tag = "Aft Maintenance - Starboard Quarter"; + dir = 8; + pixel_y = -22 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"coB" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Aft Hallway - MedSci Port"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"coC" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/camera{ + c_tag = "Aft Maintenance - Starboard Bow"; + pixel_x = 22 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"coD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"coE" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Aft Hall - MedSci Starboard"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"coF" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/landmark/start/assistant, +/obj/machinery/camera{ + c_tag = "Aft Hall - Workshop"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"coG" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Research - Experimentation Lab"; + dir = 8; + pixel_y = -22 + }, +/turf/open/floor/engine, +/area/science/explab) +"coH" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"coI" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/gateway) +"coJ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Virology Access"; + dir = 8; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"coK" = ( +/obj/machinery/camera{ + c_tag = "Medbay - Monkey Pen"; + dir = 4 + }, +/mob/living/carbon/monkey, +/turf/open/floor/grass, +/area/medical/virology) +"coL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=cargo"; + location = "eng2" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"coM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"coN" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"coO" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Central Hall"; + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"coP" = ( +/obj/structure/table/glass, +/obj/item/paper_bin, +/obj/machinery/camera{ + c_tag = "Central Plaza - Port"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"coQ" = ( +/obj/machinery/camera{ + c_tag = "Central Docking Bay" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"coR" = ( +/obj/machinery/camera{ + c_tag = "Ferry Docking Bay"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"coS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Ferry Docking Bay - Starboard"; + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"coT" = ( +/obj/machinery/atmospherics/pipe/manifold/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"coU" = ( +/obj/machinery/computer/secure_data{ + dir = 1 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Security - Front Desk"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/main) +"coV" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/camera{ + c_tag = "Medbay Entrance"; + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"coW" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/rack, +/obj/effect/spawner/lootdrop/techstorage/engineering, +/obj/machinery/camera{ + c_tag = "Technical Storage"; + dir = 4 + }, +/turf/open/floor/plating, +/area/storage/tech) +"coX" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Operating Theatre"; + dir = 8; + network = list("ss13","medbay"); + pixel_y = -22 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"coY" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/machinery/camera{ + c_tag = "Medbay - Cryogenics"; + dir = 1 + }, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/obj/item/reagent_containers/glass/beaker/cryoxadone, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"coZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpa" = ( +/obj/structure/closet/crate/radiation, +/obj/item/storage/firstaid/radbgone, +/obj/item/clothing/suit/radiation, +/obj/item/clothing/head/radiation, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cpb" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/sign/warning/biohazard{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/medical/virology) +"cpc" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpd" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/crew_quarters/fitness) +"cpe" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/full, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/engine, +/area/science/explab) +"cpf" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"cpg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cph" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"cpi" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/visible{ + dir = 5 + }, +/obj/machinery/light/small, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"cpj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"cpk" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cpl" = ( +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpm" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/photocopier, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Cargo Bay"; + departmentType = 2; + name = "Cargo RC"; + pixel_y = 30 + }, +/obj/machinery/camera{ + c_tag = "Supply - Delivery Office Aft"; + network = list("ss13","rd") + }, +/obj/item/paper/guides/cogstation/disposals, +/obj/item/paper/fluff/cogstation/mulebot, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"cpn" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpo" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cpp" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor/auto{ + id = "cargo" + }, +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor/preopen{ + id = "cargoblock"; + name = "Cargo Router" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"cpq" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet/blue, +/area/crew_quarters/abandoned_gambling_den{ + name = "Arcade" + }) +"cpr" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/public/glass, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cps" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/captain) +"cpt" = ( +/obj/machinery/newscaster{ + pixel_x = -30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"cpu" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/holopad, +/turf/open/floor/wood, +/area/library) +"cpv" = ( +/obj/structure/table, +/obj/machinery/newscaster{ + pixel_x = 30 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cpw" = ( +/obj/machinery/computer/operating, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/sign/poster/official/space_cops{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/science/robotics/lab) +"cpx" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/primary/central) +"cpy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cpz" = ( +/turf/closed/wall/r_wall, +/area/medical/virology) +"cpA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cpB" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/basic, +/area/space) +"cpC" = ( +/obj/effect/landmark/carpspawn, +/turf/open/space/basic, +/area/space/station_ruins) +"cpD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/engine, +/area/science/storage) +"cpE" = ( +/obj/structure/fans/tiny, +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cpF" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cpG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/external, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/department/eva) +"cpH" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/sign/directions/engineering{ + dir = 4; + pixel_y = -24 + }, +/obj/structure/sign/directions/supply{ + dir = 4; + pixel_y = -32 + }, +/obj/structure/sign/directions/evac{ + dir = 4; + pixel_y = -40 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cpI" = ( +/obj/machinery/chem_dispenser, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"cpJ" = ( +/turf/closed/wall/r_wall/rust, +/area/quartermaster/office) +"cpK" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"cpL" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"cpM" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/bot, +/obj/machinery/light{ + dir = 1; + light_color = "#e8eaff" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cpN" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/item/cartridge/atmos, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cpO" = ( +/obj/structure/closet/secure_closet/atmospherics, +/obj/item/cartridge/atmos, +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cpP" = ( +/obj/machinery/camera{ + c_tag = "Research - Gateway Atrium"; + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/gateway) +"cpQ" = ( +/obj/machinery/vending/wardrobe/atmos_wardrobe, +/obj/effect/turf_decal/stripes/line{ + dir = 6; + layer = 2.03 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/dark, +/area/engine/atmos) +"cpR" = ( +/obj/structure/closet/crate/engineering/electrical, +/obj/item/electronics/apc, +/obj/item/electronics/apc, +/obj/item/electronics/airalarm, +/obj/item/electronics/airalarm, +/obj/item/electronics/firelock, +/obj/item/electronics/firelock, +/obj/item/electronics/firealarm, +/obj/item/electronics/firealarm, +/obj/item/electronics/airlock, +/obj/item/electronics/airlock, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cpS" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cpT" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cpU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cpV" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cpW" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/start/cargo_technician, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cpX" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine/air, +/area/engine/atmos) +"cpY" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/engine/teg_hot) +"cpZ" = ( +/obj/structure/table, +/obj/item/tank/internals/air, +/obj/item/clothing/mask/gas, +/turf/open/floor/plasteel/dark, +/area/engine/teg_hot) +"cqa" = ( +/obj/machinery/autolathe, +/obj/effect/turf_decal/delivery, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cqb" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqc" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cqd" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/mob/living/simple_animal/hostile/retaliate/goose{ + check_friendly_fire = 1; + desc = "It may not be as wise as an owl, but the Head of Security's pet is far more dangerous."; + faction = list("neutral","silicon","turret","station"); + name = "Officer Snooty" + }, +/turf/open/floor/plasteel, +/area/security/main) +"cqe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=eng1"; + location = "sci" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqf" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"cqg" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqh" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"cqi" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/crew_quarters/fitness) +"cqj" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cqk" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=med"; + location = "cargo" + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cql" = ( +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=eng2"; + location = "evac" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cqm" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/obj/item/storage/box/disks_nanite, +/obj/item/book/manual/wiki/research_and_development{ + pixel_x = 4; + pixel_y = -8 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"cqn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cqo" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cqp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cqq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Warehouse"; + req_one_access_txt = "10;24" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cqr" = ( +/obj/machinery/power/apc{ + areastring = "/area/maintenance/starboard/central"; + name = "Central Starboard Maintenance APC"; + pixel_y = -26 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/maintenance/starboard/central) +"cqs" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table/wood, +/obj/item/clipboard, +/obj/item/paper/guides/jobs/engi/solars, +/obj/item/pen, +/obj/machinery/camera{ + c_tag = "Engineering Foyer - Port"; + network = list("ss13","rd") + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cqt" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/noticeboard/qm{ + dir = 4; + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"cqu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/computer/atmos_alert, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cqv" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cqw" = ( +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/machinery/disposal/bin, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/white/full, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cqx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/modular_computer/console/preset/engineering, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cqy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/table/wood, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cqz" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cqA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cqB" = ( +/obj/structure/table/wood, +/obj/item/reagent_containers/food/drinks/bottle/absinthe, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"cqC" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cqD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cqE" = ( +/obj/machinery/conveyor_switch{ + id = "EngiCargoConveyer" + }, +/obj/machinery/button/door{ + id = "EngiDeliverDoor"; + name = "Engineering Delivery Door Control"; + pixel_x = 24 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cqF" = ( +/obj/effect/turf_decal/delivery, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"cqG" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cqH" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"cqI" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/atmospheric_technician, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cqJ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cqK" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/sign/plaques/atmos{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cqL" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cqM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cqN" = ( +/turf/closed/wall/rust, +/area/maintenance/department/security) +"cqO" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cqP" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"cqQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqS" = ( +/obj/machinery/computer/rdconsole/experiment{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/requests_console{ + department = "Science"; + departmentType = 2; + name = "Science RC"; + pixel_x = -30; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cqT" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cqU" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cqV" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"cqW" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cqX" = ( +/obj/docking_port/stationary{ + dir = 4; + dwidth = 5; + height = 7; + id = "supply_home"; + name = "Cargo Shuttle"; + width = 12 + }, +/turf/open/space/basic, +/area/space) +"cqY" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cqZ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/requests_console{ + department = "Medbay"; + departmentType = 1; + name = "Medbay RC"; + pixel_y = -32 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cra" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/maintenance{ + name = "Auxiliary Tool Storage" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/storage/tools) +"crb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/conveyor{ + dir = 4; + id = "EngiCargoConveyer" + }, +/turf/open/floor/plating, +/area/engine/teg_cold) +"crc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"crd" = ( +/obj/effect/turf_decal/bot, +/obj/structure/table/reinforced, +/obj/item/destTagger, +/obj/item/destTagger, +/obj/item/destTagger, +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; + pixel_y = 32 + }, +/obj/machinery/button/massdriver{ + id = "cargo_out"; + pixel_x = -8; + pixel_y = -4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"cre" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Asteroid Mining Access"; + req_one_access_txt = "10;48" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"crf" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"crg" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/door/airlock/medical/glass{ + name = "Chemistry Lab"; + req_access_txt = "5; 33" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"crh" = ( +/obj/machinery/mass_driver{ + dir = 1; + id = "cargo_out"; + name = "Router Driver" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"cri" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"crj" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit) +"crk" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/primary/central) +"crl" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"crm" = ( +/obj/machinery/door/firedoor, +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "EngiCargoConveyer" + }, +/obj/machinery/door/poddoor{ + id = "EngiDeliverDoor"; + name = "Engineering Delivery Door" + }, +/turf/open/floor/plating, +/area/engine/teg_cold) +"crn" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chem1"; + name = "chem lab shutters" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/medical/chemistry) +"cro" = ( +/turf/closed/wall/r_wall/rust, +/area/maintenance/starboard/aft) +"crp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plating, +/area/storage/tech) +"crq" = ( +/obj/structure/closet/crate/freezer, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/power/apc{ + areastring = "/area/medical/morgue"; + dir = 4; + name = "Morgue APC"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"crr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Central Hall - Fore"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"crs" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = -29 + }, +/turf/open/floor/engine, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"crt" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cru" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"crv" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"crw" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"crx" = ( +/obj/machinery/camera{ + c_tag = "Engine Room - Port Quarter"; + dir = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"cry" = ( +/obj/structure/table, +/obj/item/stack/sheet/plasteel{ + amount = 10; + pixel_x = -5 + }, +/obj/item/stack/cable_coil/random, +/obj/item/stack/cable_coil/random{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/item/stack/cable_coil/random{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Robotics - Surgery"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"crz" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/camera/motion{ + c_tag = "Telecomms Satellite"; + dir = 1; + network = list("tcomms") + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"crA" = ( +/obj/machinery/aug_manipulator, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"crB" = ( +/obj/structure/lattice, +/obj/machinery/camera/motion{ + c_tag = "Telecomms Satellite Exterior - Port"; + dir = 8; + network = list("tcomms") + }, +/turf/open/space/basic, +/area/space/nearstation) +"crC" = ( +/obj/structure/lattice, +/obj/machinery/camera/motion{ + c_tag = "Telecomms Satellite Exterior Starboard"; + dir = 4; + network = list("tcomms") + }, +/turf/open/space/basic, +/area/space/nearstation) +"crD" = ( +/obj/machinery/camera/motion{ + c_tag = "Telecomms Server Room"; + dir = 1; + network = list("tcomms") + }, +/turf/open/floor/plasteel/dark/telecomms, +/area/tcommsat/server) +"crE" = ( +/obj/machinery/camera/motion{ + c_tag = "Telecomms Satellite Exterior - Port Quarter"; + network = list("tcomms") + }, +/turf/open/space/basic, +/area/space) +"crF" = ( +/obj/machinery/camera/motion{ + c_tag = "Telecomms Satellite Exterior - Starboard Quarter"; + network = list("tcomms"); + pixel_x = 22 + }, +/turf/open/space/basic, +/area/space) +"crG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"crH" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"crI" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plating, +/area/science/mixing) +"crJ" = ( +/obj/structure/window/reinforced, +/obj/machinery/mass_driver{ + dir = 8; + id = "toxinsdriver" + }, +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/mixing) +"crK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"crL" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plating/airless, +/area/science/test_area) +"crM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/plating/airless, +/area/science/test_area) +"crN" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/atmospherics/components/unary/tank/air{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"crO" = ( +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/end, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"crP" = ( +/obj/structure/lattice, +/turf/closed/wall, +/area/hallway/secondary/entry) +"crQ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/poster/official/safety_internals{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"crR" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"crS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/airlock/external{ + name = "Escape Pod" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"crT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/poster/official/safety_internals{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"crU" = ( +/obj/effect/turf_decal/stripes/line, +/obj/item/crowbar, +/obj/structure/sign/poster/official/safety_internals{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"crV" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"crW" = ( +/obj/machinery/computer/rdconsole/robotics{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"crX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/landmark/start/medical_doctor, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"crY" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"crZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/stairs/left, +/area/hallway/primary/aft) +"csa" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/sign/warning/pods{ + pixel_x = -32; + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/entry) +"csb" = ( +/obj/structure/sign/warning/pods{ + pixel_x = 32; + pixel_y = 32 + }, +/turf/open/floor/plasteel/dark/corner{ + dir = 1 + }, +/area/hallway/secondary/entry) +"csc" = ( +/obj/structure/fans/tiny/invisible, +/obj/docking_port/stationary{ + dir = 2; + dwidth = 1; + height = 4; + name = "escape pod loader"; + roundstart_template = /datum/map_template/shuttle/escape_pod/default; + width = 3 + }, +/turf/open/space/basic, +/area/space) +"csd" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"cse" = ( +/obj/structure/table/wood, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/item/clipboard, +/obj/item/paper/monitorkey, +/obj/item/pen/fountain, +/obj/item/stamp/ce, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Engineer's Desk"; + departmentType = 5; + name = "Chief Engineer's RC"; + pixel_y = -32 + }, +/mob/living/simple_animal/parrot/Poly, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"csf" = ( +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Research Director's Desk"; + departmentType = 5; + name = "Research Director's RC"; + pixel_y = -32; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"csg" = ( +/obj/machinery/holopad, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"csh" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"csi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "chem1"; + name = "chem lab shutters" + }, +/turf/open/floor/plating, +/area/medical/chemistry) +"csj" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"csk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"csl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"csm" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"csn" = ( +/obj/machinery/computer/security{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Security RC"; + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/security/main) +"cso" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/holopad, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"csp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medical)"; + pixel_x = 28 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"csq" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Cold Loop"; + req_access_txt = "10" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"csr" = ( +/obj/structure/table, +/obj/machinery/computer/libraryconsole/bookmanagement, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_x = 30 + }, +/turf/open/floor/plasteel, +/area/bridge) +"css" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"cst" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/teg_cold) +"csu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/gateway) +"csv" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/item/storage/toolbox/mechanical, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/paper/guides/cogstation/letter_supp, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"csw" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"csx" = ( +/obj/structure/closet/secure_closet/RD, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/item/paper/fluff/cogstation/letter_rd, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"csy" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/landmark/xmastree, +/turf/open/floor/plasteel{ + dir = 1; + icon_state = "chapel" + }, +/area/chapel/main) +"csz" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"csA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Visitation" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/main) +"csB" = ( +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"csC" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating/asteroid, +/area/hydroponics/garden{ + name = "Nature Preserve" + }) +"csD" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/bridge) +"csE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hop) +"csF" = ( +/obj/structure/bed, +/obj/effect/landmark/start/research_director, +/obj/item/bedsheet/rd, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/hor) +"csG" = ( +/obj/machinery/holopad, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/lawoffice) +"csH" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/wood, +/area/library) +"csI" = ( +/obj/structure/table/wood, +/obj/machinery/light_switch{ + pixel_x = 4; + pixel_y = -24 + }, +/obj/item/flashlight/lamp/green, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -6; + pixel_y = -32 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/hor) +"csJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"csK" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/door/window/northright{ + name = "Medbay Desk"; + req_access_txt = "5" + }, +/obj/item/clipboard, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/item/paper/guides/cogstation/letter_med, +/obj/item/clothing/glasses/hud/health, +/obj/item/pen, +/obj/item/clothing/glasses/hud/health, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"csL" = ( +/obj/effect/landmark/xmastree/rdrod, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/hor) +"csM" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"csN" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/hor) +"csO" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"csP" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"csQ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering{ + name = "Engine Room" + }) +"csR" = ( +/turf/open/floor/engine, +/area/science/storage) +"csS" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"csT" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/science/circuit) +"csU" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/storage/tech) +"csV" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/button/door{ + id = "robotics"; + name = "Shutters Control Button"; + pixel_y = 8; + req_access_txt = "29"; + pixel_x = -24 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/science/robotics/lab) +"csW" = ( +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"csX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"csY" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"csZ" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cta" = ( +/obj/effect/landmark/blobstart, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine, +/area/science/xenobiology) +"ctb" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/landmark/blobstart, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/engine, +/area/science/explab) +"ctc" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"ctd" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"cte" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"ctf" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"ctg" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"cth" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"cti" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"ctj" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/science/mixing) +"ctk" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_x = 32 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"ctl" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/full, +/obj/structure/window/reinforced/spawner/north, +/turf/open/floor/plasteel, +/area/engine/workshop) +"ctm" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/disposalpipe/sorting/mail/flip{ + sortType = 2 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"ctn" = ( +/obj/structure/closet/secure_closet/engineering_chief, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 1; + locked = 0; + pixel_y = -22 + }, +/obj/item/paper/guides/cogstation/letter_chief, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"cto" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/white/full, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"ctp" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"ctq" = ( +/obj/structure/closet/crate, +/obj/effect/spawner/lootdrop/maintenance, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"ctr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating, +/area/quartermaster/office) +"cts" = ( +/obj/structure/rack, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = -29 + }, +/turf/open/floor/plasteel/white, +/area/gateway) +"ctt" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"ctu" = ( +/obj/structure/table, +/obj/effect/turf_decal/bot, +/obj/machinery/camera{ + c_tag = "Supply - Cargo Office"; + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/item/storage/box/disks, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"ctv" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"ctw" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"ctx" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"cty" = ( +/obj/effect/landmark/start/shaft_miner, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"ctz" = ( +/obj/structure/table, +/obj/item/stamp/qm, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/coin/silver{ + pixel_x = -12 + }, +/obj/item/key{ + pixel_x = 8; + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"ctA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Cargo Bay"; + req_one_access_txt = "31;48" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"ctB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"ctC" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"ctD" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/medical/virology) +"ctE" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/modular_computer/console/preset/engineering, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/window/reinforced/spawner/north, +/turf/open/floor/plasteel, +/area/engine/workshop) +"ctF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/medical/virology) +"ctG" = ( +/turf/closed/wall, +/area/engine/workshop) +"ctH" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"ctI" = ( +/obj/structure/table/reinforced, +/obj/item/paper_bin, +/obj/item/pen, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/engine, +/area/science/explab) +"ctJ" = ( +/obj/structure/plasticflaps, +/turf/open/floor/plating, +/area/engine/workshop) +"ctK" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + id = "workshop_off" + }, +/turf/open/floor/plating, +/area/engine/workshop) +"ctL" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Xenobiology - Pen 5"; + dir = 4 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"ctM" = ( +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/obj/machinery/camera{ + c_tag = "Xenobiology - Pen 6"; + dir = 8; + pixel_y = -22 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"ctN" = ( +/obj/machinery/light/small{ + dir = 4; + light_color = "#d8b1b1" + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"ctO" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"ctP" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"ctQ" = ( +/obj/structure/grille, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"ctR" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ctS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/sign/warning/biohazard{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"ctT" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#c1caff" + }, +/obj/machinery/camera{ + c_tag = "Xenobiology - Aft"; + network = list("ss13","rd") + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ctU" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 10 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"ctV" = ( +/obj/structure/chair{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/hallway/secondary/exit"; + name = "Escape Shuttle Hallway APC"; + pixel_y = -28 + }, +/turf/open/floor/plasteel/white/corner, +/area/hallway/secondary/exit) +"ctW" = ( +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"ctX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel, +/area/engine/workshop) +"ctY" = ( +/obj/structure/sign/departments/xenobio{ + pixel_x = -32; + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"ctZ" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cua" = ( +/obj/structure/chair/comfy/black{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cub" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cuc" = ( +/obj/machinery/door/airlock/virology/glass{ + name = "Monkey Pen"; + req_access_txt = "39" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cud" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/camera{ + c_tag = "Xenobiology - Aft Access"; + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cue" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "8;55" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cuf" = ( +/obj/machinery/light, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cug" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cuh" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cui" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cuj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cuk" = ( +/obj/structure/chair/comfy/black{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cul" = ( +/obj/structure/chair/comfy/black, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cum" = ( +/obj/structure/rack, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/storage/firstaid/regular{ + empty = 1; + name = "First-Aid (empty)" + }, +/obj/item/healthanalyzer{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/healthanalyzer{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/healthanalyzer{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/item/assembly/prox_sensor, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cun" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/snacks/meat/steak, +/obj/machinery/camera{ + c_tag = "Xenobiology - Test Chamber"; + dir = 1 + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cuo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"cup" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cuq" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cur" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cus" = ( +/obj/machinery/light/small, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cut" = ( +/obj/docking_port/stationary{ + dir = 2; + dwidth = 7; + height = 9; + id = "whiteship_home"; + name = "SS13: Merchant Dock"; + width = 13 + }, +/turf/open/space/basic, +/area/space) +"cuu" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cuv" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cuw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/kirbyplants/photosynthetic, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cux" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"cuy" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/space/basic, +/area/space/nearstation) +"cuz" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cuA" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cuB" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cuC" = ( +/obj/structure/lattice/catwalk, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cuD" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/space/basic, +/area/space/nearstation) +"cuE" = ( +/obj/structure/lattice, +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES"; + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/space/basic, +/area/space/nearstation) +"cuF" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cuG" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/space/basic, +/area/space/nearstation) +"cuH" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cuI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/screwdriver, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cuJ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/screwdriver, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cuK" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/closet/secure_closet/engineering_welding, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/engine/workshop"; + dir = 1; + name = "Engineering Workshop APC"; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cuL" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cuM" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/chair{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cuN" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/turf/closed/wall, +/area/engine/workshop) +"cuO" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/storage/primary) +"cuP" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/start/atmospheric_technician, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cuQ" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/gateway) +"cuR" = ( +/turf/closed/wall, +/area/router/air) +"cuS" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/mass_driver{ + dir = 1; + id = "workshop_out"; + name = "Router Driver" + }, +/turf/open/floor/plating, +/area/engine/workshop) +"cuT" = ( +/obj/structure/window/reinforced/spawner/west, +/obj/machinery/conveyor{ + id = "workshop_off" + }, +/turf/open/floor/plating, +/area/engine/workshop) +"cuU" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/sign/poster/official/build{ + pixel_x = -32 + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cuV" = ( +/turf/open/floor/plasteel, +/area/engine/workshop) +"cuW" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cuX" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay"; + req_access_txt = "5" + }, +/obj/effect/mapping_helpers/airlock/unres, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cuY" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"cuZ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/science/robotics/lab) +"cva" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cvb" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cvc" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cvd" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cve" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/hor) +"cvf" = ( +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cvg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cvh" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/computer/rdconsole/production{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cvi" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/floor/plating, +/area/engine/workshop) +"cvj" = ( +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/obj/machinery/conveyor{ + id = "DeliveryConveyer" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"cvk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/conveyor{ + dir = 1; + id = "DeliveryConveyer" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"cvl" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/router/air) +"cvm" = ( +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/central"; + dir = 1; + name = "Airbridge Router APC"; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/router/air) +"cvn" = ( +/obj/structure/table, +/obj/item/destTagger, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/router/air) +"cvo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cvp" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/computer/cargo/request, +/obj/machinery/camera{ + c_tag = "Airbridge Router"; + pixel_x = 22 + }, +/obj/machinery/requests_console{ + department = "Airbridge Router"; + name = "Airbridge Router RC"; + pixel_y = 28 + }, +/turf/open/floor/plasteel, +/area/router/air) +"cvq" = ( +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/conveyor{ + dir = 1; + id = "workshop_off" + }, +/turf/open/floor/plating, +/area/engine/workshop) +"cvr" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/workshop) +"cvs" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/medical/virology) +"cvt" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 10 + }, +/area/science/robotics/lab) +"cvu" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cvv" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/requests_console{ + department = "Genetics"; + name = "Genetics RC"; + pixel_x = 30 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cvw" = ( +/obj/structure/closet, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/item/wrench/medical, +/obj/item/screwdriver, +/obj/item/stock_parts/cell/high/plus, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medical)"; + pixel_y = -30 + }, +/turf/open/floor/plasteel/cafeteria, +/area/medical/medbay/central) +"cvx" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/storage/toolbox/emergency, +/obj/item/hypospray/mkii/tricord, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medical)"; + pixel_y = -30 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"cvy" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cvz" = ( +/obj/machinery/atmospherics/components/trinary/mixer{ + dir = 4; + node1_concentration = 0.8; + node2_concentration = 0.2; + on = 1; + target_pressure = 4500 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cvA" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/warning/securearea{ + pixel_x = -32; + pixel_y = -32 + }, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cvB" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/obj/machinery/porta_turret/ai{ + dir = 1; + req_access = list(16) + }, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"cvC" = ( +/obj/machinery/computer/nanite_cloud_controller, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/structure/window/reinforced/spawner, +/turf/open/floor/plasteel/dark, +/area/science/server{ + name = "Computer Core" + }) +"cvD" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/rnd/server, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"cvE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/door/poddoor{ + id = "RDServer"; + name = "RD Server Lockup" + }, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"cvF" = ( +/obj/item/caution, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"cvG" = ( +/obj/machinery/door/airlock/research/glass{ + name = "Xenobiology Lab Access"; + req_access_txt = "55" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cvH" = ( +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research{ + name = "Toxins Mixing Lab"; + req_access_txt = "7;8" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor/heavy, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cvI" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/computer/telecomms/server{ + dir = 1; + network = "tcommsat" + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cvJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"cvK" = ( +/obj/structure/chair/sofa/right, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/bridge) +"cvL" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cvM" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/gateway) +"cvN" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cvO" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/valve{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cvP" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/camera{ + c_tag = "Custodial Closet"; + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/janitor) +"cvQ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/science/robotics/lab) +"cvR" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + sortType = 23 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cvS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/holopad, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"cvT" = ( +/obj/structure/extinguisher_cabinet, +/turf/closed/wall, +/area/medical/medbay/central) +"cvU" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/reagent_dispensers/virusfood{ + pixel_x = -32 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 32 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cvV" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cvW" = ( +/obj/structure/chair/comfy/black, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cvX" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "8;55" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cvY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research/glass{ + name = "Xenobiology Lab Access"; + req_access_txt = "55" + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cvZ" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/clipboard, +/obj/item/stamp/denied{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/stamp, +/obj/machinery/door/window/southright{ + name = "Customs Desk"; + req_access_txt = "57" + }, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "HoPAft"; + name = "HoP Aft Desk Shutters" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"cwa" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/item/flashlight/lamp, +/obj/structure/window/reinforced/spawner, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "HoPAft"; + name = "HoP Aft Desk Shutters" + }, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"cwb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research{ + name = "Mech Bay"; + req_access_txt = "29" + }, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"cwc" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/button/door{ + id = "cargoblock"; + name = "Router Access Control"; + pixel_x = -24; + pixel_y = 24; + req_access_txt = "31" + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"cwd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/obj/machinery/holopad, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"cwe" = ( +/obj/structure/closet/secure_closet/exile, +/turf/open/floor/plasteel/white, +/area/gateway) +"cwf" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cwg" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cwh" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/item/stack/sheet/mineral/plasma, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cwi" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cwj" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/medical/virology) +"cwk" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/lounge) +"cwl" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/item/book/manual/wiki/infections, +/obj/item/folder/white, +/obj/machinery/requests_console{ + department = "Virology"; + name = "Virology RC"; + pixel_x = -32 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cwm" = ( +/obj/machinery/atmospherics/components/binary/valve, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cwn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cwo" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/table, +/obj/machinery/microwave, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cwp" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/medical/virology) +"cwq" = ( +/obj/machinery/door/airlock/engineering{ + name = "Hot Loop"; + req_one_access_txt = "10;24" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"cwr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cws" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = -24 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cwt" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"cwu" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cwv" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/structure/sign/warning/vacuum/external, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cww" = ( +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cwx" = ( +/obj/machinery/disposal/bin, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/white/full, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cwy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/transit_tube/horizontal, +/turf/open/floor/plating, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"cwz" = ( +/obj/structure/transit_tube/curved{ + dir = 8 + }, +/turf/open/space/basic, +/area/space) +"cwA" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"cwB" = ( +/turf/open/floor/plasteel, +/area/engine/atmos) +"cwC" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"cwD" = ( +/obj/structure/transit_tube/diagonal/topleft, +/turf/open/space/basic, +/area/space) +"cwE" = ( +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cwF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cwG" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/effect/landmark/event_spawn, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cwH" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall, +/area/crew_quarters/toilet/restrooms) +"cwI" = ( +/obj/structure/transit_tube/horizontal, +/turf/open/space/basic, +/area/space) +"cwJ" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/horizontal, +/turf/open/space/basic, +/area/space/nearstation) +"cwK" = ( +/obj/structure/transit_tube/crossing/horizontal, +/turf/open/space/basic, +/area/space) +"cwL" = ( +/obj/structure/transit_tube/horizontal, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/engine/atmos) +"cwM" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/structure/transit_tube/station/reverse/flipped, +/obj/structure/transit_tube_pod{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cwN" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"cwO" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cwP" = ( +/obj/structure/bed, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/landmark/start/chief_engineer, +/obj/item/bedsheet/ce, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/crew_quarters/heads/chief"; + dir = 4; + name = "Chief Engineer's Office APC"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/heads/chief) +"cwQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/storage/primary) +"cwR" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"cwS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Warehouse"; + req_access_txt = "11" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"cwT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/medical/virology) +"cwU" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/mineral/titanium/blue, +/area/hallway/primary/central) +"cwV" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"cwW" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cwX" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/machinery/door/airlock/public/glass, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cwY" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/air_sensor/atmos/toxins_mixing_tank, +/turf/open/floor/engine/vacuum, +/area/science/mixing) +"cwZ" = ( +/obj/structure/table, +/obj/item/storage/box/beanbag, +/obj/item/gun/ballistic/revolver/doublebarrel, +/obj/item/storage/hypospraykit/toxin, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/bar) +"cxa" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 6 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cxb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cxc" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cxd" = ( +/obj/machinery/computer/monitor, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"cxe" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cxf" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cxg" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cxh" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cxi" = ( +/obj/structure/rack, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/item/extinguisher, +/obj/item/extinguisher, +/obj/item/extinguisher, +/obj/item/extinguisher, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Engineering - Primary Tool Storage"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"cxj" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/reagent_dispensers/foamtank, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"cxk" = ( +/obj/structure/tank_dispenser, +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"cxl" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/closed/wall, +/area/storage/primary) +"cxm" = ( +/obj/structure/closet, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"cxn" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/item/t_scanner{ + pixel_x = -4 + }, +/obj/item/pipe, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "platingdmg2" + }, +/area/quartermaster/warehouse) +"cxo" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/machinery/light/small, +/obj/machinery/camera{ + c_tag = "Supply - Warehouse Aft"; + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cxp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/mob/living/simple_animal/bot/floorbot, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cxq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cxr" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cxs" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -23 + }, +/obj/item/storage/toolbox/electrical, +/obj/item/hand_labeler, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"cxt" = ( +/obj/effect/landmark/start/cargo_technician, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"cxu" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/storage) +"cxv" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cxw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cxx" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining/glass{ + name = "Warehouse"; + req_one_access_txt = "10;31" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cxy" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/stairs, +/area/quartermaster/storage) +"cxz" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cxA" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/mining{ + name = "Mining Office"; + req_access_txt = "48" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cxB" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Cargo Office" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cxC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cxD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cxE" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cxF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cxG" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cxH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cxI" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cxJ" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cxK" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cxL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cxM" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cxN" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cxO" = ( +/obj/structure/table, +/obj/item/storage/firstaid/regular, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cxP" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cxQ" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cxR" = ( +/obj/effect/landmark/start/shaft_miner, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cxS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cxT" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/item/paper/guides/cogstation/letter_supp, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cxU" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cxV" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cxW" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Starboard Quarter Maintenance"; + req_one_access_txt = "12;48" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/quartermaster/office) +"cxX" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cxY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cxZ" = ( +/obj/effect/turf_decal/delivery, +/obj/machinery/button/door{ + id = "MiningConveyorBlastDoor"; + name = "Mining Conveyor Access"; + pixel_x = 8; + pixel_y = -24; + req_one_access_txt = "10;24;48" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cya" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cyb" = ( +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cyc" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/door/airlock/external/glass{ + name = "Mining Dock"; + req_one_access_txt = "10;24;48" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cyd" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"cye" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cyf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cyg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cyh" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Mining Office Maintenance"; + req_one_access_txt = "10;24;48" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/miningoffice) +"cyi" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cyj" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cyk" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cyl" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cym" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cyn" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cyo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Aft Maintenance"; + req_access_txt = "12" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"cyp" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cyq" = ( +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/machinery/power/apc{ + dir = 4; + name = "Restrooms APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"cyr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cys" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cyt" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/power/apc{ + areastring = "/area/science/robotics/lab"; + dir = 8; + name = "Robotics Lab APC"; + pixel_x = -25 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cyu" = ( +/obj/structure/closet/wardrobe/chemistry_white{ + anchored = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cyv" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cyw" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/sign/poster/official/cleanliness{ + pixel_x = 32 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"cyx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cyy" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Medbay Lobby" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white/side, +/area/medical/medbay/lobby) +"cyz" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cyA" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cyB" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/official/medical_green_cross{ + pixel_y = 32 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cyC" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cyD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Departures" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cyE" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cyF" = ( +/obj/structure/closet/secure_closet/chemical, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"cyG" = ( +/obj/machinery/chem_master, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"cyH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cyI" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cyJ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit) +"cyK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cyL" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cyM" = ( +/obj/structure/closet/secure_closet/personal/patient, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cyN" = ( +/obj/machinery/chem_dispenser/apothecary, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"cyO" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyR" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyS" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyT" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyU" = ( +/obj/machinery/camera{ + c_tag = "Aft Maintenance - Central Starboard"; + dir = 8; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cyV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit) +"cyW" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cyX" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cyY" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit) +"cyZ" = ( +/obj/machinery/computer/arcade, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit) +"cza" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit) +"czb" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/item/paicard, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/hallway/secondary/exit) +"czc" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/cafeteria, +/area/hallway/secondary/exit) +"czd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cze" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"czf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 4 + }, +/area/gateway) +"czg" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/mob/living/simple_animal/hostile/retaliate/bat, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"czh" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"czi" = ( +/obj/structure/bed, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/effect/landmark/start/chief_medical_officer, +/obj/item/bedsheet/cmo, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"czj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czk" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"czl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Aft Maintenance"; + req_access_txt = "12" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/secondary/exit) +"czm" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"czn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"czo" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"czp" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"czq" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/coffee, +/obj/item/pen/blue, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"czr" = ( +/obj/structure/table/glass, +/obj/item/storage/toolbox/emergency, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"czs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"czt" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"czu" = ( +/obj/machinery/suit_storage_unit/cmo, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"czv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"czw" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"czx" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"czy" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"czz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Gateway Chamber"; + req_access_txt = "62" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/engine, +/area/gateway) +"czA" = ( +/obj/machinery/modular_computer/console/preset/research{ + dir = 8 + }, +/obj/item/reagent_containers/food/drinks/coffee, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"czB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"czC" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"czD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"czE" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"czF" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"czG" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"czH" = ( +/obj/machinery/button/door{ + id = "robotics2"; + name = "Shutters Control Button"; + pixel_x = 24; + pixel_y = -24; + req_access_txt = "29" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"czI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"czJ" = ( +/obj/item/beacon, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"czK" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"czL" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"czM" = ( +/obj/machinery/requests_console{ + department = "Chemistry"; + departmentType = 2; + name = "Chemistry RC"; + pixel_x = 30; + receive_ore_updates = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/chemistry) +"czN" = ( +/obj/structure/closet/crate/trashcart, +/obj/structure/sign/departments/custodian{ + pixel_x = 32 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/department/chapel) +"czO" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Waste Disposal"; + req_one_access_txt = "12;50" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"czP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"czQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"czR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/sorting/mail, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/maintenance/department/chapel) +"czS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock{ + name = "Custodial Closet"; + req_access_txt = "26" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/janitor) +"czT" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/janitor) +"czU" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/janitor) +"czV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"czW" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/chair/office/light{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"czX" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall/rust, +/area/maintenance/disposal) +"czY" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/janitor) +"czZ" = ( +/obj/effect/landmark/start/janitor, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/janitor) +"cAa" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/structure/chair/sofa/right, +/obj/item/reagent_containers/food/drinks/bottle/vermouth/empty, +/obj/item/reagent_containers/food/snacks/grown/cannabis{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"cAb" = ( +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/structure/chair/sofa/left, +/obj/item/storage/box/hug/medical, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"cAc" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/effect/spawner/structure/window, +/turf/open/floor/plating, +/area/medical/medbay/central) +"cAd" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cAe" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/janitor) +"cAf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/janitor) +"cAg" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/janitor) +"cAh" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance_hatch{ + name = "Custodial Closet"; + req_access_txt = "12;26" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/janitor) +"cAi" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"cAj" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"cAk" = ( +/obj/effect/turf_decal/stripes/line, +/obj/item/reagent_containers/pill/floorpill, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/glass, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"cAl" = ( +/obj/effect/turf_decal/stripes/line, +/obj/item/stack/tile/plasteel{ + pixel_x = 10; + pixel_y = 4 + }, +/obj/item/camera, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/glass{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"cAm" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cAn" = ( +/obj/structure/disposalpipe/junction/flip, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cAo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cAp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cAq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"cAr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/maintenance/disposal) +"cAs" = ( +/obj/structure/mopbucket, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/janitor) +"cAt" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/window/southleft{ + name = "Cloning Access"; + req_one_access_txt = "9;45" + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cAu" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cAv" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/stairs, +/area/medical/medbay/central) +"cAw" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/item/soap, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/grenade/chem_grenade/cleaner, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = 4; + pixel_y = -1 + }, +/obj/structure/disposalpipe/segment, +/obj/item/reagent_containers/spray/cleaner{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/machinery/requests_console{ + department = "Custodial Closet"; + name = "Custodial RC"; + pixel_x = -32 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/janitor) +"cAx" = ( +/obj/structure/chair{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/landmark/start/janitor, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/janitor) +"cAy" = ( +/obj/item/cigbutt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cAz" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/grille/broken, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cAA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/closed/wall, +/area/storage/primary) +"cAB" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cAC" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cAD" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation Room A"; + req_access_txt = "39" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cAE" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/item/caution, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cAF" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + name = "Detective's Office"; + req_access_txt = "4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"cAG" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/start/virologist, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cAH" = ( +/obj/structure/table, +/obj/item/storage/box/beakers, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cAI" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cAJ" = ( +/obj/structure/table/wood, +/obj/item/storage/book/bible/booze, +/obj/item/beacon{ + pixel_y = -8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/office) +"cAK" = ( +/obj/machinery/computer/med_data, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cAL" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/security{ + name = "Detective's Office"; + req_access_txt = "4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/security/detectives_office) +"cAM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"cAN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"cAO" = ( +/obj/effect/landmark/start/detective, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"cAP" = ( +/obj/structure/table/wood, +/obj/item/storage/fancy/cigarettes, +/obj/item/lighter{ + pixel_x = -4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/newscaster/security_unit{ + pixel_y = -30 + }, +/obj/machinery/camera{ + c_tag = "Detective's Office"; + dir = 1 + }, +/obj/item/reagent_containers/food/drinks/bottle/hcider{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"cAQ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"cAR" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/office) +"cAS" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/gateway) +"cAT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/hallway/primary/aft) +"cAU" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"cAV" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cAW" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cAX" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cAY" = ( +/obj/machinery/door/airlock{ + name = "Catering"; + req_one_access_txt = "25;28" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/bar) +"cAZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cBa" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cBb" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/main) +"cBc" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cBd" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"cBe" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cBf" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cBg" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/neutral, +/obj/effect/landmark/start/assistant, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cBh" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cBi" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cBj" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cBk" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/start/station_engineer, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"cBl" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Power Monitoring"; + req_access_txt = "10" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/engine_smes{ + name = "Power Monitoring" + }) +"cBm" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/rnd/production/techfab/department/engineering, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cBn" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cBo" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cBp" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cBq" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"cBr" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"cBs" = ( +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 1 + }, +/turf/closed/wall/r_wall, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"cBt" = ( +/obj/structure/closet/l3closet/scientist, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"cBu" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/sign/departments/security{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cBv" = ( +/obj/structure/table/glass, +/obj/effect/turf_decal/tile/neutral, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cBw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Central Maintenance"; + req_one_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/hallway/primary/port/fore) +"cBx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cBy" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cBz" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/effect/turf_decal/tile/brown, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel, +/area/quartermaster/qm) +"cBA" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/sign/warning/vacuum/external{ + pixel_y = 32 + }, +/obj/machinery/camera{ + c_tag = "Aft Hall - Fore"; + pixel_x = 22 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cBB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/workshop) +"cBC" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/maintenance/aft/secondary{ + name = "Aft Air Hookup" + }) +"cBD" = ( +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cBE" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cBF" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/central) +"cBG" = ( +/obj/machinery/light, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cBH" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cBI" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/machinery/recharger, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cBJ" = ( +/obj/effect/turf_decal/tile/yellow, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/structure/table/wood, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/machinery/power/apc{ + name = "Engineering Foyer APC"; + pixel_y = -24 + }, +/obj/item/storage/firstaid/regular, +/obj/structure/cable, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cBK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cBL" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cBM" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"cBN" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"cBO" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"cBP" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"cBQ" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"cBR" = ( +/obj/structure/window/reinforced, +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"cBS" = ( +/obj/effect/turf_decal/tile/bar, +/obj/effect/turf_decal/tile/bar{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, +/turf/open/floor/plasteel, +/area/crew_quarters/bar) +"cBT" = ( +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cBU" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/stairs, +/area/crew_quarters/bar) +"cBV" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/carpet/green, +/area/crew_quarters/bar) +"cBW" = ( +/obj/structure/sign/plaques/golden{ + pixel_y = -32 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/crew_quarters/bar) +"cBX" = ( +/obj/structure/chair/stool/bar, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/carpet/green, +/area/crew_quarters/bar) +"cBY" = ( +/obj/machinery/newscaster{ + pixel_y = -28 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/carpet/green, +/area/crew_quarters/bar) +"cBZ" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cCa" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cCb" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/sign/departments/security{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cCc" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cCd" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/sleeper{ + dir = 8 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/white, +/area/medical{ + name = "Medical Booth" + }) +"cCe" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cCf" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Central Maintenance - Fore"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/central) +"cCg" = ( +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cCh" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cCi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Monkey Pen"; + req_access_txt = "39" + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cCj" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cCk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cCl" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/turf/open/floor/plating, +/area/medical/virology) +"cCm" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cCn" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port/fore) +"cCo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cCp" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/port/fore) +"cCq" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark/side{ + dir = 8 + }, +/area/hallway/primary/central) +"cCr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cCs" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/office) +"cCt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Chapel Confessions"; + dir = 8; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 8; + pixel_x = 23 + }, +/turf/open/floor/plasteel/dark, +/area/chapel/main) +"cCu" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/medical/virology) +"cCv" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cCw" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/medical/virology) +"cCx" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/virologist, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cCy" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/item/caution, +/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cCz" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Isolation Room B"; + req_access_txt = "39" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cCA" = ( +/obj/machinery/computer/security/wooden_tv, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/grimy, +/area/security/detectives_office) +"cCB" = ( +/obj/machinery/light, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/office) +"cCC" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/chapel/main) +"cCD" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cCE" = ( +/obj/machinery/portable_atmospherics/canister/water_vapor, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/flip, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/janitor) +"cCF" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "recycler"; + name = "Recycler Conveyor Control" + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plating, +/area/maintenance/disposal) +"cCG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cCH" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cCI" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cCJ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/wood, +/area/library) +"cCK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/public/glass{ + name = "Library Access" + }, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/library) +"cCL" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cCM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/disposalpipe/junction, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=bridge1"; + location = "router" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cCN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/stairs/left, +/area/hallway/primary/central) +"cCO" = ( +/obj/structure/table, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/obj/item/hand_labeler, +/obj/item/reagent_containers/glass/bottle/formaldehyde, +/obj/item/paper/guides/jobs/medical/morgue, +/obj/item/paper/guides/cogstation/cdn_med{ + pixel_x = -6; + pixel_y = 1 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"cCP" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/effect/landmark/start/depsec/engineering, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/security/brig) +"cCQ" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/light, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cCR" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cCS" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cCT" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel/stairs/medium, +/area/hallway/primary/aft) +"cCU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cCV" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plating, +/area/maintenance/department/security) +"cCW" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"cCX" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/grimy, +/area/crew_quarters/heads/hos) +"cCY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cCZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cDa" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cDb" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/item/storage/toolbox/mechanical, +/obj/item/clothing/glasses/science, +/obj/item/pen, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cDc" = ( +/obj/structure/table, +/obj/machinery/light, +/obj/structure/bedsheetbin, +/obj/item/clothing/glasses/hud/health, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cDd" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cDe" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cDf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/medical/virology) +"cDg" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + id = "DeliveryConveyer" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"cDh" = ( +/obj/machinery/computer/card/minor/cmo{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/keycard_auth{ + pixel_x = -24 + }, +/obj/item/paper/guides/cogstation/letter_cmo, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"cDi" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/closet/crate/solarpanel_small, +/obj/machinery/airalarm{ + dir = 1; + locked = 0; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/storage/primary) +"cDj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/hor) +"cDk" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/maintenance{ + name = "Security Maintenance"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/hallway/primary/port/fore) +"cDl" = ( +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cDm" = ( +/obj/structure/plasticflaps, +/obj/structure/disposalpipe/segment, +/obj/machinery/conveyor{ + dir = 1; + id = "DeliveryConveyer" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"cDn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/router/air) +"cDo" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/router/air) +"cDp" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/courtroom) +"cDq" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/courtroom) +"cDr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/security/courtroom) +"cDs" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/sign/warning/securearea{ + pixel_x = -32 + }, +/obj/item/kirbyplants{ + icon_state = "applebush" + }, +/obj/machinery/airalarm{ + dir = 1; + pixel_y = -22 + }, +/turf/open/floor/plasteel/dark/side, +/area/bridge) +"cDt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Captain's Quarters"; + req_access_txt = "20" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/captain) +"cDu" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall/r_wall, +/area/crew_quarters/heads/captain) +"cDv" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"cDw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/captain) +"cDx" = ( +/obj/machinery/light_switch{ + pixel_x = -4; + pixel_y = 24 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 6; + pixel_y = 32 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet/blue, +/area/crew_quarters/heads/captain) +"cDy" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/turf/open/floor/plating, +/area/crew_quarters/heads/hor) +"cDz" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/security/checkpoint/supply) +"cDA" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/computer/secure_data{ + dir = 8 + }, +/obj/machinery/newscaster/security_unit{ + pixel_x = 30 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cDB" = ( +/obj/item/storage/secure/safe{ + pixel_x = -24 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/dresser, +/obj/item/storage/lockbox/medal, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/captain) +"cDC" = ( +/obj/structure/chair/office/dark{ + dir = 4 + }, +/obj/effect/landmark/start/captain, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/captain) +"cDD" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/computer/security{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/security/checkpoint/supply"; + dir = 4; + name = "Cargo Security Checkpoint APC"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cDE" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"cDF" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"cDG" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"cDH" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cDI" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cDJ" = ( +/obj/machinery/computer/crew, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"cDK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "Gateway Chamber"; + req_access_txt = "62" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/engine, +/area/gateway) +"cDL" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Apothecary"; + dir = 8; + network = list("ss13","medbay"); + pixel_y = -22 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cDM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/table/glass, +/obj/item/book/manual/wiki/chemistry, +/obj/item/book/manual/wiki/chemistry{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/clothing/glasses/science, +/obj/item/clothing/glasses/science{ + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"cDN" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/engine, +/area/gateway) +"cDO" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cDP" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cDQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cDR" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cDS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/hor) +"cDT" = ( +/obj/structure/table, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/item/stack/cable_coil/red, +/obj/item/stack/cable_coil/red{ + pixel_x = 3 + }, +/turf/open/floor/plasteel, +/area/gateway) +"cDU" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/hor) +"cDV" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/command{ + name = "Gateway Atrium"; + req_access_txt = "62" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/gateway) +"cDW" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/hor) +"cDX" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cDY" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = -29 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/crew_quarters/heads/hor) +"cDZ" = ( +/obj/structure/table, +/obj/machinery/computer/med_data/laptop, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Chief Medical Officer's Desk"; + departmentType = 5; + name = "Chief Medical Officer RC"; + pixel_y = 32 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"cEa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"cEb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command{ + name = "Research Director's Office"; + req_access_txt = "30" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/crew_quarters/heads/hor) +"cEc" = ( +/obj/effect/turf_decal/bot, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/navbeacon{ + codes_txt = "delivery;dir=1"; + dir = 1; + freq = 1400; + location = "Bridge" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEe" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEf" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEg" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEj" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEk" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research/glass{ + name = "Research Sector"; + req_one_access_txt = "29;47" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEl" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEm" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEn" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research/glass{ + name = "Research Sector"; + req_one_access_txt = "29;47" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEo" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cEp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cEq" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cEr" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cEs" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEt" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEv" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research/glass{ + name = "Research Sector"; + req_one_access_txt = "29;47" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cEx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEy" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cEz" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cEA" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/sorting/mail/flip{ + dir = 1; + sortType = 24 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cEC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cED" = ( +/obj/structure/chair/stool, +/obj/effect/landmark/start/scientist, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cEE" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/maintenance/aft"; + dir = 8; + name = "Aft Maintenance APC"; + pixel_x = -26 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cEF" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cEG" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cEH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cEI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cEJ" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEK" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/lab) +"cEL" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/lab) +"cEM" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEN" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cEO" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/door/airlock/research{ + name = "Robotics Lab"; + req_access_txt = "29" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"cEP" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side, +/area/science/robotics/lab) +"cEQ" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cER" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Locker Room"; + req_access_txt = "5" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cES" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cET" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cEU" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Locker Room"; + req_access_txt = "5" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cEV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cEW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/landmark/start/paramedic, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cEX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cEY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cEZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFd" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFe" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFf" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFg" = ( +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cFh" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFi" = ( +/obj/effect/landmark/start/paramedic, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFj" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFk" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFl" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"cFm" = ( +/obj/structure/closet/crate/freezer/blood, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"cFn" = ( +/obj/structure/closet/l3closet, +/obj/structure/disposalpipe/segment, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFo" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFp" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"cFq" = ( +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"cFr" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFs" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/noticeboard{ + pixel_y = 28 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/item/paper/guides/cogstation/letter_med, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFt" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/camera{ + c_tag = "Medbay - Port"; + dir = 4 + }, +/obj/machinery/power/apc{ + areastring = "/area/medical/medbay/central"; + dir = 8; + name = "Medbay APC"; + pixel_x = -24 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFv" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFw" = ( +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/door/window/westright{ + name = "Treatment Center"; + req_access_txt = "5" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"cFx" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"cFy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"cFz" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/item/clothing/gloves/color/latex, +/obj/item/clothing/suit/apron/surgical, +/obj/item/clothing/mask/surgical, +/obj/item/healthanalyzer, +/obj/item/clothing/neck/stethoscope, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"cFA" = ( +/obj/structure/table, +/obj/item/storage/box/beakers{ + pixel_x = 5 + }, +/obj/item/storage/box/syringes{ + pixel_x = -4 + }, +/obj/item/reagent_containers/dropper, +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cFB" = ( +/obj/machinery/vending/snack/teal, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/cafeteria, +/area/medical/medbay/central) +"cFC" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/medical/medbay/central) +"cFD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/start/paramedic, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFF" = ( +/obj/effect/landmark/start/paramedic, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/cafeteria, +/area/medical/medbay/central) +"cFG" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/cafeteria, +/area/medical/medbay/central) +"cFH" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Medbay Break Room"; + req_access_txt = "5" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFI" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFJ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFK" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/carpet/blue, +/area/medical/medbay/central) +"cFL" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/medical/medbay/central) +"cFM" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/cafeteria, +/area/medical/medbay/central) +"cFN" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/cafeteria, +/area/medical/medbay/central) +"cFO" = ( +/obj/structure/closet/crate/medical, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFP" = ( +/obj/structure/table/wood, +/obj/item/modular_computer/laptop/preset/civilian, +/obj/item/reagent_containers/pill/patch/styptic, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/carpet/blue, +/area/medical/medbay/central) +"cFQ" = ( +/obj/structure/chair/office/light{ + dir = 8 + }, +/obj/effect/landmark/start/medical_doctor, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/carpet/blue, +/area/medical/medbay/central) +"cFR" = ( +/obj/structure/closet/crate/medical, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cFT" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/virology/glass{ + name = "Virology Exterior Airlock"; + req_access_txt = "39" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFU" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cFV" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/storage/belt/utility, +/obj/item/multitool{ + pixel_x = 3 + }, +/obj/item/multitool{ + pixel_x = 3 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = -1 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/storage/toolbox/electrical{ + pixel_x = -1; + pixel_y = 4 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/item/clothing/head/welding{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cFW" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/door/poddoor/shutters/preopen{ + id = "robotics2"; + name = "robotics lab shutters" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating, +/area/science/robotics/lab) +"cFX" = ( +/obj/machinery/chem_heater, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = 26 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"cFY" = ( +/turf/open/floor/plasteel, +/area/router/air) +"cFZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#cee5d2" + }, +/obj/machinery/button/massdriver{ + id = "airbridge_out"; + pixel_x = -8; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/router/air) +"cGa" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "airbridge_off" + }, +/turf/open/floor/plating, +/area/router/air) +"cGb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "MedSci Router"; + req_access_txt = "5" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cGc" = ( +/obj/effect/turf_decal/tile/blue, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cGd" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera{ + c_tag = "Medbay Locker Room"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cGe" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light, +/obj/item/reagent_containers/blood/OMinus{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/reagent_containers/food/drinks/coffee{ + pixel_x = 6 + }, +/obj/item/storage/box/masks{ + pixel_x = -4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medical)"; + pixel_y = -30 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cGf" = ( +/obj/structure/window/reinforced/spawner, +/obj/machinery/conveyor{ + dir = 4; + id = "airbridge_off" + }, +/turf/open/floor/plating, +/area/router/air) +"cGg" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner, +/obj/machinery/conveyor{ + dir = 4; + id = "airbridge_off" + }, +/turf/open/floor/plating, +/area/router/air) +"cGh" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/window/reinforced/spawner, +/obj/machinery/mass_driver{ + dir = 4; + id = "airbridge_in"; + name = "Router Driver" + }, +/turf/open/floor/plating, +/area/router/air) +"cGi" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cGj" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cGk" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cGl" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cGm" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cGn" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = -29 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cGo" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/stairs, +/area/science/research{ + name = "Research Sector" + }) +"cGp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cGq" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cGr" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/research/glass{ + name = "Xenobiology Lab Access"; + req_access_txt = "55" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cGs" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cGt" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cGu" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/science/research{ + name = "Research Sector" + }) +"cGv" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cGw" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Xenobiology Lab"; + req_access_txt = "8;55" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cGx" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/research{ + name = "Experimentation Lab"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cGy" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cGz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cGA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cGB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cGC" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cGD" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cGE" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cGF" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/engine, +/area/science/storage) +"cGG" = ( +/obj/machinery/power/apc{ + areastring = "/area/science/storage"; + dir = 4; + name = "Toxins Storage APC"; + pixel_x = 24 + }, +/obj/structure/cable, +/turf/open/floor/engine, +/area/science/storage) +"cGH" = ( +/obj/machinery/camera{ + c_tag = "Toxins Lab - Storage"; + dir = 1 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/pump, +/turf/open/floor/engine, +/area/science/storage) +"cGI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/chair/office/light, +/obj/effect/landmark/start/chemist, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"cGJ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/turf/open/floor/engine, +/area/science/storage) +"cGK" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine, +/area/science/storage) +"cGL" = ( +/obj/structure/table, +/obj/item/extinguisher, +/obj/item/storage/toolbox/mechanical, +/obj/item/wrench, +/obj/item/clothing/mask/gas, +/obj/item/extinguisher{ + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/floor/engine, +/area/science/storage) +"cGM" = ( +/obj/structure/tank_dispenser, +/turf/open/floor/engine, +/area/science/storage) +"cGN" = ( +/obj/structure/closet/l3closet, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cGO" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cGP" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/science/storage) +"cGQ" = ( +/obj/machinery/door/airlock/research{ + name = "Plasma Canister Storage"; + req_access_txt = "7;8" + }, +/turf/open/floor/engine, +/area/science/storage) +"cGR" = ( +/obj/effect/landmark/start/scientist, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cGS" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cGT" = ( +/obj/item/radio/intercom{ + dir = 8; + name = "Station Intercom (Common)"; + pixel_x = 28 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cGU" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_access_txt = "5;6" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"cGV" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/science/storage) +"cGW" = ( +/obj/effect/landmark/blobstart, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/storage) +"cGX" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cGY" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cGZ" = ( +/turf/open/floor/plating/airless, +/area/science/storage) +"cHa" = ( +/obj/machinery/portable_atmospherics/canister/toxins, +/obj/structure/sign/warning/fire{ + pixel_x = -32 + }, +/obj/machinery/camera{ + c_tag = "Toxins Lab - Plasma Storage"; + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/engine, +/area/science/storage) +"cHb" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cHc" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cHd" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cHe" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cHf" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/item/stock_parts/cell/high/plus, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/item/stack/cable_coil/red, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cHg" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cHh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cHi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/science/circuit) +"cHj" = ( +/obj/structure/table, +/obj/item/storage/hypospraykit/toxin{ + pixel_x = -5 + }, +/obj/item/storage/hypospraykit/fire{ + pixel_x = 5 + }, +/obj/item/clothing/glasses/sunglasses, +/obj/item/clothing/glasses/sunglasses, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cHk" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cHl" = ( +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cHm" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cHn" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/explab) +"cHo" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cHp" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cHq" = ( +/obj/structure/closet/firecloset, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cHr" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cHs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cHt" = ( +/obj/structure/disposalpipe/junction, +/obj/machinery/light{ + dir = 4; + light_color = "#e8eaff" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cHu" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cHv" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/camera{ + c_tag = "Research - Experimentation Hall"; + dir = 8; + network = list("ss13","medbay") + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cHw" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/sign/warning/biohazard{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cHx" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"cHy" = ( +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/explab) +"cHz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/explab) +"cHA" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/research{ + name = "Experimentation Lab"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cHB" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/effect/landmark/blobstart, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cHC" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/science/explab"; + dir = 4; + name = "Experimentation Lab APC"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cHD" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/obj/item/beacon, +/turf/open/floor/engine, +/area/science/explab) +"cHE" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"cHF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/engine, +/area/science/explab) +"cHG" = ( +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/research{ + name = "Experimentation Lab"; + req_access_txt = "47" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cHH" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cHI" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/explab) +"cHJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/science/explab) +"cHK" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cHL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cHM" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cHN" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cHO" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cHP" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/landmark/start/geneticist, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cHQ" = ( +/obj/machinery/light, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cHR" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical{ + name = "Morgue"; + req_one_access_txt = "9;45" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"cHS" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Genetics Lab"; + req_access_txt = "9" + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cHT" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall/rust, +/area/medical/morgue) +"cHU" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cHV" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/holopad, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cHW" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/structure/table/reinforced, +/obj/machinery/door/window/eastright{ + base_state = "left"; + dir = 2; + icon_state = "left"; + name = "Chemistry Desk"; + req_access_txt = "33" + }, +/turf/open/floor/plasteel, +/area/medical/chemistry) +"cHX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cHY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/recharge_station, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cHZ" = ( +/obj/structure/plasticflaps, +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor{ + name = "Airbridge Router" + }, +/turf/open/floor/plating, +/area/router/air) +"cIa" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cIb" = ( +/obj/structure/table, +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/item/storage/firstaid/radbgone, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medical)"; + pixel_x = 28 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cIc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cId" = ( +/obj/effect/landmark/xeno_spawn, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cIe" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/maintenance/aft) +"cIf" = ( +/obj/structure/closet/crate/trashcart, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/obj/effect/spawner/lootdrop/maintenance, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cIg" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cIh" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "workshop_off" + }, +/turf/open/floor/plating, +/area/engine/workshop) +"cIi" = ( +/obj/structure/window/reinforced/spawner, +/obj/machinery/conveyor{ + dir = 4; + id = "workshop_off" + }, +/turf/open/floor/plating, +/area/engine/workshop) +"cIj" = ( +/obj/structure/chair, +/obj/effect/landmark/start/geneticist, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cIk" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cIl" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple, +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cIm" = ( +/obj/structure/chair, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/start/geneticist, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cIn" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/genetics) +"cIo" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/medical/glass{ + name = "Genetics Lab Maintenance"; + req_access_txt = "9" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plating, +/area/medical/genetics) +"cIp" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cIq" = ( +/obj/structure/window/reinforced/spawner, +/obj/structure/window/reinforced/spawner/east, +/obj/machinery/conveyor{ + dir = 1; + id = "workshop_off" + }, +/turf/open/floor/plating, +/area/engine/workshop) +"cIr" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = -28; + pixel_y = -4 + }, +/obj/machinery/light_switch{ + pixel_x = -24; + pixel_y = 10 + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cIs" = ( +/obj/machinery/door/airlock/atmos{ + name = "Atmospherics"; + req_access_txt = "24" + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cIt" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIu" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cIv" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIw" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIx" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Aft Hall"; + network = list("ss13","rd") + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIz" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIA" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIB" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/item/kirbyplants/photosynthetic, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIC" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cID" = ( +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIE" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIF" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIG" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1; + light_color = "#cee5d2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIH" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/firealarm{ + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cII" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIJ" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIK" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIL" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIN" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/public/glass{ + name = "Engineering Sector" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/delivery, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIQ" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIR" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIU" = ( +/obj/structure/disposalpipe/junction/flip{ + dir = 8 + }, +/obj/machinery/navbeacon{ + codes_txt = "patrol;next_patrol=evac"; + location = "eng1" + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIV" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIX" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/obj/machinery/airalarm{ + dir = 1; + locked = 0; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIY" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cIZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cJa" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cJb" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cJc" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cJd" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/supplymain/hidden, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cJe" = ( +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/airalarm{ + dir = 1; + locked = 0; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cJf" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Unisex Restrooms" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"cJg" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"cJh" = ( +/obj/structure/table, +/obj/structure/bedsheetbin/towel, +/obj/machinery/camera{ + c_tag = "Aft Restrooms"; + dir = 8; + pixel_y = -22 + }, +/obj/machinery/airalarm{ + dir = 1; + locked = 0; + pixel_y = -22 + }, +/turf/open/floor/plasteel/freezer, +/area/crew_quarters/toilet/restrooms) +"cJi" = ( +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/brown{ + dir = 8 + }, +/obj/machinery/airalarm{ + dir = 1; + locked = 0; + pixel_y = -22 + }, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cJj" = ( +/obj/machinery/computer/security/mining, +/obj/effect/turf_decal/tile/brown{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cJk" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cJl" = ( +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/camera{ + c_tag = "Engine Room - Starboard Quarter"; + dir = 8; + pixel_y = -22 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"cJm" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cJn" = ( +/obj/machinery/door/airlock/external{ + name = "Atmospherics External Airlock"; + req_access_txt = "24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cJo" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/white/corner, +/area/engine/atmos) +"cJp" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering{ + name = "Engine Room" + }) +"cJq" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/visible, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external/glass{ + name = "External Construction Access"; + req_one_access_txt = "10;31" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cJr" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 5 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cJs" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"cJt" = ( +/obj/effect/turf_decal/stripes/line, +/obj/machinery/light{ + dir = 8 + }, +/obj/machinery/power/apc{ + name = "AI Upload Foyer APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"cJu" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cJv" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Router"; + req_access_txt = "11" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"cJw" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"cJx" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/manifold/supplymain/visible{ + dir = 1 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cJy" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/rnd/production/circuit_imprinter, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cJz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 8; + id = "DeliveryConveyor" + }, +/turf/open/floor/plating, +/area/quartermaster/warehouse) +"cJA" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"cJB" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/visible, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/engineering{ + name = "Engine Room" + }) +"cJC" = ( +/obj/machinery/door/airlock/engineering{ + name = "Gravity Generator"; + req_access_txt = "11" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/firedoor/heavy, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cJD" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/power/terminal, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cJE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cJF" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/closed/wall/r_wall, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"cJG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/table, +/obj/machinery/light/small, +/obj/machinery/power/apc/highcap/five_k{ + areastring = "/area/engine/gravity_generator"; + dir = 4; + name = "Gravity Generator APC"; + pixel_x = 26 + }, +/obj/structure/cable{ + icon_state = "0-2"; + pixel_y = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/engine/gravity_generator) +"cJH" = ( +/obj/machinery/atmospherics/components/unary/portables_connector/visible{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/effect/turf_decal/bot, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cJI" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall/r_wall, +/area/engine/gravity_generator) +"cJJ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/engine, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"cJK" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/components/binary/valve/digital{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"cJL" = ( +/obj/machinery/atmospherics/pipe/simple/supply/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"cJM" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/landmark/start/atmospheric_technician, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on, +/turf/open/floor/plasteel, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"cJN" = ( +/obj/machinery/light/small, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"cJO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/engine/supermatter{ + name = "Thermo-Electric Generator" + }) +"cJP" = ( +/obj/machinery/portable_atmospherics/scrubber, +/obj/machinery/light/small, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"cJQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/supply/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"cJR" = ( +/obj/machinery/door/airlock/engineering{ + name = "Canister Storage"; + req_one_access_txt = "10;24" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/heavy, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/storage{ + name = "Canister Storage" + }) +"cJS" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/storage{ + name = "Canister Storage" + }) +"cJT" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/corner, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/storage{ + name = "Canister Storage" + }) +"cJU" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/storage{ + name = "Canister Storage" + }) +"cJV" = ( +/obj/structure/plasticflaps, +/obj/machinery/door/poddoor{ + id = "DeliveryDoor"; + name = "Delivery Door" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/conveyor{ + dir = 8; + id = "DeliveryConveyor" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"cJW" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"cJX" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"cJY" = ( +/obj/machinery/light, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"cJZ" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/engine/storage{ + name = "Canister Storage" + }) +"cKa" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/engine/storage{ + name = "Canister Storage" + }) +"cKb" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/engine/storage{ + name = "Canister Storage" + }) +"cKc" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Canister Storage"; + req_access_txt = "10" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/engine/storage{ + name = "Canister Storage" + }) +"cKd" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "DeliveryConveyor" + }, +/turf/open/floor/plating, +/area/quartermaster/sorting) +"cKe" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/public/glass{ + name = "Airbridge Router" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/router/air) +"cKf" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/router/air) +"cKg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/machinery/vending/engivend, +/turf/open/floor/plasteel, +/area/storage/primary) +"cKh" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cKi" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/door/airlock/medical{ + name = "Apothecary"; + req_access_txt = "5" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/medbay/central) +"cKj" = ( +/obj/structure/closet/secure_closet/CMO, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/item/paper/guides/cogstation/letter_cmo, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"cKk" = ( +/obj/structure/chair/office/light{ + dir = 1; + pixel_y = 3 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/landmark/start/medical_doctor, +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cKl" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/lobby) +"cKm" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/stairs, +/area/medical/medbay/central) +"cKn" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cKo" = ( +/obj/structure/disposalpipe/sorting/mail{ + dir = 8; + sortType = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cKp" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cKq" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"cKr" = ( +/obj/effect/turf_decal/tile/neutral, +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cKs" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cKt" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cKu" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cKv" = ( +/obj/effect/turf_decal/tile/neutral{ + dir = 4 + }, +/obj/effect/turf_decal/tile/neutral, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cKw" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"cKx" = ( +/obj/structure/grille, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plating/airless, +/area/science/xenobiology) +"cKy" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/science/xenobiology) +"cKz" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cKA" = ( +/obj/machinery/atmospherics/components/binary/valve, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cKB" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cKC" = ( +/obj/structure/chair/office/light{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/landmark/start/chief_medical_officer, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"cKD" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cKE" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/port/fore) +"cKF" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cKG" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/closet/wardrobe/yellow, +/turf/open/floor/plasteel, +/area/hallway/primary/central) +"cKH" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/machinery/airalarm{ + pixel_y = 24 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cKI" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cKJ" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cKK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"cKL" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cKM" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cKN" = ( +/obj/structure/table/reinforced, +/obj/item/assembly/signaler{ + pixel_x = -4 + }, +/obj/item/assembly/signaler, +/obj/item/assembly/signaler{ + pixel_y = 8 + }, +/obj/item/assembly/signaler{ + pixel_x = 8; + pixel_y = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel/white, +/area/science/mixing) +"cKO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/structure/sign/departments/restroom{ + pixel_y = -32 + }, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cKP" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/structure/sign/departments/custodian{ + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cKQ" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/mix_output, +/turf/open/floor/engine/vacuum, +/area/engine/atmos) +"cKR" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrous_input, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"cKS" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrous_output, +/turf/open/floor/engine/n2o, +/area/engine/atmos) +"cKT" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/toxin_input, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"cKU" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/toxin_output, +/turf/open/floor/engine/plasma, +/area/engine/atmos) +"cKV" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/carbon_input, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"cKW" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/carbon_output, +/turf/open/floor/engine/co2, +/area/engine/atmos) +"cKX" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cKY" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cKZ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/space/basic, +/area/space/nearstation) +"cLa" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/space/basic, +/area/space/nearstation) +"cLb" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plating, +/area/engine/atmos) +"cLc" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plating, +/area/engine/atmos) +"cLd" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cLe" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2o{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/engine/atmos) +"cLf" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/engine/atmos) +"cLg" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/violet/visible, +/obj/structure/extinguisher_cabinet{ + pixel_y = 29 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cLh" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/plasma{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cLi" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cLj" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/co2{ + dir = 8 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engine/atmos) +"cLk" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "CO2 Outlet Pump" + }, +/turf/open/floor/plasteel/dark/side{ + dir = 1 + }, +/area/engine/atmos) +"cLl" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cLm" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cLn" = ( +/obj/effect/turf_decal/bot, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/under/misc/overalls, +/turf/open/floor/plasteel, +/area/storage/primary) +"cLo" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/n2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cLp" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cLq" = ( +/obj/machinery/atmospherics/components/trinary/filter/atmos/o2{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cLr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/storage/primary) +"cLs" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cLt" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/nitrogen_input{ + dir = 1 + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"cLu" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/nitrogen_output{ + dir = 1 + }, +/turf/open/floor/engine/n2, +/area/engine/atmos) +"cLv" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/oxygen_input{ + dir = 1 + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"cLw" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/oxygen_output{ + dir = 1 + }, +/turf/open/floor/engine/o2, +/area/engine/atmos) +"cLx" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/air_input{ + dir = 1 + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"cLy" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/high_volume/siphon/atmos/air_output{ + dir = 1 + }, +/turf/open/floor/engine/air, +/area/engine/atmos) +"cLz" = ( +/obj/effect/turf_decal/bot, +/obj/structure/closet/secure_closet/engineering_personal, +/obj/item/clothing/under/misc/overalls, +/turf/open/floor/plasteel, +/area/storage/primary) +"cLA" = ( +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/camera{ + c_tag = "Virology - Starboard"; + dir = 8; + pixel_y = -22 + }, +/obj/machinery/power/apc{ + areastring = "/area/medical/virology"; + dir = 4; + name = "Virology Lab APC"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cLB" = ( +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/router/air) +"cLC" = ( +/obj/structure/bed, +/obj/item/bedsheet/medical, +/obj/machinery/camera{ + c_tag = "Virology - Port"; + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cLD" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cLE" = ( +/obj/structure/closet/crate/medical, +/turf/open/floor/plasteel, +/area/router/air) +"cLF" = ( +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cLG" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cLH" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cLI" = ( +/obj/structure/chair/office/light, +/obj/effect/landmark/start/virologist, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cLJ" = ( +/obj/structure/table, +/obj/item/stack/packageWrap, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/item/wirecutters, +/turf/open/floor/plasteel, +/area/router/air) +"cLK" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/conveyor{ + id = "airbridge_off" + }, +/turf/open/floor/plating, +/area/router/air) +"cLL" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cLM" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cLN" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cLO" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/conveyor{ + dir = 8; + id = "airbridge_off" + }, +/turf/open/floor/plating, +/area/router/air) +"cLP" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/green{ + dir = 8 + }, +/obj/effect/turf_decal/tile/green, +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/item/storage/box/syringes, +/obj/item/hand_labeler, +/obj/item/radio/headset/headset_med, +/obj/structure/sign/warning/biohazard{ + pixel_x = 32 + }, +/obj/item/radio/intercom{ + broadcasting = 1; + frequency = 1485; + listening = 0; + name = "Station Intercom (Medical)"; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cLQ" = ( +/obj/structure/plasticflaps, +/obj/structure/fans/tiny, +/obj/machinery/conveyor{ + dir = 8; + id = "airbridge_off" + }, +/obj/machinery/door/poddoor{ + name = "Airbridge Router" + }, +/turf/open/floor/plating, +/area/router/air) +"cLR" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/mass_driver{ + dir = 8; + id = "workshop_in"; + name = "Router Driver" + }, +/turf/open/floor/plating, +/area/engine/workshop) +"cLS" = ( +/obj/machinery/light, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel/freezer, +/area/medical/virology) +"cLT" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall/r_wall, +/area/medical/virology) +"cLU" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 1; + frequency = 1441; + id = "inc_in" + }, +/turf/open/floor/plating/airless, +/area/medical/virology) +"cLV" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cLW" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#c1caff" + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cLX" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"cLY" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/siphon/atmos/incinerator_output{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cLZ" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"cMa" = ( +/obj/machinery/light/small{ + dir = 1; + light_color = "#ffc1c1" + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cMb" = ( +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cMc" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMd" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 4; + name = "N2 to Airmix" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMe" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMf" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"cMg" = ( +/obj/machinery/atmospherics/components/trinary/mixer/airmix{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMh" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMi" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMj" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/components/binary/dp_vent_pump/high_volume/incinerator_atmos{ + dir = 1 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cMk" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMl" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMm" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMn" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "N2 to Pure" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMo" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMp" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"cMq" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMr" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMs" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMt" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/incinerator_input{ + dir = 4 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cMu" = ( +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 8 + }, +/turf/open/floor/engine/vacuum, +/area/maintenance/disposal/incinerator) +"cMv" = ( +/obj/machinery/button/door/incinerator_vent_atmos_main{ + pixel_x = -24; + pixel_y = 8 + }, +/obj/machinery/button/door/incinerator_vent_atmos_aux{ + pixel_x = -40; + pixel_y = 8 + }, +/obj/machinery/atmospherics/pipe/simple/general/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMw" = ( +/obj/machinery/atmospherics/components/binary/valve/digital{ + name = "Waste Release" + }, +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMx" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 5 + }, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -30 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMy" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "Nitrogen Outlet" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMz" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/light, +/obj/machinery/camera{ + c_tag = "Atmospherics - Starboard Aft"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMA" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMB" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1; + name = "O2 to Airmix" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMC" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "O2 to Pure" + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cMD" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/turf/open/floor/plasteel/white/corner, +/area/engine/atmos) +"cME" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 9 + }, +/turf/open/floor/plasteel/white/corner, +/area/engine/atmos) +"cMF" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Air to Pure" + }, +/turf/open/floor/plasteel/white/corner, +/area/engine/atmos) +"cMG" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/maintenance/disposal/incinerator) +"cMH" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cMI" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 9 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cMJ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cMK" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/tcommsat/computer) +"cML" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"cMM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"cMN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"cMO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"cMP" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/atmos/atmos_waste{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/engine/atmos) +"cMQ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cMR" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cMS" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/open/space/basic, +/area/space/nearstation) +"cMT" = ( +/obj/structure/grille, +/obj/machinery/atmospherics/pipe/simple/cyan/visible, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"cMU" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/effect/turf_decal/stripes/line, +/obj/machinery/conveyor{ + dir = 8; + id = "workshop_off" + }, +/turf/open/floor/plating, +/area/engine/workshop) +"cMV" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "workshop_off" + }, +/turf/open/floor/plating, +/area/engine/workshop) +"cMW" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/vending/tool, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cMX" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/table, +/obj/item/storage/box/lights/mixed, +/obj/item/multitool{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/multitool{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/multitool, +/obj/item/multitool, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cMY" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/table, +/obj/machinery/camera{ + c_tag = "Engineering - Workshop"; + dir = 1 + }, +/obj/item/clothing/gloves/color/yellow, +/obj/item/t_scanner, +/obj/item/t_scanner, +/obj/item/t_scanner, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cMZ" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high/plus, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cNa" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/chair, +/obj/effect/landmark/start/station_engineer, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cNb" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/chair, +/obj/effect/landmark/start/station_engineer, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cNc" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/table, +/obj/item/storage/toolbox/electrical, +/obj/item/stack/cable_coil/red, +/obj/item/stack/cable_coil/red, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cNd" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/closet/crate/engineering, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cNe" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/disposalpipe/segment, +/obj/item/radio/intercom{ + name = "Station Intercom (Common)"; + pixel_y = -29 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cNf" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cNg" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 8 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow, +/obj/machinery/vending/assist, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cNh" = ( +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/delivery, +/obj/machinery/door/airlock/public/glass{ + name = "Airbridge Router" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/router/air) +"cNi" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/router/air) +"cNj" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/router/air) +"cNk" = ( +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/router/air) +"cNl" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/machinery/light, +/turf/open/floor/plasteel, +/area/router/air) +"cNm" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "airbridge_off" + }, +/turf/open/floor/plating, +/area/router/air) +"cNn" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "airbridge_off" + }, +/turf/open/floor/plating, +/area/router/air) +"cNo" = ( +/turf/closed/wall/rust, +/area/engine/workshop) +"cNp" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southleft{ + name = "Workshop Desk"; + req_access_txt = "11" + }, +/obj/item/paper_bin, +/obj/item/pen, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cNq" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southright{ + name = "Workshop Desk"; + req_access_txt = "11" + }, +/obj/item/folder/yellow, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cNr" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/engine/workshop) +"cNs" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/turf/closed/wall, +/area/engine/workshop) +"cNt" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/closed/wall, +/area/engine/workshop) +"cNu" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Workshop"; + req_access_txt = "11" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/turf_decal/delivery, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/engine/workshop) +"cNv" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/turf/closed/wall, +/area/engine/workshop) +"cNw" = ( +/turf/closed/wall/r_wall, +/area/router/air) +"cNx" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/primary/aft) +"cNy" = ( +/turf/closed/wall/r_wall, +/area/quartermaster/miningdock/airless) +"cNz" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/quartermaster/miningdock/airless) +"cNA" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/quartermaster/office) +"cNB" = ( +/turf/open/floor/plating, +/area/quartermaster/miningdock/airless) +"cNC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"cND" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/quartermaster/miningoffice) +"cNE" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + brightness = 3; + dir = 8 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock/airless) +"cNF" = ( +/obj/item/shovel, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock/airless) +"cNG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock/airless) +"cNH" = ( +/obj/effect/turf_decal/stripes/corner{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/warning/electricshock{ + pixel_y = 32 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock/airless) +"cNI" = ( +/turf/open/floor/plating/airless, +/area/router/aux) +"cNJ" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/obj/machinery/camera{ + c_tag = "Medbay - Starboard"; + network = list("ss13","rd") + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cNK" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 4 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/engine/teg_hot) +"cNL" = ( +/obj/machinery/atmospherics/components/unary/outlet_injector/on{ + dir = 8 + }, +/turf/open/floor/plating{ + icon_state = "panelscorched" + }, +/area/engine/teg_cold) +"cNM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/rack, +/obj/item/circuitboard/machine, +/obj/item/circuitboard/machine, +/obj/item/circuitboard/machine, +/obj/item/circuitboard/machine, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/wallframe/camera, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock/airless) +"cNN" = ( +/turf/open/floor/plasteel, +/area/quartermaster/miningdock/airless) +"cNO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock/airless) +"cNP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/frame/computer{ + dir = 8 + }, +/turf/open/floor/plating, +/area/quartermaster/miningdock/airless) +"cNQ" = ( +/obj/structure/sign/warning{ + name = "\improper KEEP CLEAR: HIGH SPEED DELIVERIES" + }, +/turf/closed/wall/r_wall, +/area/router/aux) +"cNR" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock/airless) +"cNS" = ( +/obj/machinery/power/apc{ + name = "Mining Dock APC"; + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock/airless) +"cNT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light_switch{ + pixel_y = -24 + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock/airless) +"cNU" = ( +/obj/structure/table, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/plasteel/fifty, +/turf/open/floor/plating, +/area/quartermaster/miningdock/airless) +"cNV" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cNW" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera{ + c_tag = "Supply - Mining Exterior"; + dir = 4 + }, +/turf/open/space/basic, +/area/quartermaster/miningdock/airless/no_grav) +"cNX" = ( +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/quartermaster/miningdock/airless/no_grav) +"cNY" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/external/glass{ + name = "Refinery"; + req_access_txt = "48" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock/airless) +"cNZ" = ( +/obj/machinery/door/airlock/external/glass{ + name = "Refinery"; + req_access_txt = "48" + }, +/turf/open/floor/plasteel, +/area/quartermaster/miningdock/airless) +"cOa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 9 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cOb" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/space/basic, +/area/quartermaster/miningdock/airless/no_grav) +"cOc" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/camera{ + c_tag = "Supply - Refinery Exterior"; + pixel_x = 22 + }, +/turf/open/space/basic, +/area/quartermaster/miningdock/airless/no_grav) +"cOd" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/carpet{ + icon_state = "carpetsymbol" + }, +/area/medical/medbay/lobby) +"cOe" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cOf" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/space/basic, +/area/quartermaster/miningdock/airless/no_grav) +"cOg" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/space/basic, +/area/quartermaster/miningdock/airless/no_grav) +"cOh" = ( +/obj/structure/lattice, +/turf/open/space/basic, +/area/quartermaster/miningdock/airless/no_grav) +"cOi" = ( +/obj/machinery/conveyor_switch{ + id = "MiningConveyer" + }, +/turf/open/floor/plating/airless, +/area/quartermaster/miningdock/airless/no_grav) +"cOj" = ( +/turf/open/floor/plating/airless, +/area/quartermaster/miningdock/airless/no_grav) +"cOk" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/toolcloset, +/turf/open/floor/plating/airless, +/area/quartermaster/miningdock/airless/no_grav) +"cOl" = ( +/turf/closed/wall/r_wall, +/area/quartermaster/miningdock/airless/no_grav) +"cOm" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "MiningConveyer" + }, +/obj/structure/lattice/catwalk, +/turf/open/space/basic, +/area/quartermaster/miningdock/airless/no_grav) +"cOn" = ( +/obj/effect/turf_decal/loading_area{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/quartermaster/miningdock/airless/no_grav) +"cOo" = ( +/obj/structure/table, +/turf/open/floor/plating/airless, +/area/quartermaster/miningdock/airless/no_grav) +"cOp" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating/airless, +/area/quartermaster/miningdock/airless/no_grav) +"cOq" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cOr" = ( +/obj/machinery/light/small, +/turf/open/floor/plating/airless, +/area/quartermaster/miningdock/airless/no_grav) +"cOs" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/glass/fifty, +/turf/open/floor/plating/airless, +/area/quartermaster/miningdock/airless/no_grav) +"cOt" = ( +/obj/structure/closet/crate, +/obj/item/stack/rods/fifty, +/turf/open/floor/plating/airless, +/area/quartermaster/miningdock/airless/no_grav) +"cOu" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/metal/fifty, +/turf/open/floor/plating/airless, +/area/quartermaster/miningdock/airless/no_grav) +"cOv" = ( +/obj/item/storage/toolbox/emergency, +/obj/structure/table, +/turf/open/floor/plating/airless, +/area/quartermaster/miningdock/airless/no_grav) +"cOw" = ( +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hallway/secondary/exit) +"cOx" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + areastring = "/area/router/medsci"; + dir = 1; + name = "MedSci Router APC"; + pixel_y = 24 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/router/medsci) +"cOy" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/router/medsci) +"cOz" = ( +/obj/effect/turf_decal/delivery, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/turf/open/floor/plasteel/white, +/area/router/medsci) +"cOA" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 9 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/router/medsci) +"cOB" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/router/medsci) +"cOC" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 5 + }, +/obj/machinery/light_switch{ + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/router/medsci) +"cOD" = ( +/obj/structure/disposalpipe/segment{ + dir = 10 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 1 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plating, +/area/maintenance/aft) +"cOE" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 10 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/router/medsci) +"cOF" = ( +/obj/effect/turf_decal/stripes/line, +/turf/open/floor/plasteel, +/area/router/medsci) +"cOG" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel, +/area/router/medsci) +"cOH" = ( +/obj/machinery/computer/cargo/request{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/router/medsci) +"cOI" = ( +/turf/closed/wall/r_wall, +/area/router/medsci) +"cOJ" = ( +/obj/machinery/conveyor{ + id = "medsci_off" + }, +/turf/open/floor/plating, +/area/router/medsci) +"cOK" = ( +/obj/structure/table/reinforced, +/obj/item/stack/packageWrap, +/obj/item/hand_labeler, +/obj/item/destTagger, +/obj/machinery/light, +/obj/machinery/button/massdriver{ + id = "medsci_out"; + pixel_x = -8; + pixel_y = 8 + }, +/obj/machinery/requests_console{ + department = "MedSci Router"; + name = "MedSci Router RC"; + pixel_y = -32 + }, +/turf/open/floor/plating, +/area/router/medsci) +"cOL" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "medsci_off" + }, +/turf/open/floor/plating, +/area/router/medsci) +"cOM" = ( +/turf/closed/wall/r_wall, +/area/janitor/aux) +"cON" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock{ + name = "Auxiliary Custodial Closet"; + req_access_txt = "12" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plating, +/area/janitor/aux) +"cOO" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall/r_wall, +/area/janitor/aux) +"cOP" = ( +/obj/machinery/mass_driver{ + id = "medsci_out"; + name = "Router Driver" + }, +/turf/open/floor/plating, +/area/router/medsci) +"cOQ" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/janitor/aux"; + dir = 1; + name = "Auxiliary Custodial Closet APC"; + pixel_y = 24 + }, +/turf/open/floor/plasteel, +/area/janitor/aux) +"cOR" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/turf/open/floor/plasteel, +/area/janitor/aux) +"cOS" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/light_switch{ + pixel_y = 24 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/cobweb/cobweb2, +/obj/item/storage/box/lights/mixed, +/obj/item/light/tube, +/obj/item/radio/off, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/janitor/aux) +"cOT" = ( +/obj/structure/plasticflaps, +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor{ + name = "MedSci Router" + }, +/turf/open/floor/plating, +/area/router/medsci) +"cOU" = ( +/obj/structure/plasticflaps, +/obj/structure/fans/tiny, +/obj/machinery/door/poddoor{ + name = "MedSci Router" + }, +/obj/machinery/conveyor{ + dir = 1; + id = "medsci_off" + }, +/turf/open/floor/plating, +/area/router/medsci) +"cOV" = ( +/obj/structure/closet/crate, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/item/storage/box/mousetraps, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plasteel, +/area/janitor/aux) +"cOW" = ( +/obj/structure/chair{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/landmark/event_spawn, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/janitor/aux) +"cOX" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/modular_computer/laptop/preset/civilian, +/turf/open/floor/plasteel, +/area/janitor/aux) +"cOY" = ( +/obj/effect/spawner/structure/window/reinforced, +/turf/open/floor/plating, +/area/janitor/aux) +"cOZ" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera{ + c_tag = "Custodial Closet - Auxiliary"; + dir = 1 + }, +/turf/open/floor/plasteel, +/area/janitor/aux) +"cPa" = ( +/obj/structure/mopbucket, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -26 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/janitor/aux) +"cPb" = ( +/obj/machinery/disposal/bin, +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/janitor/aux) +"cPc" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/white, +/area/medical/virology) +"cPd" = ( +/obj/machinery/conveyor{ + id = "sq_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"cPe" = ( +/obj/machinery/mass_driver{ + dir = 1; + id = "sq_out"; + name = "Router Driver" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"cPf" = ( +/obj/machinery/conveyor/auto, +/turf/open/floor/plating/airless, +/area/router/aux) +"cPg" = ( +/obj/machinery/mass_driver{ + dir = 1; + id = "medsci_in"; + name = "Router Driver" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"cPh" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "sq_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"cPi" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "viro_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"cPj" = ( +/obj/machinery/conveyor{ + dir = 9; + id = "viro_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"cPk" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "viro_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"cPl" = ( +/obj/machinery/mass_driver{ + dir = 8; + id = "viro_in"; + name = "Router Driver" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"cPm" = ( +/obj/machinery/conveyor{ + dir = 8; + id = "sq_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"cPn" = ( +/obj/machinery/conveyor{ + dir = 10; + id = "sq_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"cPo" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "viro_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"cPp" = ( +/obj/machinery/mass_driver{ + dir = 4; + id = "viro_out"; + name = "Router Driver" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"cPq" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "sq_off" + }, +/turf/open/floor/plating/airless, +/area/router/aux) +"cPr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/hydroponics/lobby) +"cPs" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/bridge) +"cPt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel/dark, +/area/security/checkpoint/customs) +"cPu" = ( +/obj/machinery/atmospherics/pipe/manifold4w/cyan/hidden, +/obj/effect/landmark/event_spawn, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cPv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/landmark/event_spawn, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/circuit, +/area/science/robotics/mechbay) +"cPw" = ( +/turf/open/floor/plasteel/dark, +/area/science/robotics/mechbay) +"cPx" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cPy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/sign/poster/contraband/lusty_xenomorph{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cPz" = ( +/obj/structure/lattice, +/obj/structure/transit_tube/curved{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cPA" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/structure/transit_tube/horizontal, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cPB" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/transit_tube/crossing/horizontal, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"cPC" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/structure/transit_tube/horizontal, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cPD" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cPE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/space/basic, +/area/space/nearstation) +"cPF" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/space/basic, +/area/space/nearstation) +"cPG" = ( +/obj/effect/turf_decal/stripes/line, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/machinery/turretid{ + control_area = "/area/science/server"; + icon_state = "control_stun"; + name = "Computer Core turret control"; + pixel_x = -3; + pixel_y = -23; + req_access_txt = "65" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/science/server{ + name = "Computer Core" + }) +"cPH" = ( +/obj/machinery/conveyor_switch{ + id = "EngiCargoConveyer" + }, +/obj/structure/cable, +/obj/machinery/power/apc{ + areastring = "/area/quartermaster/sorting"; + dir = 8; + name = "Delivery Office APC"; + pixel_x = -26 + }, +/turf/open/floor/plasteel, +/area/quartermaster/sorting) +"cPI" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Foyer"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cPJ" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering{ + name = "Engineering Foyer"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cPK" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Access"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cPL" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/engineering/glass{ + name = "Engineering Access"; + req_one_access_txt = "10;24" + }, +/obj/effect/mapping_helpers/airlock/cyclelink_helper{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/engine/break_room) +"cPM" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/structure/table, +/obj/machinery/recharger, +/obj/machinery/requests_console{ + department = "Security"; + departmentType = 5; + name = "Security RC"; + pixel_x = 32 + }, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/security/checkpoint/supply) +"cPN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPO" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plating, +/area/maintenance/starboard/aft) +"cPP" = ( +/obj/effect/landmark/start/paramedic, +/obj/structure/disposalpipe/segment{ + dir = 9 + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/central) +"cPQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 6 + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + areastring = "/area/medical/genetics"; + dir = 8; + name = "Genetics Lab APC"; + pixel_x = -26 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 6 + }, +/turf/open/floor/plating, +/area/maintenance/aft) +"cPR" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"cPS" = ( +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue, +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/command/glass{ + name = "CMO's Office"; + req_access_txt = "40" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/white, +/area/crew_quarters/heads/cmo) +"cPT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/crew_quarters/heads/cmo) +"cPU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cPV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/holopad, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cPW" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cPX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/white, +/area/science/xenobiology) +"cPY" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cPZ" = ( +/obj/effect/turf_decal/stripes/line, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/door/firedoor, +/obj/effect/turf_decal/caution/stand_clear{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQa" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cQb" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cQc" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cQd" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cQe" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "xenobio2"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQf" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cQg" = ( +/obj/machinery/door/window/westright{ + name = "Containment Pen"; + req_one_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio1"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cQh" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cQi" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cQj" = ( +/obj/machinery/door/window/eastleft{ + name = "Containment Pen"; + req_one_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio2"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cQk" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"cQl" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/north, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/button/door{ + id = "xenobio1"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQm" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cQn" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cQo" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable, +/turf/open/floor/plating, +/area/science/xenobiology) +"cQp" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cQq" = ( +/obj/effect/turf_decal/tile/purple, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cQr" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner, +/obj/machinery/button/door{ + id = "xenobio4"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQs" = ( +/obj/machinery/door/window/westright{ + name = "Containment Pen"; + req_one_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio3"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cQt" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cQu" = ( +/obj/machinery/door/window/eastleft{ + name = "Containment Pen"; + req_one_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio4"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cQv" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/button/door{ + id = "xenobio3"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQw" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#e8eaff" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cQx" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/structure/window/reinforced/spawner, +/obj/machinery/button/door{ + id = "xenobio6"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQy" = ( +/obj/machinery/door/window/westright{ + name = "Containment Pen"; + req_one_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio5"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cQz" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cQA" = ( +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cQB" = ( +/obj/machinery/door/window/eastleft{ + name = "Containment Pen"; + req_one_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio6"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cQC" = ( +/obj/structure/table/reinforced, +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/button/door{ + id = "xenobio5"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQD" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cQE" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cQF" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 9 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cQG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/open/floor/plasteel/dark, +/area/science/xenobiology) +"cQH" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/button/door{ + id = "xenobio7"; + name = "Containment Blast Doors"; + pixel_y = 4; + req_access_txt = "55" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQI" = ( +/obj/structure/table/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + layer = 2.9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/glasses/science, +/obj/structure/cable{ + icon_state = "1-2" + }, +/turf/open/floor/plasteel, +/area/science/xenobiology) +"cQJ" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cQK" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/general/visible, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cQL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cQM" = ( +/obj/machinery/door/window/southright{ + name = "Secure Xenobiological Containment"; + req_one_access_txt = "55" + }, +/obj/machinery/door/poddoor/preopen{ + id = "xenobio7"; + name = "containment blast door" + }, +/turf/open/floor/engine, +/area/science/xenobiology) +"cQN" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cQO" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-4" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cQP" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/open/floor/plating, +/area/science/xenobiology) +"cQQ" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"cQR" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"cQS" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"cQT" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"cQU" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/machinery/door/poddoor/preopen{ + id = "bridge blast"; + name = "bridge blast door" + }, +/turf/open/floor/plating, +/area/bridge) +"cQV" = ( +/obj/item/kirbyplants{ + icon_state = "plant-02" + }, +/obj/structure/cable{ + icon_state = "2-4" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"cQW" = ( +/obj/structure/table/wood, +/obj/item/paper_bin, +/obj/machinery/camera{ + c_tag = "Bridge - Port Quarter"; + dir = 1 + }, +/obj/machinery/keycard_auth{ + pixel_y = -24 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"cQX" = ( +/obj/machinery/photocopier, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"cQY" = ( +/obj/structure/reagent_dispensers/water_cooler, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"cQZ" = ( +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"cRa" = ( +/obj/effect/turf_decal/stripes/end{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "MiningConveyer" + }, +/obj/machinery/door/poddoor{ + id = "MiningConveyorBlastDoor"; + name = "Asteroid Mining Load Door" + }, +/turf/open/floor/plating/airless, +/area/quartermaster/miningoffice) +"cRb" = ( +/obj/machinery/computer/cloning, +/obj/effect/turf_decal/bot, +/obj/structure/disposalpipe/segment, +/obj/item/paper/guides/jobs/medical/cloning{ + pixel_x = -4 + }, +/turf/open/floor/plasteel, +/area/medical/medbay/central) +"cRc" = ( +/obj/machinery/door/firedoor, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/door/airlock/research{ + name = "Aft Observatory"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cRd" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/machinery/door/airlock/research{ + name = "Aft Observatory"; + req_access_txt = "47" + }, +/turf/open/floor/plasteel/dark, +/area/science/misc_lab{ + name = "Research Observatory" + }) +"cRe" = ( +/obj/machinery/computer/upload/ai{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 1 + }, +/obj/effect/turf_decal/tile/blue{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/ai_monitored/turret_protected/ai) +"cRf" = ( +/obj/structure/window/reinforced/spawner/north, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/machinery/flasher{ + id = "ID"; + pixel_x = 24 + }, +/turf/open/floor/plasteel/dark, +/area/ai_monitored/turret_protected/ai) +"cRg" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/unary/portables_connector/visible, +/obj/machinery/portable_atmospherics/pump, +/obj/effect/turf_decal/tile/blue{ + dir = 8 + }, +/obj/machinery/light, +/turf/open/floor/plasteel/white/corner, +/area/engine/atmos) +"cRh" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"cRi" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/turf/open/floor/plasteel/dark/side, +/area/science/robotics/lab) +"cRj" = ( +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/turf/open/floor/plasteel/dark/side{ + dir = 6 + }, +/area/science/robotics/lab) +"cRk" = ( +/obj/structure/table, +/obj/machinery/cell_charger, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_y = 3; + pixel_x = 4 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000; + pixel_x = -6; + pixel_y = 6 + }, +/obj/item/stock_parts/cell/high{ + charge = 100; + maxcharge = 15000 + }, +/obj/machinery/button/door{ + id = "robotics3"; + name = "Shutters Control Button"; + pixel_x = 24; + pixel_y = -24; + req_access_txt = "29" + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cRl" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"cRm" = ( +/obj/effect/turf_decal/tile/red, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/machinery/light, +/obj/effect/turf_decal/stripes/red/full, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/structure/sign/poster/official/cleanliness{ + pixel_y = -32 + }, +/obj/machinery/disposal/bin{ + name = "Corpse Disposal Unit" + }, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"cRn" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"cRo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"cRp" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 5 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/landmark/start/roboticist, +/turf/open/floor/plasteel/dark, +/area/science/robotics/lab) +"cRq" = ( +/obj/machinery/rnd/production/circuit_imprinter/department/science, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cRr" = ( +/obj/machinery/droneDispenser, +/obj/item/stack/sheet/metal/fifty, +/obj/item/stack/sheet/glass/fifty, +/obj/effect/turf_decal/stripes/line{ + dir = 5; + layer = 2.03 + }, +/turf/open/floor/plasteel, +/area/science/robotics/lab) +"cRs" = ( +/obj/machinery/recharge_station, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 9 + }, +/obj/machinery/airalarm{ + dir = 4; + pixel_x = -22 + }, +/turf/open/floor/plating, +/area/ai_monitored/turret_protected/ai_upload_foyer) +"cRt" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/quartermaster/warehouse) +"cRu" = ( +/obj/effect/turf_decal/delivery, +/turf/open/floor/plasteel, +/area/science/mixing) +"cRv" = ( +/mob/living/simple_animal/opossum{ + desc = "Wubba lubba dub dub."; + name = "Rick" + }, +/turf/open/floor/plasteel/showroomfloor, +/area/medical/morgue) +"cRw" = ( +/obj/structure/table, +/obj/effect/turf_decal/tile/red{ + dir = 1 + }, +/obj/effect/turf_decal/tile/red{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/obj/item/paper/guides/cogstation/letter_med{ + pixel_y = 4 + }, +/obj/item/storage/backpack/duffelbag/med/surgery, +/turf/open/floor/plasteel/white, +/area/medical/medbay/zone2{ + name = "Medbay Treatment Center" + }) +"cVq" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/engine/atmos) +"cVO" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"dpO" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"dVR" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"dYm" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/turf/open/floor/engine, +/area/science/storage) +"eCy" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"eIh" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/red{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "N2O Outlet Pump" + }, +/turf/open/floor/plasteel/white/corner{ + dir = 1 + }, +/area/engine/atmos) +"eKM" = ( +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -30 + }, +/obj/machinery/atmospherics/pipe/manifold/supplymain/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"eTZ" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"eUF" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"fgS" = ( +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 1 + }, +/obj/effect/turf_decal/tile/purple{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Plasma Outlet Pump" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"fkx" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"fti" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"fui" = ( +/obj/machinery/atmospherics/pipe/simple/violet/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space) +"fuE" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 + }, +/turf/open/space/basic, +/area/space/nearstation) +"fuR" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/hidden, +/obj/item/radio/intercom{ + name = "Station Intercom (General)"; + pixel_x = 30 + }, +/turf/open/floor/plasteel, +/area/science/mixing) +"fIw" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"guK" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/open/space/basic, +/area/space) +"gDY" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 8; + name = "Fuel Pipe to Incinerator" + }, +/obj/machinery/light, +/obj/machinery/atmospherics/components/binary/pump/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"gGG" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"gVV" = ( +/obj/structure/window/reinforced{ + dir = 4; + layer = 2.9 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/open/floor/engine, +/area/science/storage) +"hcR" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/bridge) +"hiV" = ( +/obj/effect/turf_decal/tile/yellow{ + dir = 4 + }, +/obj/effect/turf_decal/tile/yellow{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"hlo" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"hlV" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 4 + }, +/turf/open/floor/plating/airless, +/area/space/nearstation) +"hDz" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/pipe/manifold/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"hFa" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/turf_decal/stripes/line{ + dir = 6 + }, +/turf/open/floor/engine, +/area/science/storage) +"hKC" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"hMZ" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Pure to Port" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"hXk" = ( +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, +/turf/closed/wall/r_wall, +/area/engine/engineering{ + name = "Engine Room" + }) +"ifC" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/manifold/orange/visible, +/turf/open/space/basic, +/area/space/nearstation) +"iAW" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"iQY" = ( +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/obj/structure/closet/firecloset, +/turf/open/floor/plasteel, +/area/engine/atmos) +"jiZ" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 5 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"jml" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + layer = 2.4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plasteel, +/area/engine/atmos) +"jon" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/freezer{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"jyu" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/open/space/basic, +/area/space/nearstation) +"jMO" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 8 + }, +/turf/closed/wall/r_wall, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"jXo" = ( +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 10 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"kxw" = ( +/obj/machinery/atmospherics/pipe/simple/violet/visible, +/turf/open/space/basic, +/area/space) +"kzb" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/hidden{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/bridge) +"kOG" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 1; + name = "Mix to Engine" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"lcD" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Air to Port" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"lRy" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"mkx" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"mqB" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"mxW" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"mBP" = ( +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/plasteel, +/area/science/mixing) +"mEa" = ( +/obj/machinery/atmospherics/pipe/manifold/cyan/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"mIm" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 4 + }, +/obj/effect/turf_decal/stripes/line{ + dir = 8 + }, +/obj/machinery/light{ + light_color = "#cee5d2" + }, +/turf/open/floor/engine, +/area/science/storage) +"mIT" = ( +/obj/structure/lattice/catwalk, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible, +/turf/open/space/basic, +/area/space/nearstation) +"mKP" = ( +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/tcommsat/computer) +"mNN" = ( +/obj/machinery/space_heater, +/obj/machinery/atmospherics/components/unary/vent_pump/on{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"ntC" = ( +/obj/machinery/atmospherics/components/binary/pump{ + name = "Port to Fuel Pipe" + }, +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"nvn" = ( +/obj/machinery/atmospherics/pipe/manifold/general/visible{ + dir = 1 + }, +/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"nAF" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + name = "Mix to Port" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"nBM" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"nEX" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"nLV" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/green/visible, +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"ony" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 4 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"opd" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/violet/visible{ + dir = 4 + }, +/turf/open/space/basic, +/area/space/nearstation) +"oMB" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/cyan/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden, +/turf/open/floor/plating, +/area/engine/atmos) +"pgu" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/orange/visible, +/turf/open/space/basic, +/area/space/nearstation) +"prx" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"qeq" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ + dir = 6 + }, +/turf/open/space/basic, +/area/space/nearstation) +"qgO" = ( +/obj/machinery/portable_atmospherics/scrubber, +/turf/open/floor/plasteel, +/area/engine/atmos) +"qlJ" = ( +/obj/structure/lattice/catwalk, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible, +/turf/open/space/basic, +/area/space/nearstation) +"qvB" = ( +/obj/machinery/atmospherics/components/unary/thermomachine/heater{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"qHL" = ( +/obj/effect/spawner/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/manifold/yellow/visible{ + dir = 1 + }, +/turf/open/floor/plating, +/area/engine/atmos) +"qWY" = ( +/obj/machinery/atmospherics/components/binary/pump/on{ + name = "Waste In" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"rdF" = ( +/obj/machinery/atmospherics/pipe/simple/dark/visible{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"rTW" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/violet/visible{ + dir = 6 + }, +/turf/open/space/basic, +/area/space/nearstation) +"rUl" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 8 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"sdp" = ( +/obj/structure/reagent_dispensers/foamtank, +/turf/open/floor/engine, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"sHB" = ( +/obj/machinery/atmospherics/pipe/manifold/orange/visible{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"sRD" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"sVC" = ( +/obj/structure/lattice/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/visible, +/turf/open/space/basic, +/area/space/nearstation) +"tjb" = ( +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/scrubbers/visible{ + dir = 9 + }, +/obj/machinery/meter, +/turf/open/floor/plating, +/area/engine/engineering{ + name = "Engine Room" + }) +"tpQ" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/violet/visible, +/turf/open/space/basic, +/area/space/nearstation) +"tuF" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 6 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"tyI" = ( +/obj/machinery/atmospherics/pipe/simple/supplymain/visible{ + dir = 4 + }, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"tXV" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4; + layer = 2.4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"tZj" = ( +/obj/structure/tank_dispenser{ + pixel_x = -1 + }, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"tZC" = ( +/obj/machinery/atmospherics/pipe/manifold4w/orange/visible, +/obj/machinery/meter, +/turf/open/floor/plasteel, +/area/engine/atmos) +"urj" = ( +/obj/machinery/atmospherics/pipe/simple/general/hidden{ + dir = 8; + icon_state = "intact" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/cyan/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel/dark, +/area/bridge) +"uwK" = ( +/obj/effect/turf_decal/stripes/line{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 6 + }, +/turf/open/floor/plasteel, +/area/engine/secure_construction{ + name = "Engineering Construction Area" + }) +"uAY" = ( +/obj/structure/table, +/obj/item/storage/belt/utility, +/obj/item/t_scanner, +/turf/open/floor/plasteel, +/area/engine/atmos) +"uVD" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 5 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"vcb" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden{ + dir = 10 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"vsO" = ( +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"vxU" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"wbu" = ( +/obj/machinery/atmospherics/pipe/simple/violet/visible, +/turf/closed/wall/r_wall, +/area/engine/atmos) +"wPS" = ( +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/simple/violet/visible{ + dir = 9 + }, +/turf/open/space/basic, +/area/space/nearstation) +"wWH" = ( +/obj/machinery/atmospherics/pipe/manifold4w/general/visible, +/turf/open/floor/plasteel, +/area/engine/atmos) +"xcO" = ( +/obj/effect/turf_decal/tile/green{ + dir = 4 + }, +/obj/effect/turf_decal/tile/green{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/green/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/components/binary/pump{ + dir = 0; + name = "Mix Outlet Pump" + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"xjk" = ( +/obj/machinery/atmospherics/components/binary/pump{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"xkC" = ( +/obj/machinery/atmospherics/pipe/simple/orange/visible{ + dir = 9 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"xoj" = ( +/obj/structure/table, +/obj/item/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/pen, +/turf/open/floor/plasteel, +/area/engine/atmos) +"xxP" = ( +/turf/closed/wall, +/area/quartermaster/storage) +"xCy" = ( +/obj/machinery/atmospherics/components/binary/pump, +/obj/machinery/atmospherics/pipe/simple/supplymain/hidden{ + dir = 4 + }, +/turf/open/floor/plasteel, +/area/engine/atmos) +"xKr" = ( +/obj/machinery/atmospherics/pipe/simple/yellow/visible{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/orange/hidden, +/turf/open/floor/plasteel, +/area/engine/atmos) (1,1,1) = {" -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaacpBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUabpaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUabpaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaabpaakaaraaraaraaraaraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUakNaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnMaavaaDaaYabrabDabEaavaavaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabFabJabJabJabJaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaakabMabMabMabRabMacMaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUahvabMabRabMabVabMabWabMabRabMaRvaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaWRabMabRabRabMabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaakabRacaaceaceacfaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacjacjacmacqabracracxacjaczaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacAacAacBabRabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaakabRacGaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUacJabMacWaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUadcabMabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklaaaaaaaaaaaaaaaaaUaakabMacGaaUaaaaaaaaaaaaaaaaddadfadfadfadfadfadhaaaaaUaaaaaUaaaaaaadjadjadjadjadjadjadjaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUadkadladwaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUadcabRabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaZGaaaaaUaaaaaaaaaaaaaaaadCaadaadaadaadaadadCaaaaaUaaUaaUaaaadjadjadFadFadFadFadFadjadjaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUadGabMadHaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUadLabMabZaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaadCaadaadaadaadaadadCadjadjadjadjadjadMadPadFadXadXadXadFadFadjaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaZGaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaZGaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaadjadjadjadCaadaadaadaadaadadCadYadYadYadYadYadMaepaeqaeuaeyaezaeAadFadjaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoaaoaaoaaoaaoaaoaaUaaUaaUaaoaaoaaoaaoaaoaaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaadjaeCaeRaeSaadaadaadaadaadafbafcaeRafcaeRaeRafeaeRafjafkadMafuaeAadFadjaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaOaaPaaPaaPaaPaaPaaTaaVabcabjabjabjabjabjacvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaadjafvafxadjaadaadaadaadaadadjafyadFafzafBafIafLafIafNafPadYafTaeAadFadjaaUaaaaaaaaaaaaaaUaaaaaaaaaaaxaaxaaxaaxaaaaaaaaaaaaaaaaaaaaaaaxaaxaaxaaxaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadoadoadoadoadoadoaaUaaVaaUadoadoadoadoadoadoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUadjadFagaadjaadaadaadaadaadadjagbadFagkagpagtadMagFadFagKagKagKadFadFadjaaUaaaaaaaaaaaaaaUaaaaaaaaaaaxaaXaaZabaaaaaaaaaaaaaaaaaaaaaaabaabbabgaaxaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaVaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaahaanaasaasaasaasaasaanaayaaaabpaaaaTdaaaabpaaaaaUadjagMafIagNaadaadaadaadaadagOadFadFagRagSagVadMadMadFadFadFadFadFadjadjaaaaaaaaaaaaaaaaaUaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaaaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaVaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaazaaAaaAaaAaaAaaAaaAaaAaazaaUaaUaaUaaUaaUaaUaaUaaUadjadjadjahLaadaadaadaadaadadjahMadFafzagpadFahQadMadjadjadjadjadjadjaaUaaaaaaaaaaaaaaaaaUaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaaaaaaaaaaaaaxabsabtaaxaaaaaaaaaaaUaaUaaUaaUaaUaaUaaoaaoaaoaaoaaoaaUaaoaaoaaoaaoaaoaaUaaUaaUaaVaaUaaoaaoaaoaaoaaoaaoaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabyXaaAaaCadBaaHablabkaaAbPoaaaaaUaaaaaUaaaaaUaaaaaUaaUaaaaaaahLaadaadaadaadaadadjahMadFahRagpadFahVadMaaUaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaapvaYpagdaYpaaxabuabKaaxaaaaaaaaaaaaaaaaaaaaaaaxabuabKaaxaYpagdaYpadqaaUaaVaaVaaVabcabjabjabjabjabjadxabjabjabjabjabjadxadxaaTaaVabcabjabjabjabjabjabjaaTaaVabcadxadyaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabyXaaAabnaaFaicaaFaboaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaUaaUaaaahLaadaadaadaadaadadjaieaigafzagpaihaiIadMaaUaaUaacabvchHabzacbabzaaiaaaaaaaaaapvcdccdccdcapvcqVcqVaaxaaUaaaaaaaaaaaaaaaaaUaaxcqVcqVapvcdccdccdcadqaaUaaVaaUaaUaaUadoadoadoadoadoaaUadoadoadoadoadoaaUaaUaaUaaVaaUadoadoadoadoadoadoaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyXaaAabqaaJaaFaaQabwaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaaaaUaaUahLadMaiMaiMaiMadMadMadMadMaiWaiXadMadMadMactactacEacPacSacXaftacPadeaaaaaaaaacrPcrQcrRcrRcrScsaabNaaxaaxaaaaaaaaaaaaaaaaaxaaxacgcsbcrScrRcrRcrTadqaaUaaVaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaVaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyXaaAabGabmaaFabAabPaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaaaajaajafDaajaajaamaapaaqaatbHXaiZajpajradmadtadtabQadvadUaefaenaghagzaefaevaaUaaUajwajwajFajFajFajwacsabLacRaaxaaxadnadqadnaaxaaxadrachadsadSadTadTadTaecaecabeaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaVaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyXaaAackacdacuabAacyaaAbPoaaaaaUaaaaaUaaaaaUaaaaaaaaaaajaaEafQaaIaaIaaIabdaaIabfabYajLajRajWaeHaeOaeOaeXaeOaeOafgafiagBadtacSactaaUajwajwajXakcakfakhajwaduadQabLaeaafOahZaibajhajmaeaachadQajKadSaeoaeEaeFafMaecaePaaVaaUaaUaaUaaUaaUaaUaaaaaaaaaaaoaaoaaoaaoaaoaaoaaUaaVaaUaaoaaoaaoaaoaaoaaoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaazaaAaaAaclaaAacCaaAaaAaazaaaaaUaaaaTxaaaaaUaaaaaaaaaaajacnageamiacoacwabTacFacFacFacFagjagnacFacFacFabUafWafWagfaggaimabBabCacQacQacQakiakkakmakhakhakxadQadQadQadQalaamPasyamPaoQadQadQadQadQaeWafmafmafpagxbEpagXahPahPaioaioahPahPaaUaaaaaaaaaaaOaaPaaPaaPaaPaaPaaTaaVabcabjabjabjabjabjacvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacOadaadbacDacUacZadbadaaegaaaakEbhyakEakPakEaaaaaaaaaaajacnageakXakXakXakXakXacIacVadgagqagwadJaekalealealealealeahjaimafEahYaiyaiDacQalgalialkalialpajwajwajwaQOadQabLaeaaeaaeaachadQacTadSadSadSaiAafmaiVajabEpajSahPaknakZalbalfahPaaUaaaaaaaaaadoadoadoadoadoadoaaUaaUaaUadoadoadoadoadoadoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUanUanUanUanUanUaaGadKadWanUanUanUanUakEalqakEalsakEaaaaaaaaaaajacnagyakXalAalEalOakXaemadiadiagqajJadiaesalealQalTalValeajfaimafEajgajkajqacQalYamnamHamRamTancanfajwaeiaeraetadQannadQadQadQafRadSaeGapoaptapTanvaoMbEpakgahPaJRbiOaKeafhahPaaUaaaaaaaaaaaaaaaaaUaaaaaaaaUaaUaTxaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUanUaaNaebanUaaRaehaeLasVaeQaeQaeVagvansalqanCanWakEbUobUoaajaajacnageakXaoeaoiaokakXaexaeTaeUagqahwafqafraleaolaomaonaleajfaimafEabIaqRarcacQaooaopaozajwajwajwajwajwatZaucaeKaykazGaykaFraFtapvadSadSadSbveadSaecaecbEpbvmakjbEgbEtbEwbEyahPaaUaaUaaUcjjcjjcjjcjjcjjaaaaoKaoSaoKaoTaoKaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaccaaSapcapQaqaaqfasOaeMaeMaeMaeMaeNapgapnappaprakEaaUaaUaajaauafwageakXapAapDakXakXahtafqaeUacHanQagYahialealeapNapOaleajfaimafEacQatsatJacQajwaqbajwajwawNaxeawNawNaFvapvafUaGZaagaGZaKgapvapvadVafdaxLafSbEuaxSagibEpahPahPahPbEAahPahPahPaaUaaaaaacjjcjkagGamOcjjaaUaoKaqeaoKaqyaoKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUanUauEauIauKawYauSauTadAaniadDadEabSaqEaqFaqHaqJakEacLacLaajahnacnafCaqVaqXarfarharjaRzaijagragsaUSaijailaruarzarAarCarDaAxaqsaFuaHraLbbmpahDbAtbEIagAbGcbGcbGcbGcbGcbGdagJaheaKnaelaKnahOaiFajbajdajIagZahKaifaifaifaifaifaifaoJaikbEBaizaaUaaUaaaaaacjjanbaiuafocjpaoKaoKaqearKarLaoKaoKaoKaoKarMarMarMarMaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUahgahgahgahgahyahyahgadOaguahEaedaewaewaewaewaewaewaewarRakEafsafFaajajHajNakKarSarUarZasbasebrBcdIalDalKckGbrBckHasfashasnasoasqalNaquaeOaeOaeBbGiasraeObGjalPaeOahIaeOaeObGlbGmampaiJbEGagQalRamlamramtajjafKaeZaixafaafKafKafKafKaiBassajlbGoaizaaUaaUaaUaaUcjjajoajvcjlcjpasAasEasQasZasZatdateatgathatiatlatlakzaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahgakpaksaktakuakyakAacNajxakQaflaeJafnafGafJafYagDaewajCahmaiTaipaajajYamSakGakXapAatpakXakXankadianjagqcwkadialralealeatrapOaleanoaimaeYaeYaeYaeYaeYaeYaffanAaffaffahzahzahAaffaffahzbEXajebqQabXaqLanHaqLaqLagmajMahaahbahcahdafKafKafKajPafAaizaizaizaizasdcjjajVakbcjjcjpatuatwatxatyatDatEatGatGatGarMarMarMarMaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUahgalwakYatIalyamIamQamZanaahEaflaeJagIagPagPagPahraewagHakoacobeVaajalBamSalCakXatNatTatYakXarJadiajJanRaBmamfavnaleauaaudaonaleanoaimaeYahBamsahFahGaeYahHaotahSahWaiwaiwaiQaiRaiSahzbEXakMaoxakdaoyaAQazraqLaqWakHahxahxahxahxahTahUafKalhahNahNahNamwamDahNahNanGanZbGqaoKaueatwaufaujaukaumauqaurauuatGarMaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaahgafHalFammaoqaodamaacNaguahEaflaeJaidagPagPagPaiHaewakCalxalGacoaajamjaoXaalakXauvauxauBakXamoanlajJapfaohaocapbaleauFauGauJaleanoawcaeYaiYahCapxapMapZaqGaqKajQajQajQaraardargartarIasganzanDaoAaoDaoGbwlaqLahXakHahxaiaahxahxahxaitafKaqNaiCaiCaiCaiCaiCaiCaiCaroarGbEfaoKauOatwauUauXatDavaatGatGatGatGarMaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaagWagWagWagWahgahgahgameaoRamBahgaqYaguahEaiKaewaewaiLajBaiLaewaewambbfacjoamdaajapeamSapeakXakXakXakXakXacFacFauMauQacFasJasJalealealealealeauZaxxaeYaeYakSakUakVaeYakWavoaxOayialLaysalIamuamvahzbEXakMaoxawtaojbvpbEnaqLaiUasPasTatmajsajDahxajEafaatoalzakealcaldafValHaiCavbavfavmaoKarMarMavpavqavsavsavxavzavBavDavsaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaahfahkahlahoahpahqapsakLaoVajyabSajzaguahEajAaeJajGajTakvakvakwaewamkaajaajaajaajaalamSaalavNavOavRavSavXavNaVDayDazzarlasJatBazLaALaAOaBzaBHaBLayNaBNaCkaCoaCpaqvaeYanyaCsanXanXanXanXanXamuakRahzbEXakMaoxaDbaDmaDFanJaqLafZakHahxalXatOatCahxamCafaautavtavtavuavZamKamKamLawbawfawbawbawbawgawiawjawlawpawpawxawxawxawpawpaaUaaUaaUaaUaaUahuahuahuahuahuahuahuahuaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaainainainaisaiEaiGagWakDaoYakFabSalMaguahEajAaeJalUanuanwanwaoBaewauHbNMaGccitaviciuaDEaDUawyawzawCawCawFavNaxPayDazzayXasJaBUaCjaCwasJaEUbGzbnHaAAawNaeYaoraoraoraeYaosaFoaoCaoCaoCaoCaoCapiapjaffaXvapqaFpaqLaqLaFkaqLaqLaglakHahsahxaylahxahxahxanFaywazxaDDaDDaGYaHcaDDaQZawIawUawIawIaxaaxbaxdaxnaxqaxDaxEaxUaxUaxYaygawpaaUaaUaaUahuahuahuallalmalnalnalmalJahuahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaKaaKaaKaaKaaKaaKaaKaaKaaKaaKaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaUainaklakqakragWamhapuawGawZaxKaqfaqzaewaeJaewaskaymakvakwaewapecivbNTciwaalaalamSaalavNaypayqayraytavNaCAayDazzaDjasJaDkaDlaPiasJaGDayuaxhaBMawNaeYaeYaeYaeYaeYapkaotaplaqhaqiarmaqhahJatAaffbEMaqZaHhanBajiaHhawhafKapWbhjafKarxbmlbmrbvobvobvqbDBbEvaqpaqxaqQbEHaqpaqxamcamcamNamNamcamcayvayxayBayEayHayLayPayZazaawpaaaaaaaaUahuamUamVamVamVamVamVamVamVamVamWahuaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaLaaMaaMaaMaaMaaMaaMaaMaaMaaMaeeabhaaUaaaaaaaaaaaaaaaaaaaaaainainainakOakTaljagWaBAaeDaxWaEyaxXasVatVavgavFawHayFazNakvaqDaewcivcixciycizaalapeamSbGHavNazbazpazAazCavNbGMaIeazzbGNasJbGOaIhaPiasJaJFaimanqaCqanqanqanIanLanPanqatQaotahJahJahJahJahJahJatKaffbEOavTaJSalSaKsaKBamxamyamzbEJaGRamFarybPuamMaImafKbSubZMauiawvaycazVaAgbvwagUawVanMaiianOamcazDazHavbawpazMazOazUazWazYawpaaaaaaaaUahuaovamVamVamVamVamVamVaowamVaoIahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaabiabiabiabiabiabiabiabiabiabiaaUabhaaUaaaaaaaaaaaaaaaaaabfqaltahkalvahoaAdariasFarqarTasjaySazkaCtaCWaewaeJaewaCXaDeakvaewaewavGavGcnFciBaalamjaKRaalavNavNavNaAfavNavNavNaLgazzbGRasJbGSaLBbGTasJaJFaimanqaDxanTaofaoLaoUaqPanqatLaotcpdahJahJatMapPahJaqgaffbEPavTaMyaMCaNlaNuaNUaODamzcfSaAaafKafKciNapWapWaAacjmavtaAmbvrbvAbvCbCJbvwairaoOaoOaoOarnamcayvaAraAsawpaAtaAuaAEaATaBcawpaaUaaUaaUapCapEapFapIapIapJapKamVamVamVamVapXahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabhaaUaaaaaaaaaaaaaaaaaaaaaagWagWagWalWatqamgainawJaaSawRabSacNagEaECaxiaeJaxjaEEaDeakvayhaxkaxlaxmbGUbGVbGWaCMapYaOHaBkaBlaBoaBraBtaBwavNaEoaUAbHbasJasJaVEasJasJaJFaimanqapyanTcpqanTanTapzanqatkaotahJahJazKaAlaAlaAlaCOaffamEaCNaxGapRapUaouaqjaqlaqmbEJareakaatRclyarsarvakaasmavdbvwbDnbZNcbQcjnbvwaZKaqqaoOaqraqtamcaBDaAraBJawpawpawpawpaBOawpawpapCapCapCapCaqBaqCbswbsAaqCaqBaqIamVaqIamVaqIapCamJaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabhaaUaaaaaaaaaaaaaaaaaaaaaaaaaaUagWamXatHamXainawJaNMaxoabSacNatUaELatWaeJayQaEEaDeaAhaewaszaCuaCCbHlbHmacobHdbRaaalavNaBPaBQaBRaBZaBZaChbnJboHbvdbvtaDzbyRbHjbHkaJFaimanqarVanTasaasaanTasKanqbBdbCOaqGaqGbDobDObFLbFLbFMahzaspavTaJSatPatPaouajiawBamzcmlcmocmAcmCaCvcwNaubatSaqobDpbDqbDrbDsbDsbDtantanNaqqaoOaSRatXamcaCxaCIawpawpaFlaCPaCRaCSaCTaCYaqCaugaunauoaupadIauwauyauzaqBaqBauAaveaveavkapCaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaKaaKaaKaaKaaKaaKaaKaaKaaKaaKaaUabhaaUaaUaaUaaUaaUaaUaaUaaUaqwabxagWagWanUanUanUanUanUanUanUazlaAVaBaaCEaewaewaESaETaewaewaewaewaCKaoFaLuapHafXcjOarbaDaaDcaDdaDfaDdaDoaDpbHobDZbHqaDvarkbHrbHsbHkaHaaimanqapyanTaoLbEzanTapzanqbFNahJbEDbEEbFKbFLcqibFLbFPahzauhavTaHhajiajiajiajiboOamzamAavPakaaSUcwZazRazSakaaAobDvaulbDxaaBbDzbDAaoNawDavhaoOawEayVazFaDwaDyawxaDAaDCaDGaDHaDJaDKaDQaxraxsaxsaxyaxsaxHaxJazsazsazIaGOauyauyaIRaJqahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUagLaeeabhaaLaaMaaMaaMaaMaaMaaMaaMaaMaaMaeeabhaaUaaUabxabxaiNaiNaiNaiNabxaiOaiPaiOanUaCraEwaHbaHNaIlaIVaJwauVaGGaCHaDWaDYaGTaHgaEWaUyaGVaFGaFZasWataaoFatcatcatcaDSaBQaBQaDZaEdaDoaDpbHqbEFbHfbHubHvbHvbHwbHkaHpaimanqaxganTanTbESanTbtkanqatMahJbETbFQbFKbFLbEUbFObFMahzayGaAbaHhazmaBTaBWaFVaApaAqamAaAWakaakaakaaBGaBGaqlbDiaiCbDAbDCaEgaNebDAaJHaoOazXaoOaoOaJJaJYaElaEnaEraEtaxUcPraEzaEBaEGaEHaAMaANaANaBdaBnaBBaBEaBEaBEbrnauyauybXHauybrpahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUabiabiabiabiabiabiabiabiabiabiaaUaiqabxajuaiNaiNaoWarrakBaluaCdamqanVaobasLaKdasXasYatjanUanUanUaGPaHHanUaewaewaHTaHSalUalUakvaIzaewatzataauPauWaVratcaDSaEJaEKaENaEOaEPavNbHfbHxbHfbHyaPFaPFaPFaPFaHpaimanqceuanTanTbESanTcevanqbFRahJbETbFSbFTbFUbFVbFUbFWaffaNXavTaHhazmbuPaBXaivaCnbGaamAaDqakaaERaEXaEYaEZaFaaFbaFdbDAbDFbDGbDHbDAanSazTaCVaFIbrxbrCbrDaFgaFsaFxaFAaFBaFDaFHaFJaFKaFLaqCbscbsdaJIbbRbsgauyauybsjaqBaqBbskbsmbsmbsnapCaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaLaoHaoPaluaslapSaDOaDTaDTaDVavWauLbUAasLaLJaNjaNGayfanUayjanUblsaIsanUaInaewaJtaLfakvakvaLvaewaewavJatabGfavLavMatcaDSaFMaFMaFMaFMaFMaDSarwbHkarwbHBaPFbGpbGsaHtaIJaEhanqanqcexceybGvcexanqanqaffahzbGwahzaffahzbGxahzaffaffaEAaCNaCzaCBaCDaCFaMjamAbGGaMlaNnakaaFOaFQaFRaFSaFWaGfaGjbDAbDEbDIbDAbDAamcbsocraamcamcbsqbsraGkaAraGlaGmawxawpaGwawpawpawpapCapCapCapCaqBaqCbswbsAaqCaqBaqIamVaqIamVaqIapCamJaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUajcabxaqMaiNaiNasHatnatvaGyaEpawdawrawkaziazjaNJaNVaznanUanUanUaKOaJyanUaewaewaJNaJOaKaaymalUaPZawQawSawTbHhaxwavLatcaByazPazQaAeaAjaAjaAUaBgaBhaBiaAjaJAaAjaAjaKcaLcaEqbIDbIDbNpbRFccgbRFccqcczcfebRFchQaAjaAjaAjchWaCmazPakabviavTaHhazmbvlbuXamAbvDbGGbcWbvhakaaGFaGIaGUaHdaHmaHwaHBbDAbDKbDKbDAaHCaHXaIbaIpaItaIwaIyaIBaIWaIYaIZaIZaIZaJaaJbaJsaJPaKbaaUaaUaaUapCapEbsBbsmbsmbsCbsEamVamVamVamVbsFahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaayeayeayeayeayeayeayeaaaaaaaaaaaaaaaaaaaaaaaaaaKaaKaaKaaKaaKaaKaaKaaKaaKaaKaaUabhaaUaaUabxabxabxawmawoawuaEsawKawMajUasLaphaphaBbaBeaBfaBjaLwaLxaKtaPXaFGaQfaQgaQiaKwaQgaQAaQYayOazBaAkcqdcqHcswcsAcwfaFfaFiaFCaIkaFCaFCaGgaGxaGxaGxaGxaGSaGxaGxaMoaMGaHuaHuaFCaFCaFCaFCaFCaHvaIkaEucAVcAWcAWcAWcAXaExazPakabvFavTaHhaRMbvZbAhbDuamycAYbvHaqlakaaKfaKfaKmaKraKfaKuaKzavmavmavmavmaKWaLdaLeaLhaLjaLjaLoaLjaLqaLraLraLraLraLraLtaLzaLCaKbaaaaaaaaUahuaovamVamVamVamVamVamVamVamVaoIahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaEfaaUaaaaaaaaaaaUcepaaaaaaaaaaaaaaaaaaaaaaaaaaLaaMaaMaaMaaMaaMaaMaaMaaMaaMaeeabhaaUaaUaaUaaUaaUaxcatvauLaIoaxfasLasLanUasLasLanUbzxanUanUabSayRaKCabSaewaSXakvalUalUakvaSZaTaaBxaBCcjNcBbbhNaBKaCacBcaIucBecAWcBfcBgcBhcBhcBhcBhcBhcBhcBhcBhcBicBjaQSaGraGraFFaFFagoaFFaFFaFFaIUaJcaJcaJCaJQaKDcBoaGJaGQaCebvLaHlcBqbarbasbatbatbascBqbvLaCeaLUaMbaMbaMcaMfaMraMEaMMaMOaMTaMWaNsaNtaNEaNPaOfaOgaOjaOmaOyaOGamGamGamGamGamGamYamYamYamYaaaaaaaaUahuamUamVamVamVamVamVamVamVamVbsHahuaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIakIakIakIakIakIakIaaaaaaaaaaaaaaaaaaaaaaaaabiabiabiabiabiabiabiabiabiabiaaUabhaaUaaaaaaaaaaaUawmaxpawuaEsawKaxuaxvaxzaxAaxBabSaxCaTpaxNaxTayCaLnayIaewaewaewaewaewaewaewaewaoFatcatcaFPaICaIDaCacBuaKJaEvaHkcBvaIjaHsaHsaHsaHsaHsaHsaHsaHsaHtcBwaWraOJaOTaOUaOUaOTaOUaOUaOTaOXaPaaOTaOTaHOaLTaMwaNmaNvaNBaXnaNYaRTaSDaSDaSDaSDaSDaRTaXnaYKaNEaPlaPxaPxaPyaPAaPCaPGaLraLraLraLraLraPJaPLaPQandamYamYamYamYamGaneanpaneanpanYanpaoaamYaaUaaUaaUahuahuahubsJbsKalnalnbsKalJahuahuahuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUakIadpadZajZahhajnakIaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabhaaUaaaaaaaaaaaUayJatvauLaNZaOKaOLaOWaPjaPkaPnaPvaPYaQbaQbaQbaQEaQHaQMayTayUayUayWazcazfaAPaDiaHRaIFaIGaKiaDPaLXaIdcBEaKJaEvaIiaIjaHsaHsaaUaaUaaUaaUaaUaaUaaUaDMcBFaWuaOTaPSaQtaQuaQzaQBaQIaQPaQQaQRaQXaRcaRBaSoaSpcBKcBLaDhcBMcBNcBOcBPcBQcBPcBRcBNcBScBMaDraRdaRfaLjaRgaRiaLjaRkaRnaRsaRtaRKaRNaRNaRNaRPaRSaoEaoZaqdapwapaapLanpaBSaztaBSaztaBSayAamYamYamYaaUaaUaaUahuahuahuahuahuahuahuahuaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIajtchhanxaCfaLHakIaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabhaaUaaaaaaaaaaaUaqwazyaAcatvaAiasLaAnayMaMpaAvabSaAzaaSaaSaaSaMZaMqaSxaROaSQaSQaSQaSQaCbaEcbGYccMaJvaRUaMNaPsaSJaIxcKDcKEaEvaHQaHsaHsaaUaaUaaaaaaaaaaaaaaaaaaaDMcBFaWuaOTaSbaSfaSfaSfaSfaSfaSfaSfaSzaSEaOTaIOaSPaTAaJrbhRakabDScbZccabDVccbbDXcbZccacBUbDYaciacKadRanhaGHaqcaPxaSIaSOaSSaTeamYaSeamGamGaKqamYamYanpaneanpaneanpaneaBSazuayyazuaBSazvazwazZaAwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIchicMfakJakIakIakIaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUabhaaUaGqaGqaGqaGqaGqaGqaGqaGqceCasLaAScCPaOnaOOaPDaOhaQlbpoaAYaAZaQmaTFaBIaABaTgaABaABaFTbjBaDXaDXaJZaDXaQwaGhaHZaJxcBoaKJaEvaHQaHsaaUaaUaaaaaaaaaaaaaaaaaaaaaaDMcBFaWuaOTaTiaTjaTvaTwaTvaTvaTvaTvaTzaTCaOTaTGaTIaTKaTGaTMaqlbERbEabEabEbcBVcBWcBXcBXcBYbEdaqnaHLarXazoaIfaqnaTNaSIaUaandamYamYaACaADaneaLMaAFaAGaneaBSaBSaBSaBSaztaBSaAHayyazuaBSaBpamYamYamYaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIarWaxFaAIaAJaAKaGaaEaaEaaEaaEbaEaaEaaEaaEaaEaaEaaEaaEbaEaaEaaEaaEaaEaaEaaEaaEbaEaaDnaEeaXjaFEaJLaJMaJXaGqaARasLaCcaCgaCiaClabSaCGaguaAXavjaCLaShaUvaDsaDtaDuaDBaDLbjVasLaIqaJUaLYaYIcoUcsnatcaVccBZaKJaEvaHQaHsaaUaaaaaaaaaaEQaEQaEVaEVaEQaEQcBFaWuaOUaUdaTvaTvaTvaTvaTvaTvaTvaTzaUeaOTaUjaUlaUmaUnaTMaqlaqlamyamyaUqaUwaUqamyamyaqnaqnaqnaINaKjaKpaLsaciavmaUJaUNamYaBqaBsaADaBsanpaMuaMvaneanpaBVayyayyaBuaBvayyaBvaBSaBvayyaCyaHKaKIaCJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUakIaHoaIMaMxcMpaRCcMKaXmcMKcMKayaaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaPTaLKaUzaZqbdzaURurjbdEbdJaEmaFjaFjaFmaFjaFjaFjbpXaSkaEDaSNabSaTRaVzbfwasLasLasLasLbpWasLatcatcaNAatcatcatcatcaydcCbaKJaEvaJTaHsaaUaaaaaaaaaaEQaFwaFyaFzaHnaDMcBFaWuaOUaTiaTvaTvaTvaUUaTvaTvaUWaVbaVfaOUaViaVnaVoaVpaTGaaaaaaaaaaaUaVsaVxaVsaaUaaaacKcCdaRjaMKaVyaNDaRAaciaVHaVUaWfamYaCQaneanpawPcsyaNyaDIaEiaDIaEkaEjbvEaEjaEjaEjaEkbAZaEkaEIaEMaMRaKMamYaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIbuVmKPcnnaYaaHjbxoaXsaHEaThbabaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaGqbDPbDQbDRbEccbXcenceoaGzaFjaFXaGKaGbaZTaFjaGoaUgaVwaVIaVOaWSaWeaYoaYraYqaYqaYqaZObfmaYqaYqbkFaVQaVVaVZaydcfRcCeaKJaEvaHQaHsaaUaaaaaaaaaaEQaDRaGdaGeaWtaDMcCfbbQaOTaWsaTvaTvaTvaTvaTvaTvaTvaTzaVfaOUaWDaWLaWNaWTaTGaaaaaaaaaaaUaVsaWUaVsaaUaaaacKaREaNDaOcaRxaNDbkTaciaWXaVUaWYamYaFeanpaneanpaBsaSdaBsaADaBsaBVayyayyaBuaFhayyayzaFnayzayyaFqaMUaBSaCJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIbxucrzbxxakIakIakIbxCakIakIaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaPUaGqaGqhcRaKFkzbaGqaGqaGqaGsaFjaGtcCWcCXaGvaLaaAzblYaBFaBFaKhbpSaTFaKoasLaXuaXuaXuaXuaXAaXuaXuaXuaWaaSgaXLaydaLlcCeaKJaEvaHQaHsaaUaaaaaaaaaaEQaDMaDMaDMaWzaDMaHGaWAaXPaYbaYiaYjaYMaYjaZaaZcaZcaZgaSEaOTaZhaWLaZkaZlaTGaaaaaaaaaaaUaVsaZmaVsaaUaaaacKaSYaVXaSAaSFaWHaWJaXQaZFaZHaZLamYaCJaCJaCJaCJaCJaTqaADaBsaADaBSaBSaBSaBSaKNaBSazuaFYazuaNaaNbaQVaBSaCJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIakIcMfbxDakIbxAakIakIakIaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaPVaPWaTHaKHaGLaGMaLmaGWaGXcvKaKYaOpbmcbnWbrGbGnbLpcjRcjScjTaKxaKyanUanUaWCanUanUaZUaZVaZWaZXaZYbaabajaXuaWaaXMcqNaydaydcCeaKJaEvaHQaHsaaUaaUaaUaaUaEQaLVaMgaUKaWWaXaaXbaXdaOTbanbaUbanbbibanbbibbHaVfaVfbcdaOTaTGbcebcgaTGaTGaaaaaaaaaaaUaVsaWUaVsaaUaaaaqnacKanKaToaTraHxaHzaHyanKbchbcqamYbFnbFnbGebFnaCJaVYaBsaADaBsaADaBsaADaBsaADaBSazuaFYazuaSCaGAamYaCJaCJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUakIbxBbxEbxIaNChiVbbkbeCakIaaUayeaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbikaHDbRDcQQcQQcQQcQRaHIaHMaHMaHMaOZaHPcjWaGuaHWbEVaFjanUaLkaLLanUanUaLWaXiaaSabSaZVaZVaZVbcrbctbcLbcPbcUcCVaYqaYqchJcDkcDlaXKaMHaHQaHtaHYaHYaHYaHYaHYaDNaIaaGeaIcbdbaVCbreaOTbddbdhbdlaOTbdOaOTbdPbdPbdWbdYbdPaaUaaaaaaaaUaaaaaaaaaaaaaaUaVsaVxaVsaaUaaaaaaaaaanKaTtarHascbtbbDcaHzbeabcqamYbFnbFnbFnbFnamYaJjaGBaMVaHeaHfaHiaHJaGBaGNaLGaKNaFnaKNaSCaBsaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIbxQbxWbxJbxvcvIbxXbxYakIaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaPVcQSaIgaHFaHFaHFaHFaMiaILaHMcnpaHMaPuaHPaFjaMhbaKaIraFjaMYaNdaNfaNkabSaaSaXOaMPabSbebbebbebbeObePbeSbfgaXuaYtaYtaYtaOoaydcCnaYwaMSaOzaNpaHYaTLaVgaIvaHYaDNaGEalZalZalZalZalZaOJaOJaOJaOJaOTbfvbfybdPbfFbfJbfMbdPaaUaaaaaaaaUaaaaaaaaaaVsaVsaUqbfOaUqaVsaVsaaaaaaaHAaTJaVaaWnaWnaWwaWxbfSbgbbvuaJdaJdaJdaJdbvuaJdbsSaNqaJdaJdaJkamYaJfaJgaJhaJmaJoaADaTBaADaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaaakIbxZbyabybbyfbybbygbyhakIaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaIAaHFaHFaIEaIHaIIaQhaKvaIPaIQaHMaOZaITaFjaFmaFjaFjaFjaNKaNLaNNaNLabSabSaYSabSabSaNOaNSbebbeObePbgmbgyaXuaBYbaBbaHbaMaydcCpaYVaNIaHtaHtaHYaVAaQFaIvaHYaDNaGEalZalZaogaogapBaogaogaogalZaOJbfvbgJbgRbhabhcbhgbhlcuAaaaaaaaaUaaaaaaaVsaVsbhqbhvaVxbhObidaVsaVsaaaaHAbsRaIKbvGbvRaWyaTrbiXaSOaJdaJibfHaJlbDeaJdbtmbvTaOibmIaJdaJdaJdaJdamYaLNamYaLPaMeaUxaMFaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibybbybbybbyjbybbybbybbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaJeaJnaIEaJuaJzabOaQNaGnaJBaJGaHMaOZaJKaGqaOraSsaOsaGnaNLaNLaNLaNLaNLaLZaZMaOvaNLaNLaOwbebbebbjvbjCbjDbjDaOBaOBbcRbcRbGIcCqbaJaOSbGIaPbaHYaWibbaaJWaHYaDNaGEalZaogapBapGaxVaxVayKaogapBaOJbfvbjLbdPbdPbdPbdPbdPcuyaaUaaUaaUaaUaaUaVsbjObjYbkaaWUbkabkvbkwaVsaaUanKbCGaKkaKlbCIaYmboAbkKbkQaKQaKUbdqaKVaKXaKQbdobdpbdpaZibcobdmbdsbdwaOtaOuaQyaMJbdBbdXbdnaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayecrBbyibyibykbybbylbybbymbyibyicrCayeaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaLEaHFaIEaKAaKEaKGaRaaKKaHMaKLaHMaOZaKPbdQaKSbWeaIPbfAaPoaPqaPqaPqaPzaPBbbpaPHaPqaPqaPqaPMcDpcDqcDraNOaQnaNOaQoaPraPraPwaRbbcfaQDbGIbGIaHYaWobcKaHYaHYaDgaLialZaogaFcaFNaGpbfjbfkaxVaogaOJbkWblDaOJabpabpabpabpbccbrsbrsabpabpabpaUqbmkbkabkabmsbkabkabmtaVsanKanKbCKaTUbCQbDJaYDcAFbmAbmBaJdcCsbetbfzbetbfBbetcAJbfKbfLaJdaLAbfQbfTbfVcCtbgobgpbgrbhVbdnaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibynbynbynbynbynbynbynbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaLyaHFaIEbhBaLIaReaRlaLQaHMbPtaHMaSaaSiaSBaSWcPsaTfaTuaTDaUCaUCaUCaUGaUVbcNbcQbdxbexbcQbcQbeLbhzbhWbcQbcQbcQbixbiCbiCbmCbjUbkebkPbkUblmblnblrbmgaRQaTbaUMaUTaHUaxVbfjaxVaxVaxVaxVaHVaogbmFbmJbmKaPNaPNaPNaPNaPNbcOaPRaQpaQqaQraQrbmObmUbmVbnbbndbnobnwbnBbnBcALcAMcANcAOcAPcAMaYEbCLbnEbnFaKQaLDbmubmxbmXbrtbsecARbsWbtMaJdaJdbugaJdamYbeAamYbuTbuUbuYbdnaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibypbyqbyxbynbyybyzbyAbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaMQaJnaIEaMXaMXaXSaXTaGnaNgaNiaHMaSaaYhaGqcDsbdSaYyaGnaNLaNLaNLaNLaNLaYBaYJaUCaYOaNLaNLaNLaRmccQccRaNLaNLaNLbcSbeJbeJaYPaYQbmqaZJaZJbaqbmyaXqbmDaYeaWvbflbaIaHUaxVaxVaLOcsCaxVaxVaRraogbnTbnSboibesbesbesbeybesbescuxcuxbesbesbeDaUqbokbkaboVboXboZbkabmtaVsanKbCMbCNcCAanKbCPaYFboAbchbpcaJdaLRaUsaLpaLSaJdaMdbuZcCBbvfaJdaMkbuLaMkaMsaMtamYcCCbyobMmbdnaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibyBbynbynbynbynbynbyCbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabikaNFaHFcsDaIEaIEbbbbbcbbdaSWaSWaSWbbecsraNRaNRaNRbbfaNRaNKaNLaNLaTOaNLbbgaNLaNLaNLaTOaTYaNLaNLccSaNLaUDaUEaULaQobftbftbftbgcbmLbeJbGIbGIaNTbbjbmRaNTaNTaOaaObalZaogaxVaxVaxVaxVbfjaxVaogbnTbofbsxaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUcuyaVsbprbpsbptbpHbpJbrAbpZaVsaaUanKanKanKanKboAbeQanKaSIbqaaJdaJdbuQaMLaMLbvuaJdaJdaJdaJdbvuaMkbuLaMkaMsaNwamYbuNapVamYaCJaCJaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUbyibyGbyHbynbyIbynbyJbyKbyiaaUayeaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacQTcQUaPpaHFaHFaHFaHFbbDbbGaHMaHMaHMbnGaNRaNRbiqaPtbsfaNRaVjaVjaVlaTPaVubcHaVJaVJaVLbhhaWkaWlaXwaXBaXGaXRaXRaXRaXRbdgbdgbcRbgdbgubeJbGIaPbaNTbdabnKaUOaNTaPIaPKalZaogapBaRLaxVaxVaxVaogapBaRJaQJaaUbQeayeayeayebQeaaaaaaaaaaaaaaacuyaVsaVsangaRFangapdangaVsaVsaaaaaaaaaaaUarEaYCbjwbqbbqkbnFbqlaZDbvkaZebaYbAObdAbhebhibhwbdAbdAbhCbdAbhDbhEbfXbDjbgjaMsaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibyLclDbynclEbynclFclGbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbikcQVcQWcQXcQYcQQcQZbitbiFbjubjJbkAblfblyblAaYRbnIaNRaNRaNRaYTaYTaYTbnZaYWaYXaYTaYTaXRaXRaXRaYYaXRaXRaQGaQKaQLaaaaaUbdgbgdbeJbeJbGIbGIaNTbolbnLaQUaNTaPIaPKalZalZaogaogapBaogapBaogalZaRJaQJaaUayeaaUaaUaaUayeaaaaaaaaaaaaaaacuzcuAaVsangcogcohbfIangaVsaaaaaaaaaaaaaaUatfbrfbwuavmbrgbrhbribwEbwFbhFbwObxcbxgbxpbyMbyObxpbxpbySbzQaOAbtgbtrburbuubuIaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibyBbynbynbynbynbynbyCbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacQTcQSaGqaQWaQWaQWcDtcDuaQWaQWaGqaGqaNRbjFbqhcsEaRoaRwbaoaNRaXfbaAbaCbqibaFbaDbaGaYTazdaRIaRWaScawOcjyaRWaRWcjqaaaaaUbdgbgGbeJbeJcrrbgLaNTaSlaSmaSnaNTaPIaPKaStbvvalZalZalZaSGaSHaSHaSHchmaQJaaUbQeaaUaWjaaUayeaaUaaaaaaaaaaaaaaacuzcuAangbntcfyclHangaaaaaaaaaaaaaaaaaUaKTattbnlbrjbrybrEbrWbIXbVibXcbEibFdbvsbvxblPbBbbvsbvIaMncclbvNbvObvPbvSbvVaMsaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyiclIclJclKbynclLclMclNbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUbkCbmjbaPcDwcDxbuMbuOaaUaaUbuRbydbuGbvJbAnbCebDkbEmbFHbFIcPtbIlbIrbIVbbMbbPaTSaTSaTSaTTaUcaTSbsbbzTaQLaaaaaUbdgbgdbeJbeJbjjbGIaNTaNTaNTaNTaNTaPIaPKaStaUhaUhaUhaStaRhaStaZzaaaaaUaQJaaUayeaaUaWjaaUayeaaaaaaaaaaaaaaaaaaaaacuyangangbvbangangaaaaaaaaaaaaaaaaaUarEattbwpbsObtqbttbtucsBcvJbhGcwtczNaMAaMAaMAaMAaMAaMBaMDczOaMsbwbbwcbweaMsaMsaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUayeaaUbyibynbynbynbynbynbynbynbyiaaUayeaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkCbBtbCdbEqbFybAXbuOaaaaaabKpaUBbIWaUFbKGaNRaNRaNRaYTaYTbcsbcJbcxbKgaZAaYTaRWaRWaRWaUHcjqaQLaUIcnqaQLaaaaaUbdgbgdbeJbtGbjjbdgaaaaaaaaaaaaaStaPIaPKaStcjMaUPaUQaStaRqaStaaUaaaaaUaQJaaUaaUaWjaWjaWjaaUaaUaaUaaUaaUaaUaaUaaUcuzcuBcuCaRuaRXaaUaaaaaaaaaaaaarEarEarEattbwMavmavmbtJbsObwjbwnbhHczQczRczSczTczUbtcaNcaMAbEjczVbmoaMsbmoaMsaMsaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyiclPclQclRcrDclSclTclUbyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaQWcDBcjQcpscDCbENaQWaaUaaabKJbKKbKKbKKbLeaNRaaUaaUaaUaYTaYTbOYcvZcwaaYTaYTbcRbcRbcRbcXbcRaUXaUYaVecjqaaaaaUbdgbgdbeJbeJbjjbdgaaaaaaaaaaaaaStaTnaVmbjAaVvbCCaVMchoaRqaTsaaUaaaaaUaRZaSqaSqaSuaSvaWjaWjaTyaWjaWjaTyaWjaWjaWjaWjaWjcuDaSvaSwaaUaaaaaaaaaaaaarEbGJattbtPbxqbVzaMIbmSaMIbmWbmWbhLczXbuhbuWbvaczYczZbvQaMAbvUczVcAacAbbwkbmWaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaayeaaabyibyibyibyibyibyibyibyibyiaaaayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkCbLhbLkbMhbOJbOLbuOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdgbdjbdrbdrbdrbdybdgbdNbcRbdUbelbcRaZEbewaRHaQLaaaaaUbdgbgdbeJbeJbjjbdgaaUaaUaaUaaUaStaPIbtRaVvaVvaZbaVNaStaRqchoaaUaaaaaUaaUaaUaaUaRZaSuaWjbtwbtTbtZbudbtTbtwaaUaaUaaUaaUcuDaSyaSMaaUaaaaaaaaUaaUarEbFecqrbwobytbVKaMIbwqaMIbEQbwsbiocAdbwvbwxbwycAecAfcAgcAhcAicAjcAkcAlbwHbwIbCUbCVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaacrEaaaaaUaaaaaaaaaaaUaaacrFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQWaQWaVPbRbaVRaQWaQWaaaaaabdgbdgbdgbdgbdgbdgbdgbdgbdgbdgbeFbeJbeJbeJbeMbdgbeJcmdbeJcplbcRaVSaUYaVeaQLaQLaQLbcRboobeJbeJbIPbGIaStaStaStaStaStaPIaPKchobuebuebuebueaRqaStaaUaaaaaaaaaaaabtTbtTbukbtTbuqbtTbusbuEbtTbuqbtTbtTaaaaaacuyaSwaaUaaUaaUaaUaaUaWjarEatfarEarEbyubGXbwWbwXaMIbxbaNWbiDcAnbxhaMAbxibFzbVHbxraMAaMAbxsbxybhAbxGaMIaMIaMIaVTaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaayeayeayeayeayeayeayeayeayeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaQWcptbOQbBjaQWaaUaaUaaUbdgbeNbeRbeJbeJbeJbeJbeJbeJbeJbeJbeJbeTbfdbfdbJybfdbfdbfdbfibcRbcRaWbaWcaTSaTSaTSbgNbTwbiSbiWbjebjhbjkbjkbjkbjkbjkbjpbjHaWqbuebvcbvgbuebvzbueaRvaWRbtTbvBbtTbtTbwhbwzbwBbwCbwLbwQbwSbwTbwZbxabtTbtTbtTcuEaTkaTlaTlaTlaTlaTlaTlbxPbxSbyvbAdbAzcbRbwWbwXbAkaNWbxdcAqcArbyPaMAcCEcAsbwAbyYbzfbzgbzlbzibgPbzmceGceGceHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabkCbORbOSbRcbuOaaaaaaaaabdgbgxbeJbeJbeJbeJbbIbeJbeJbeJbeJbeJbbIbeJbeJcaWbeJbgzbeJbgAbgEbgFaRWaRWaRWaRWaRWbgFbgEbjRbqdbqnbqFbqGbqGbqGbqGbqGbqWbrcbrobxfbysbyEbyFbyZbzDaaUaaabzEbzFbzMbzPbAebAibAmbArbwLbBkbBvbBBbBCbBFbBHbBVbBXcuDaQJaaUaaUaaUaaUaaUaWjarEbzobANarEceQceSbwWbzLaMIcCFbBKbkEbkLbkNaMAcAwcAxbAjcvPbApaMAbkgcAybzObAxbAKbAKaMIbALaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaTxaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabVNbXIcbibXIcbpaaaaaaaaabdgbdgbdgaXkbdgbdgbdgbdgbdgaXkbdgbdgbdgbdgbdgbdgbdgbgxbiibLHbLJbcRbcRbcRbcRbcRbcRbcRcoOcCGbcfbjjbGIaWBaWBaWBaWBaWBaUhbkVbwabBYbCcbCubCwbCybCEaaUaaabtZbCRbCTbCZbDDbEebEhbExbEYbFabFbbGbbGkbGybtTbtTbtTcuyaQJaaUaaaaaaaaaaaUaMIaMIaMIaMIaMIcgTbmWaMIbwXaMIbmWbASbmWbmWbmNaWEaWFbhUaMBaMBaMBaMBbPqbTUcaDbBhaMIbASaMIaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbGKabMbGPaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUbdgbjgbdgaaUaaUaaUbdgbjgbdgaaUaaUaaUaaUaaUbdgbdgcoPbjibLVbLXcpcbcRbjGbjXbkubcRbkxbUwbwUbkxaWBaWBaWGaWIaWIaWBaWBaVvbwYbuebGZbHabuebvzbueaRvaWRbtTbtTbHcbKlbKrbKLbLobMzbMBbMIbMSbMWbNfbNkbNlbNnbtZcuyaQJaaUaaaaaaaaaaaacgdcgXcgYcgZchachcchvchwbBpbznbznbCqbBqbBrbngbznbBDbiNbznbznbznbznbznbznbznbBGaMIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbGKabRbNoaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpCcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdgaXlbdgaaaaaaaaabdgaXlbdgaaaaaaaaaaaUaaaaaUbdgbdgblibfibLYbjjbcRblkcpnbllbcRblocCGbcfblCbslaWKaWMaWOaWPaWQaWBbkRbwYbuebNNbOBbOCbOVaStaaUaaaaaabtTbQtbQWbRlbREbSzbSDbSFbSIbBvbTFbBvbUcbvBbtTbtTcuEaQJaaUaaaaaaaaaaWRbwWbimbwWcifcigbmYbwWbwWbwWaMDbwWbwWbwWbwWbnMbwWbmSbiYbwWbjzbxGbwWbwWaMDbjzbAKaMIaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbUeabMbNoaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacutaaaaaaaaUaWZaWZaWZaWZaWZaWZaWZblEbLYbjjbcRblFblJblKbcRblocCGbcfblOcjJaXoaXrbPzaXyaXzaWBaWBbwYbuebuebuebueaRqaStaaUaaaaaabvBbUgbUpbULbUYbVabVubVAbXpbXMbXMbXMbXMbXMbYfaaacuyaQJaaUaaaaaaaaaaaabeEcikcilcimcckccIcinciqciqciqciqciqciqciqbohciqciMbnecgYcgZbxFbxFbyWbzhciGciOcjcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbScbScbWcccadlccfabMaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaXCaXDaXEaZfaVGaWZbBWaVdbmhbmibmnbmZbmnbnabncbpxbCibnraXHaXIaXJbQfaXNaXUaXVaXWbClaXYaXZaYdchocjDaStaaUaaaaaabtTcchccibtTccjbtTbvBbtTbtTbvBbtTccnccobtTbtTaaUcuyaQJaaUaaaaaaaaaaaUbwWbwWbwWcmDbwWbmYaMDbwWbwWbwWbwWbwWaMDbwWbpIbwWbmScAzbwWbzHbxGaMDbCBbwWbAKbAKaMIaRvaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaWRabMabRabMabRccrccsabMaaaaaaaaaaaacpBaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaYgaYkaYkaYkbnuaWZbgAbLYbnvbnxbnzbnAbnDbnPbnRcCGbcfblOcbAaYnaXraYsaXyaYuaYvaWBbCnbCoaXXaYxaStbnUaStaStaaUaaUbtTccybtZbtTaSwaaUaaUaaUaaUbvMbtTccAccEbtTaaUaaUcuDaRZaSubghbszbszbszbszbsTbwWciSciVanmarpciVciVciVciVciVciVciVbqgciVciXbqfcilbJSbXsbELbICcihciVciVcntaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaccHccJaaDaaYccOccPabMaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaYzaYkaYAaYkbnVboeawwbQgboubpnbpwbpybpCbpFbpGcCHbCpblOcbHcdacjGcjZckgckYaYNaZdaWdaWdaWdaWdckIbxmaWdcpGaSqaSqcjEaSqaSqcjEaaWabyabyabyabHacYbtTccybtZbtTaVtaTlcuGaVKaYUbGQaTlaTlaTlaTlbGQbCjbCjbCjasubCkbwWbwWbwWbwWbwWbwWbwWbqubwWbmYbqHbmWbmWciibAKbVjaMIaMIbASaMIaaUaaUaaUaaUaaUaaUrTWopdopdopdopdopdopdopdopdopdopdopdopdopdopdopdopdopdbGhaaUaaUaaUaaUcdbabMcdiaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaZfaYkaYkaYkaYlaWZawLbQwbQxbQxbQxbQIbQxbQYbQxbRfbcfblOckZaZjaXraYsaXyaZnaWBaWBaStchoaZoaZoaStbnsaStaStaaUaaUaaUaaUbghbszbszbszbszbszbAAadzcjFaTlaTlcjFadNqeqeUFcxacxbbITcxccxccxccxcbHeanranranranraqkaaUaaUaaUaaUaaUaaUaMDbrabrrbrPbrYbCtbmWcjgbjzcipaMIaaaaaaaaaaaaaaaaaaaaaaaaaaatpQaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUbHgaaaaaaaaaaaUbGKabRbNoaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaZraZsbegaYgaZuaWZaGCbLYbqjbqAbllbllbllbqKbqYcCGbcfbafaZvaZwaXraYsaXyaZxaWBaaUaaUaaUaaUaaUbrsbxnbrsaaUaaaaaaaaaaaabIYaaUaaaaaaaaaaaabMKbszbMXbszbszbMXbszbPhbszbPrbszbPXaaaaaaatFatFbHAbHObHObHObHObRnbsTaaaaaaaaaaaaaaabwWbwWbCrbrXbsiaMIaMIcjiaMIcpEaMIbJjbJvbJvbJvbJvbJvbJvbJvbJvwPSaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxbHgbalaaaaaaaaUcdqabMbNoaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaWZaWZaWZaWZaWZaWZaWZaONbLYbjjaZyaZCaZIbazaZybrMcCHbCsbRsbRPbRQbRUbSVaXybEsaWBaaabunbupavvavvavvavyavvavvavvbuvbuxaaabIYaaUaaaaaaaaaaaaaZpaaacdtcdGcdUcdtaaaguKaejsVCaejaaUaaaaaaatFausausaOPausausatFqlJbRoaaaaaaaaaaaaaaaaaabwWcwvbshbsvaMIaaUaaaaZGaaabLwbLSbMpbMpbMpbMpbMpbMpbMpbMpbMtaXxbcabRKbcaaXxbSbbSibSbaXxbTHbTIbTHaXxbTKbTLbTKaXxbHgbalaaaaaaaaUaaaaZGaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaabdgbaZbdgaaaaaaaaabdgbaZbdgaaaaaaaaaaaUaaaaaUbdgbdgbeJaGCbLYbjjaZybczbeGaZNaZybwrcCGbcfbxkaWBaZQaZRaZSaZZbacaWBaaUbxlajOajOajOajOaloajOajOajOajObxlaaUbRocdVaaaaaaaaaaaaceqaaUcdtcercescdtaaUhXkagcaNHagCatFaRDatFatFausbcMbiublXausatFqlJbRpbszbszbszbszbszbsTaaUbAQbsubsyaaaaaUaaaaaaaaabMMkxwcwAcwwcwwcwwcwwcwwcwwcwwpguaXxbcabcabcaaXxbSbbWpbSbaXxbTHbXebTHaXxbTKbXRbTKaXxtpQaaUaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaUaaUaaUbdgbjgbdgaaUaaUaaUbdgbjgbdgaaUaaUaaUaaUaaUbdgbdgbyVbSWbTubTybjjaZybadbaebCSaZybkxbUwbwUbkxaWBaWBaWIaWGbagaWBaWBaaaawqajOaGibCvavYawnaxZazeaGiajOazqaaabIYcdVayeayeayeayecetcdtcdtcewcescdtcdthXkagTbErbEKatFciTciUcmhauscmicmjcmkausatFbcGanrcJxanranranranrbHeanrbxtbxKbsyaaaaaUaaaaaaaaabMMkxwcwAbMYbMZcpMbNbbjEbkHcwwpguaXxcatbZIcKQaXxcKRbZLcKSaXxcKTbZOcKUaXxcKVbZPcKWaXxbHgbalaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaabdgbdgbdgbhSbdgbdgbdgbdgbdgbhSbdgbdgbdgbdgbdgbdgbdgbeJbzBbUybUCaZyaZyaZybahchPbakbakbrIbVJbCDbjjbDNaWBaWBaWBaWBaWBayeaaUawqajOaxIaxIajOaISajOazJaxIajOaCUaaUbRocdVaaUaaUaaUaaUcetceKceLceMceNceOcePcJpbFgcJAcJBcJCcJDcJEcmpauscmqcmrcmsausatFcmtbcIcJFbcIbcIbcIaaUbRoaWjbzpbDbbTJaaaaaUaaaaaaaaabMMkxwcwAbMYbMZbNabNbbNqblzcwwpguaXxcKXbZRcKYaXxcKXbZRcKYaXxcKXbZRcKYaXxcKXbZRcKYaXxbHgbalaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaabdgbECbeJbeJbeJcoQcmdbeJbeJbeJbeJbeJcmdbeJbeJcaWbeJbeJbgAbJGbVQbVUbVVbavbaRbaSbAIbawblocCGbcfbFAcpvbGIaaaaaaaaaaaaaaaaaaawqajOaxIaNhajOaNoajOaNraIXajOaCUaaabIYcdVceRceRceRceRcetceKceTceVceWceXceKhXkapmaqOapmatFcmucJGatFcmwauscmxausausatFauRbgwbRAsdpaXpbcIaaabRpbUjbUVsVCbsIbfWbfWbgibgibgiifCbPAbgMbPBbPCbPJbPLbQKbNdcwwgGGbfWbQNbfWbQObfWbQNbfWbQObfWbQNfuEcLarTWbQSopdbQVopdwPSbalaaaaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaabdgbgxbeRbeJbeJbeJbeJbeJbeJbeJbeJceIbeTbfdbfdbJybfdbfdbWfaZyaZyaZybWgbWhbWibWjbWkbWwbWEbWFbcfbjjbDNbGIaaaaaaaaaaaaaaaaaaawqajOaGiaNzaOIaJpaPfbCFaGiajOaCUaaabIYcdVcfacffcfacffcetcdVcdVasUcJvaeIaeIhXkaqSanEaqTatFatFcJIatFatFatFatFatFatFatFaYLbgwcJJbUXbVbcwycwzaaabVDcafcdpbRvbJvopdfuifuifuibJvwPScwAxojuAYbRCcwBqgObNEcwwvsOtuFnLVqHLonycwwcLbcwAcLccwwcLbbWKcLcwbucLbcwAcLccwwaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaabdgbdgbdgbdgbdgbdgbdgbdgbdgbGIbGIbGIbGIbdgbdgbdgbGIblcbXmaZybTpbJmaWgcsGaWhbaScdEaZyblocCGbcfbIPbGIbGIaaaaaaaaaaaaaaaaaaawqajOajObDwbDUbDWbEZbDwajOajOaCUaaabIYcdVcfocfocfocfpcfrcftcfuarBmkxaQxarNtjbarPanEarQarOarYcJKasiasvaqUcfvastasIaqUcfwbgwbsXbgwcfxbcIaaacwDaaabamsVCbsDaaaaaUaaaaaaaaaaaUaaacwAcwxcwFcwGcwBchOcwwcwwchSlRycLdeTZxcObUacLecLfeIhbhJcLhcLifgScLgcLjcalcLkcwwaWjaWjaWjaWjaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbXPbXVbXVbXVbXVbXVbXVbYdbYPbZQaZybRebbmbbobQAcmNbbrbbsaZybGrcfzbGtbGAbdgaaUaaaaaaaaaaaaaaaaaaawqajObFfbFvbGgbGBbGDbPKcReajOaCUaaabIYcdVcfpcfAcfBcfCcfEcfFcdVaswcJwasDarFasxcphanEcpiasCawWcJLasiasNasGasIasIasIasMbapbdkcJMuwKbhsjMOjyujyucPzcPAcPBbwwcwIcwJcwKcwIcwKcwJcwIcwLcPCcwMcPDcwBcpNcpOcwwcpQftiftivcbhKCcMrcMocMocarcMocMoxKrcarkOGcMocLlctkcwwcwwcwwbFYaWjabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbGIcoSbWqaZybawbawbawaZyaZyaZyaZyaZybIZcCGbJBbGEbdgaaUaaaaaaaaaaaaaaaaaaawqajOaPEbHpbIFaHqbJkbKxaZPajObbuaaabIYcdVcfCcfHcfHcfIcfJcfKcdVatbcJNasRasSasSasSaQTasSasSasScJOcJPcJQcJRcJScJTcJUcfLcJWcJXcJYbhmbmmbcIaaaaaaaaabamsVCbsDaaaaaUaaaaaaaaaaaUcwAcwAcwwcwwbVEbVXbWGbWGcIscfMcfPcfTuVDcVOsRDhMZiAWtXViAWiAWnvniAWdVRqvBcLsprxcfVcJmcJmcJnaWjaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdgbdgbGIaXcccNaXgbZAaXebZCbZVbaEbJCbKRbZHbVIcCGblBbLgbGIaaUaaaaaaaaaaaaaaaaaaaOeaQabaWbLmbLzbkibLCbmvbmHaQaaQjaaabIYcdVcdVcfWcfWcdVcdVcgbcdVavlasRasRauCauDauNaybaTQauYavcasRasRavAawsclxcJZavwaqUbcIbcIbcIbcIbcIbcIaaaaaaaaabYlbZpcPEcbGcbGcbGcbGcbGbWJcbIcbLcbNcgecbTeKMcRgcJotyIcbUmEacggmqBsRDcMonAFfIwtZjcJucJucJujonxCycghcLsvxUcwwcwwcwwcwwaWjaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaceDbuBbjgbzbaXcceibfdcfQchUcjvbZJbRZbZKcnNbZHblocCHcCIbMGbGIbGIbGIaaaaaaaaaaaaaaaaQvajOaYZajObNebPpcRfajOaYZajOajOcjHbRpcgicglcgocgocgpcgucgwcdVaMaaweavEavHawXavKaxtavUazEawaaOQaweazhaqUawAcKabRdaqUbbFbbJbbJbbLaaUaaUaaUaaUaaUbamsVCcPFaaUaaUaaaaaaaaamITcwAcwAcwwcwwcwwcwwjiZcMHcMJjXocLVcgxdpOcMecgzlcDwWHjmliAWhloiAWxjksHBcgAcLscLWcwwaWjaWjaWjaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabdgbdgbGIaXcccNbjgbZAcjwaYcbZFbZFbZFbZFbZAaYHcCGblBbPRbGIaSVbGIaaUaaUaaUaaUaaUaaUajObeuajOajObPUbPVajObhtbmMajOaaaaaacgDcgRcgScgUchbchgchjchkcrvasSavQaxMaxQaxRaCZaynayoclAbevclBaOdaqUchlcKbazgaqUbbNbbFbbLbbNaaaaaaaaaaaaaaabamsVCcPFaaaaaUaaaaaaaaacJranrbdRaaUaaUbhIbhIbhIbhIcLXcLmchnchptZCcaicaicaintCcVqcJHcJHcJHcaixkCchqcLsccGcwwaWjbalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbdgaXcccNbUtbZAcjwbZFcpucsHcjxcCJcCKcCLcCMblBbGEbGIbGIaRybqXbqXbqXbqXbqXbqXaRybeKaRybQbbQibQTaRybcYbcZbdiaaUaaUcdVchrchrchschtchsaXFchuaOEasSavQaxMbeHaAyaRGaFUbCbaLFcbJasSaOMaMzaNxcKcaNQaqUbbNbbNbbNbbNaaaaaaaaaaaaaaabamsVCcnQaaaaaUaaaaTxaaaaaUaaamITaaacakbhIbhIcLYcLZcMacMbeCychxqWYrdFfkxfkxnEXcMccMdcMecMecMgcMecMhcLscMicwwaWjbalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaabdgceEbdgaaaaaaaaaaaaaaUbdgaXcccNbaibqBckebaybaxbaybaycnPbZHaYHcCGbRgbRybRBbRWbSkbSrbSsbSsbSsbSsbStbSObTXbUicnRbUUbVqbVCcydbVFbWmbWvbWvchychzchAchschtchBchDcdVaQcasSavQaxMaxQaOkaOlaOqayoaxMaOxasSaOCchEchFchGchIchKbbObbNbbNbbNaaaaaaaaaaaaaaacJgcJqcJsaaabbTcmHbbTcppbbTaaUmITaaacamcancaocapcaqcMjcaschLchMrUlcMkcMlmNNhDzcMmcMncMocMocMqcMrcMqcMsiQYcwwaWjbalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaabdgbjgbdgaaUaaUaaUaaUaaUbdgaXcccNbaVbZSclubZUceabKwbaXbZSbZSbGIcCNbWHbSAbGIbgYaRybqXbqXbqXbqXbqXbqXaRybWIaRycJtcNCcPGcRhcRsbTScjIaaUaaUchNchXchYchZciacibcidcdVclzasSavQaxMaZtaORaOVaOYbeiaxMaPcaPdaPeciecirciDciHchKbbLbbNbbNbbNbbVbbVbbVciIbbVbbXcRtbBLaaabbTcrhbbTcgjbbTaaUmITaaacakbhIbhIcMtcLZcMucMbcMvgDYcMwceUcMxcLocLpcMycMzcLqcMAcMBcMCcMDcMEcMFcwwaWjbalaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbGIceFbGIbGIbGIbdgbdgbdgbGIaXcccNcKFbZScmPcnWbZXbZHbZHbZSbSBbTtcoMbWMbTwbTtcgCbGIaaUaaUaaUaaUaaUaaUbfhbWNbfhbfhbWPbfhbfhcgFcgGcgHaaaaaabWQcdVciYciZcjhcjscjucdVaMaavCbemaPhavIaPmavQaPOavVaPPbeqavCclCcjKcjLcjUcjXckmbcbbbObcbbbObbVbfNbggbgvbbVbbXbvWbBLbbVbbTbVxbbTcgkbbTaaUmITaaaaaaaaabhIcaubhIcMGcMHcMIjiZcfscMJcMJnBMoMBcMLcMJnBMcMNcMLcMLcMMcMNcMOcwwaaUaaUaaUbalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaabGIbeJbeJbeJbeJbeJbeJbeJbeJaXccoZbbnbZSclwbbqccYbZHaaUbGIbTTbGIcprbZrcwWbGIbTTbGIaaaaaaaaaaaaaaacgIcgJcbjbfhbrbcbVcbYbfhbfhbfhcgNaaUaaUbWQcdVcktckuckwckyckzckAaQdaQeaQeaQkbeIaPmcmXaPOaQscrsaQeaQeaQCckmckBckCckFckmaaUbbVciIbclbbVbhkbgKbhkbbVbcnbvXbCmbhubbTbVwbbUcgjbbTaaUcJranranranranranranranranranrhlVcMPcxccxccfDmxWcLaaaUcKZaaUcMQcMRcMSaaUcMSaaUaaUbalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaabGIbeJcisbbIbeJcoRbeJbeJbbKaXcblOcKGbZSbZZbcpcabbZHaaaaaabTWbutcpxcdebTYbutbTZaaaaaaaaaaaaaaaaaacgNbyecdfcdhbzNbzRcdnbBRbBSbEocgOaZBaZBcdockJclYcmfcmgcmEcmGcmYcksckxasRasSasSbBoaRpbCWasSasSasRaRRaRVcnhcnocnrcnsckmckmckmbjIbAabhkbhkbhkbhkbhkcnvbwdbwgbhrbbTbVybcVbcjbbTbbTaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaXxcKXbZRcKYaXxcKXbZRcKYaXxcMTbZRcMTaXxaaabalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaabGIbGIbGIbGIbGIbdgbdgbdgbGIbGIbGIbGIbZSbZHbZHbZHbZHaaaaaabTWbutcpxcmFbTYbutbTZaaaaaaaaaaaaaaaaaacgNcmIcnybzNbzNcvBcpfcqfcqhcqmcgNaaaaaaaPgcdVcnxcnKcofcokcoTcdVcrvcqPaSKaSKaSLaTmbkJbvYbwJcpjcrwcpjcJlckmcpacpkcpocpAcpFciebkBbkMbwibwtbwGbxebwtbxLbxUbzCbbTbbTbVwcrdcgjbdTbbTaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaXxcLtcaycLuaXxcLvcaFcLwaXxcLxcaJcLyaXxaaabalaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaabTWbutcpxcrkbTYbutbTZaaaaaaaaaaaaaaaaaacgNbXabXkbYTbYUbOzbYUbYXbXkbZacgNaaaaaaaPgcdVcpKcnKcofcokcpLcdVcrxcrlaSraTWaTZaUbaUfasBbfnaUraUtaSrckockmcpRcpScpTcpUcpVckmbmPbjablNbjabjabjabBicpWbBTboCbdZbkmcwcbejbenbeXbbTbbTbbTbffbfCbfCbfCbfCbffaaUaaUaaUaaUaaUaXxbkZcaKbkZaXxblLcaLblLaXxcpXbpqblMaXxaaUaaUaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaabTWbutcpxcmFbTYbutbTZaaaaaaaaaaaaaaaaaacgNbfhcgLbYScgMcwdcgMbYScvCbfhcgNaaaaaacetcdVcdVcdVcpYcdVcpZcdVaeIcsQaeIaVBaWVbARaeIbARaXhbmTbpKaeIaeIckmcqacqccqncqocqpcqqbKjbKBbKXbLnbLvbLAbLObLPbLQbLRbrRbrVbuzbejbejbeUbfEbgkbEkbgQbfbbgSbgUbUSbfCaaaaaaaaaaaaaaaaXxbkZcaMbkZaXxblLcaNblLaXxblMcaSblMaXxaaaaaUaaUbalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaabTWbutcpxcmFbTYbutbTZaaaaaaaaaaaaaaaaaaaPgbfhcvDcvEbYYbYZbYYcvEcvDbfhaPgaaaaaabpLbpNbBEbBOcwqbBObBObBObBOcqsbxzcqucqvbnfbnpbnqcqwcqxcqybQqbpvckmckmcqAcqCcqDcqEckmbbVbclciIbbVbbVbbVbbVbuHbLTbTxbbTcPHbAubfscqFbeUbihbbTbfDbffcmWbGLcngbAvbffaaUaaUaaUaaUaaUaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaXxaaabalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaafaawaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaUaaUaaaaaaaaaaaabTWbutcpxcwUbTYbutbTZaaaaaaaaaaaaaaaaaaaPgbfhcvFbYSbZbbZcbRxbYScvFbfhaPgaaaaaabBObCabCabUBcwVbPvcxdbSmbSncqGbwPbwRbwVbwRcmObEWbSxbwPbEWcqIcqJcqKckmcqLcqMcqOcrbcrmbfGbfGbfGbfGbfGbfGbTVbBzbQhbUbbUfbfUbCxbfYbfZbeUbkbbkdbVdbgQbicbipbCHbPWbfCaaaaaUaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaabalaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaawaafbgDaafaawaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcwbcwbcwbcwbcybcybcybcybcybQeayechCbrscnIaaUaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaUkaUkaUkaUkbmEbUqcrVcATcwXbUqbUrbUqaaaaaaaaaaaaaaacgPcgJcgJcgJcgJcgQcgJcgJcgJcgJcgKaaUaaUbBObSobSpbSqcAUcBdcBdcBkcBlcrtcBncBxcBycBxcfUbQFbQGbQHbQFbQMcdgcrucsqcsscstckmckmckmbgebgebbVbbVbbVciJbgfbPYbLTbUhbbTbFDbPZbejbejbeUbkjbbTbkXbffcbkctzbRucBzbffaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbalbalbalaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaabnjaawacpacpacpaawbnjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaUZcRubdebeebdfbdtbecbedbcyaaUaaUabpbrscnJaaUaaUaaUaaUaaUaaUaaUaUkaTVaUiaUiaUiaTVaTVaTVaTVaUiaTVaTVaUkbmGbwKbmGbUubUvcrYcBAcqYbUvbUzbUqaaUaaUaaUaaUaaUaaUaaUaaUbfhbfhbZebfhbfhaaUaaUaaUaaaaaabBObSvbSwbVfcfhcficfjcfkbSncdmcBHcBIcBJcCRcmmcahcbdcdjcdkcdlcdscszckmckmckmckmbglbgnbgBbgebgHbgIbjfbUkbTkbUdbLTbUmbbTbgObUlblabABbLubkYcpmbUTbfCbfCbfCbUKbUMbfCbgTbgVbgTbgTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaUaaaaaaaaaaaabalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaawaawacpbefbehbFracpaawaawaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbcwbcwbcwbcwmBPctjbekboJbcyaaUaaUabpbrsbgWbgWbgWbgXbgXbgXbgWbgWbgWaUoaUpaUuaUuaVhaTVaVkaVqciCaYfbHHaUkbmGbAFbmGaUkbUqcrZcCTbUEbUqbUqbUqaaaaaaaaaaaaaaaaaUaaaaaaaaUbfhbZebfhaaUaaaaaaaTxaaaaaabBOcflcflcfmcoscfmcflcflcflctlctEctGcdycdzcricdAcdBcdCbmQcducdvcdwbUNbUObUGbjZbglbhnbhobgebhpbDlbkhbUHbURcdxcdFbUZbbTcqtbVcbVhbVkbVrbVsbVGbXwbYMbYNcbOccuccXbijbhZbhZbilbgTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaabalbalbalaaUbalbalbalaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaafbHZbJMcrGbKHcrHacpcrGcrHaaaaaabbvaaaaaaaaabbvbbvaaaaaaaaabbvaaaaaaaaabbvbbvaaabbvaaaaaabbvaaabbvaaaaaaaaaaaaaaaaaaaaabbvbbvaaaaaabbvbbvaaaaaaaaaaaabYgcrIcrJbUFblHfuRbcyaaUaaUabpbrsbgWbincfgbAwbiBcsFbiGbiIbgWaVWaWmcnuaWmbiPaTVbfubfxbzzbeoaWpcnmbmGbmGbmGaXtbaLcsJcCUbaObaQbbhaaaaaaaaaaaaaaaaaaaaUaaaaaaaaUbfhbZebfhaaUaaaaaactGctJctKctGctXcuucuwcuFcuHcuIcuJcuKcuLcuMctGcuNcPIcdHcPJbiLbiQbiRcdNbiQbiQbiVcdRcfnblqbjbcuObjcbgebjdcuPblubVgcfOcgabVlbVmbUPbUQctectfctgcthcticgnchdbjobgTcgEchechfbhKbhKbhKbjqbjrbgTbgTaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaawaawacpcrKcrLcrMacpaawaawaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUbcybcybcybcyblTbOvbnmbzXbcybcwbcwbcybcwbgWbjsbjtbiAbiAcsNcvecqBcslcDHcDHcDIcDHcDHbAccsucuQcvMcuQczfczzcDNcDNcDNcDKcDOcDPcCYcDRcuRcuRcuRcuRcuRaaaaaaaaaaaUaaaaaaaaUbfhbZebfhaaUaaaaaactGcuScuTctGcuUcuVcuVcvacvbcuVcvccuVcvdcvgcvhcvicdJcdKcdLbkDcjYbjyciKbXfbiQcKgciLconbCzbjbbhnbjKbgebZibjMciIbVncjacgqbZdcbMbbTcvjcvkbkccjdcjecjecjeckibkkbgTbklckrckObknbknbkpbkqbkrbksbktaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcpCcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaabnjaawacpacpacpaawbnjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcnUbdcbfpbfobqJbfobwNbAlbgCbdfcnLbiKbiTbgWbgWbepbiAcDSbiAbkyczAcAQbbSbcBcDTbOtbcCbrwcAScpPctscwecoIaUkbmGbmGbmGaXtbblbUIcCUbFccvlcvmcvncvpcuRcuRcuRcuRcuRcuRaRvaaUbfhcjrbfhaaUaWRctGctGcvqcuTcvrcwrcwEcuVcypcvdcyvcyzcyzcApcBacBmcBBcdMcPucmvcopcotcouctdbkGbiQcLncLrcoobCzbkIbhnbkIbgeboGccWccZcfdcjacgqcfXcfYbbTcDgcDmbcVctmcsvctoblbcttctxctActBctCckOcnwbknbhKbldbleblgblhcqXaaaaaaaaaaaaaaaaaabljaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaawaafbLBaafaawaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcnUbyccwYblGbBNblIbJYboLbdfbdfbdfbdfbdfbnkbgWbVebiAcDUbiAbiAcBtbgWaUkaTVaTVaTVaTVaTVcDVaTVaTVaTVaTVaUkaUkaUkaUkbwmbbAbUIcCUbFccvlcDncDocFYcFZcGacGfcGgcGhcHZaaaaaUbrsbrLbrsaaUaaacIhcIicIqcuTctGcIrcuVcuVcuVcvdcuVcuVcuVcvdcJkcJycvicdJcdrcdLbkDbltcsdcwCcwPbiQcLzcwQcwRcgccicciccsmcwScxecgscgscgsbojbzwciPcJzcJVcKdcvkbcVblQbcVbcVblRblSblVbgVblWbVockObknbknblZbiwxxPbgTbgTaaaaaaaaaaaaaaaaaaaaaabpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaafaawaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcnUbdcbODbfobKIbfobLEbAGboRbpMbpRbpRbpRbqIbmbbVpbmdcDWcsLbiAcsxbgWbVLbVMbQZbIgbInbVMcDXbVRbVMbVSbVTbWabWrbWcbWbbWabbWbVBcCZcDacKecKfcLBcLEcLJcuRcLKcLOcLOcLQaaaaaUbrsbrLbrsaaUaaactJcLRcMUcMVctGcMWcMXcMYcMZcNacNbcNccNdcNecNfcNgcuNcdObqwcdQbiLcsebyrbmwctnbiQbmzbPxbPycxicxjcDicxkcxlcxmcxncxocxpcxqcxrcjBcjCbbTbenctpbnhbbwbbybcVbnibnnbnybgVcxscxtcxubhKbhKbhKbldbnCcgmblhaaaaaaaaaaaaaaaaaaaaabljaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUbZWbcybcybcybOrbWSbOEcnTbDLbFpbJwbJTbwDbHFbgWcsfcsIcDYcDjcDjcDvcEbcEccEdcEdcEebINcEfcEgcEhcEfcEicEjcEkcElbWocEmcEncEocEpcDQcErcNhcNicNjcNkcNlcNmcNncuRcuRcuRbbhbbhbcTbVWbcTbbhbbhctGctGcvrcNoctGctGctGctGcvrcNpcNqcNrcNscNtcNucNscNvcPKcdScPLboabobbobbobbobbocbiVbodbVYcAAbiVbiVbiVbiVbgfbgfbgfckqcxvcxwcgtbhrbbTborctqbnhbcibckbcmbcAbcAbdKbgTbosbVZchfbovbowboBboBboDboEboFaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaUaaaaaabcwbJYboQboQbvjbLcbLlbLxbDMbgWbgWbgWbgWcDycDybgWbgWbXrbWscsOcEsbIObWxbWxbWybWzcEtbWAbWabWBbWCbWLbWRbblbUIcEqbPQcNwcvlcvlcuRcuRcuRcuRcuRcvLbdCbdDbdFbdDbVWcIvcIwcIxcIycIycIwcIzcIycIAbdGbdHbdGberbeWbyTbeYbeZbSycIBbhTbbYbUsbUDbhTcjzbhYbiabibbzVcdPbeWbWncAIbiebdHcvNbdIcICbBUbgfbgfbgfcxxbclckvbbTbcVbkXbcVbcibdMbdVbdMbdMbmabgVbgVbgVcxybgVbgTbgVbgVbgTbgTbgTaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUbcwcKIcKJcKJcKKcKLcKMcKNbOubOvjyubOwbOxbPlbWTbWUbWVbWWbWscEucEvbIQaabbSEbufbSEcEwbSGbSEbSEbSEbSEbSHcoBcqecIDcIEcIFcIFcIFcIFcIGcIHcIFcIFcIIcIJcIKcILcIMcINcIObjmbjmbjmbjmbjmbWObjWcIPcIMcIMcIMcIQcIMcIRcIMcIScITcIMcIMcIMcIUcIVcIWbjmbXWbXXbXXbYmbXXbXXbYOcAZbZlbWObjmcNxbjmbnNbezbeBbrQcxzbfcbdVbrQbfectrbcAbfPbdMbdMbdMbdMbfRboMboNboIcxAboIboPboIaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUcNycNzcNzcNzcNzcNyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUaaUaaaaaaaaUaaabcwcbPbAPbAPbAUbAVbQXbWtbWubWSbXgbcybcybXxbXhbXlbXhbXhbXhbXhcExbIRbXockRbJubSKcEybSLbSMbSNbYVbSPbSGbblcqgbZmcEzccpccpccpccpccwcgvcgBcgBcgBcgBcgBciFciWcjVcgBcgBcgBcgBcmncgBcIXcKOcIYcoacoicgBcgBcgBcojcgBcozcoDbXXbXXbZlcoLcoNcIZcIMcJacIMcIMcJbcIMcIMcJccJdcqQcqRbXXbXXbXXcrccxBcxCcxCcxDbgsbgtbgtbgtbZwbgZcqjbhbcqkcNAbdMbhdboSboTboUcxEboWboYboIboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaacNzcNBcNBcNBcNBcNzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUcbbcbbcbbcbbcbbbcybcybcybcybRibRjbvybvybRkbcybXSbRmbcwbXTbYabXybXAbXBbXJbXKcEAbIQbXQbSEbSQbSRcEBbSSbSTbSUcECcEDcijcEFcEGcEHcEIbqobqrcpHcJecsMcoEbqrbqxbqrbqrbqraYGbqCbdubTvbYWbbhbbhbWZbbhbZhbZhcJfcwHbZhcoFbqNbqVbyTbtlbtybubbtybtycwOcykcylcymcymcynbtybtybzVbqEbqDbXbcBpbqDbqEbqDbqDbqDbuwbhfbgqbgqcxFcxGcxCcxHcxIcxJcxKcxLbhMbhPbhbbhPbhQccvbpdctycxMbpfbpkckKboKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaacNzcNBcNBcNBcNBcNzaaaaaaaaaaaaaaaaaaaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaacbbcbghFacsRcbncbucbCchRbWlbSlbZfbZgbZjbZBcvHbYbbYjbYsbYubYwbWabXUbXUbXUbWacEJbIQbXZbSGbSYbSLcEKbUJbSZbTacELbTbbSGbuDbdvbdvbXibuFbbhbbhbbhcyobxMbbhbbhbbhbbhbcTbdubdubdubcTbcTbbhbpmbXjcoCbZhbZkbGucyqbZhbcTbcTbcTbzYbBlbBlbIobBlbzrcyrcysbzIbzUbIpbQRbIpbIpbUnbcTbcTbcTccVcBrcBrcBscBrcBCaRYaRYcjAbhXbhXbifbhXcxNctvbezctwbirbisbivciEbivbplboSbppbpfcxObpubpfckLboKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUcNycNycNBcNBcNBcNBcNycNyaaaaaUaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaacbbchTcsRcsRcsRcsRcnOcnVbZWbRibZYcaacaccadbcycaebRqbcwbYAbYLbYcbpzbpzbpzbYccEMbIRbYibTcbTdbTebSSbSSbTfbaubvnbCXbFBbFCbqrbqrbgabpAbpBbqsbrJbBsbDdbDmbPwbPwbPwbPwbiUbXtbXubQEbQEbQEbQEbXvbpObZhbZnbHicywbZhaaUaaUaaUaaUaaUaaUaaUaaUbyTcyxbaNbHnbzVaaUaaUaaUaaUaaUaaUaaUbpPcItaRYaSTaTcbcubcvbcDaRYbiybizbiJcnAbiJcxPbiMbiZbjlbiZbjnciRcmTcDzbjnboIbqybpfcNDbpfbpYckMboKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUcNycNEcNFcNGcNGcNGcNHcNyaaUaaUcNIaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaacbbcpDcsRcGJgVVcGFcsRcGGbcybcybcybcybcybcybcybcybcybcybYAbZEbXUaaaaaaaaabXUcEJbIQbYkbSEbTjbTMbTlbSLbTmbTnbSCbSCbSCbqcbqecyycaQbqebqmbXzbtvblUbXtbFEbqzbqzbqzbqzbrFcsibqzbqzbsVbsVbsVbsVbpEbZhbZqbJUcJhbZhaaaaaaaaaaaaaaaaaUcNKbImcfccyrbaNbzIcuobIxcNLaaUaaaaaaaaaaaUbpPcIubcEbcFbdLcsSbdLbcFaRYbjNbjPbjQcsgbjQcxQbjSbiZbGCcjtbjnbjTcnBcDAbjnbqZcxRcxSbpfctybrdboIboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaacNzcNMcNNcNNcNNcNOcNPcNzaaacNQcNIabMaaUaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklaaaaaaaaaaaaaaaaaacbbcGHcsRdYmcGKcGLcsRcGMcbbaEFaSjaTEaTXaVFbSJbfrbigbYrbZGbZEbXUaaUaaUaaUbXUcEJbISbWabSEbSEbSEbSEbSCbSCbSCbSCbrkbhxbrmbrqcyAbXCceYbqmbqmbqmbqzbrHbIfbqzbqqbrKbsLbsNbsPbsQbqzbsGbtsbujbulbpEbZhbZhbOnbZhbZhaaaaaaaaaaaaaaaaaUaaUaaUbcTcyrbaNbzIbcTaaUaaUaaUaaaaaaaaaaaUbpPbMqaRYckcbiEbiHbkfbkzaRYbkOcJiccFbtWctucxUbkSbiZbpQbXEbXFbXGcshcDDbjncxTcxVbpYbrSbrSbrTboIaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaUaaacNzcNOcNRcNScNTcNOcNUcNzaaUcNIcNIcNIaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaUcbbcbbcbbcbbcbbcGPcGQcGPcbbbkobkoaTEaVFcGRcGScGTccecgVcmVcsPbWabXUbXUbXUbWacEJbIQbWaaaUaaUaaUbrUbrZbsabRHbRJbspbqvbstbstbstbvKbwfbywbyDbzJbADbAEbItbzAbzGbCfbzGbCgbACbCYbqzbHDbHGbpDbpDbpEbsVcEEbOpbsYbsZaaaaaaaaUblpbmebmebmeblpbmfcyDcoqcorbnOblpbmebmebmeblpaaUaaUbpPbJlaRYbnQbpVbnQbWYbnQaRYbiZbiZbiZbiZbiZcxWcpJbiZbpQbLZbjnclVcHVbnXbjnbMHcxVbtdbteboIboIboIcNWcNXaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUcNycNycNYcNycNycNZcNycNyaaUaWjaWjaWjaWjaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaUcGZcbbcGVcGWcGVcbbbkocsTaTEaVFcGXcGYbJzbJAcGicGjcGkbJFbKsaJVbKsbKtbKubIQbXUaaUaaaaaUbrUbtfbuAbthbthbthbtibstbstcyEbHIbHJbstbHJbstbIibILbJdbRTbFZbTCbFGbHCbHCbHEbJfbHDbQpbXLbsVbpEbzebpDbJpbtxbsZaaaaaaaaUbmebnYbogbombmeboncyJboxboybozbmebpibogbpjbmeaaUaaUbpPbLKbtzbtAbLZbtBbtCbtDbtzbXYbtzbtzbUWbtzcxXbtFbtzcOabLZbjnbjTcPMbjnbjnbtNcxVbtdcdTbtSbtScrecNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcNXcObcNXcNXcNXcOccNXaWjaWjaWjabpbrscfqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcGZcbbcHamImcGVcbbbkobkoaTEaVFcHbbuCbTobTqcGlcGmcGnbKvbKvbrzbLGbLUbQvbQPbXUaaUaaaaaUbrUbtUbJKcOdbTBbthbtYbstbVPcyKbYKcbrcbrcbscbKbBPcdXbXqciQckpckDclccmBbIMbqzbqzbMjbMjbsVbsVbpEbpDcmLbJpbumbsZaaUaaUaaUbmebpTbpTbpTbmebpUcyJboxboybqpbmebpTbpTbpTbmeaaUaaUbpPbYecOebMQbNtbNVbPmbPmbPnbPmbPmbPmbRrbPmcPNcxYcxYcPObYhbjncjfbjnbjnbRtbuycjbbDyceZccTccUcowcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOfcOgcNXcNXcNXcNXcNXaWjaWjaWjabpbrscfqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcbbcbbcbbcbbcbbcbbbTrbTsbTGaVFcHccHdcagbigcGobYvcctbYvbYvbYvbYvbRMbRNcfZbXUaaUaaaaaUbrUceccegcegcekcegcodcsjcKhbuJbuKcDEcDFbuSbuSbuSbuScmKcolcomcpIbqzbqzbqzbqzcajcaHcbmcyOcyPcyQcyRcyScyTcyUbxjbxjbxjblpblpbqLbqMbqUbrvbrNcyVcyWcyXcyYcyZczaczbczcblpblpbxwcrobHLbtBbtabtabtabtabxHbtEbxHclWbxHbxHbxHclXbZtbZtcyabYnbjnbtHbtIbjnbxObRwcxVbxRbteboIboIboIcNXcNXcOhcOhcOhcOhcOhcOhcOhcOhcOhcOhcOhcOicOjcOjcOjcOjcOjcOkcOlaaUaWjaWjaWjaWjaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUbxTbJZbxVbKabxTbRhaVFaVFaVFaVFcHecHfcbcbigcGpbYvbYobYpbYqbTgbYvbROcEsbWXbXUaaUaaaaaUcdZbrUbqTbrlcsKbrUcdZbstbtjbstbstcDGcDJcDZbAJcaRbuScwscxhcyucyFbqzcyGcyNbMjcdYchVbyQbyNbyQbyQbyQbyQbPsczdbyUbyUbyUbtKbtLbtLbtLbtLbtLbtLczecpybtObtLbtLbtLbtLczebtLcmybzabzabYtbtBbtabtQbzdbtVbzcbzkbFFbPMbSfbzjbxHbZubZvbZtcyabYnbjnbtXbucbjnbzsbRzcybcxZbzubzubzvcRacOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOmcOncOjcOjcOjcOjcOocOpaaUaaUaaUaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbxTcbycOqcGqcGrbTOcGtcGscGscHgcHhcHicaIbTNcGuciockkbYxcPvbYycwbbRRbRSbWXbXUaaUaaaaaUbrUcedceecefcKkbSXbssbstbtjbstbstcEacKCczgczhczibuSczvczBczFczMbqzczPczWcAccAocDLbHKbzKbzScCOcrqbyQbYCczjczkczkczkczlczmcznczmczoczpczqczrbPDbPEbPFbPGbPHbPIczsbPHcmzbMQbMQbYDbtAbtabxNcehcfGbBgcrpcsUbzdbzdbzWbxHcmMbYnbZxcyabYEbjnckEcmebjnbzZcmJcycboIboIboIboIboIaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUcOrcOjcOjcOscOtcOucOvcOpaaaaTdaaaabpaaUaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabrsbAfbAgbMxcGvbMybxTbVvaVFaVFaVFbTPbTQbuCbTobigcGpcctbYFcPwbYHcrfbYvcytcENckfbWaaaUaaUaaUbrUcejcefcnZcKlcelcemcoVbAobAqbKibuScDhcztczucKjbuScmUcnkcDMcGIbqzbBQcFXcovcdYcoxcGUczwczwczxcspbyQbPNblpblpblpblpblpbzqczybuibPObAWbmebmebAYbmebmebBabBcbUxczybBeblpblpblpblpblpbtabDhbzdbtVcoWbBfbBgbBgbQDbBxbxHbYnbYnbZtcyacnibjnbjnbjnbjnbBybRGbVtbBAcJjbBIboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacOlcOpcOpcOpcOpcOpcOpcOlaaUaaUaaUaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabxTbxTbxTbxTbxTbxTbxTbxTbxTbxTbBJbxTcGwbxTbxTbTRbTRcavcawcawcawcaxcaxcaxcGxcctcctcazbYvbYvbuabDTcEObtnbIkbIkbIkbIkbIkbChcocbRIcKmbChbRIbChcuWcuXbPPbuScPRcPScPTbuSbuScrgbqzcrncHWbqzcKibRIbMjcupcvubXNbDacRvczCbPSbyQbPNblpcoyctHcqTcqUbuibuicOwbPTbBmbBmbBmbBwbBmbBmbBmbBMbUxbuibuicqUcnfctHcrUblpbtabHMbHMbtabxHbDfbDgbDhbxHbxHbxHbZtbZybZtcyecyfcygcyfcyfcyhcyicyjbZobFhbztbFiboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbFjbFkbFlbFmcnbbFocdDbFqcrNbFsbFtcGybzybFlaaUcavcavcaAcaBcaCbWdcaEcpgcGzbOObFubsUbFxbIebJEbKdbIcbIhbIdbIjcpwbJDbIkbRLbTzbTAcKncEQcERcEScETbFJbQabFXbFJczDczEcFscnzcvRcKHcxfcxgcNJcNVcyBcyCcyHcyIbHKcoebBuczGbQcbyQbPNbmecddcddcddbBZclZbuibuibQdbuibuibuibCAccxccxccxccxccKbuicmablpcddcddcddblpaaaaaaaaaaaabxHbHMbHMbHMbxHaaUaaUbHNbHNbHNbHNcgybGFbHNbHNboIboIcmbbZsboIboKboKboIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaWjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbFlbHSbHSbFlbHTbHUbHVbHWbHYcrObIabIbcGybzybFlaaUcavcHjcHkcHlcHkcHmcHncHocHpcHqbKebRVbSdbSebSdbTibRXbRYbKNbKObKPbKQbIkbIsbTEbVOcKobXncEUcEVcEWcEXcEYcEZcFacFbcFccEXcEZcFdcFecFfcFfcAmcFfcFhcFfcFicyLbIubIvcrXbIwbQjbyQbPNbxjaYpcscaYpbmebuobuibuibQdbuibuibuicqlbuibuibuibuicOwbuibHtbmeaYpcscaYpblpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHNbHzbHPbIybIzbIAcnSbHNaaUboKbHQbZsboKaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaWjaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbSjbIEbZzbFtbOFbYzbIGbIHbIIbIJcsYcGybIKbFlaaUcavcqScaPcaPcaPcbvcskcbwcHrcHsbsMbQQbThbtobThcaOcRnbTDbTDbTDcRobYBccBccCccDcfNbYIbYJbShcgfckaclvcqWbAscFkbElbElbIUbJabElcFkbElbJbcAtbJcbJebtpbMFcyMbJhbJiczIczJbQobKkcAubxjaaaaaaaaabmebuobuibuibQrbQsctVbJqbJqbJqcrjbJRbuibuibuibHtbmeaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabHNcknbHNbHNcmcbIBbKZbHNaaaboKbHQbZsboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbFlbJrbJrbFlbJsbJtcPUcPVcGAcGBcGCcGDcGEbJxbFlaaUcavcavcaTcaTcaTcaUcavbXdcGzcHtbsMccdbtocsZcqzckbcvSczHcmScrycrAcgrcFWcGNcGOcPxcPPbSabChcFjbQkbWDbJgayYcFlbJnaJDaJEaKZaMmcFmaOFbJJcAvbJLcRbbJNbNFbJObyQbDabBubBubJPbyQcChbxjaaaaaaaaabmebmebuibuibJobNHblpbmebNIbmeblpbNJbJRbuibuibmebmeaaaaaaaaaaaUbNKbNKbNKbNKbNKaaUbNKbNKbNKbNKbNKbNLaqAbNLbJQceJbNObNPbHNaaaboKbHQciAboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbFjbFkbFlbJVbJWcPWcPXbJXbFwbXObZDbKbbKcbxTcavcavcavcaXcaYcoGcbacavcavcHucHvbsMcsVbThbtobThcuZcmRbKfccmccmcdWbIkbIkcFnbTEckdbIqbScbChcFobQkcqbbQlbaTcFpbQmbbxbbzbbBbbCcFqbbEbKhcFgcHOcHPcHOcHQcKpcHRczwcKqbKmbKnbyQcChbxjaaaaaaaaaaaabmebmebuibNQbmebmeaaaaaaaaabmebmebNRbuibmebmeaaaaaaaaaaaaaaUbNSbYQbYQbYQbYQavrbNSbYQbYQbYQbYQavrbNLaaUbJQbJQbHNbHNbHNaaaboKbHQclObKoaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbxTbxTbxTbxTbxTcPYcPZbKqbxTbxTbxTbxTbxTbxTcavcavccLcaXcaXcaXcnCcavcavcHwcaGcuYcvtcvQcEPcRicRjcRpcRlcoHcOxcOycOzcGbcGccGdcGecqZbSgbShcFrbQubKybYGbaTcFpcbfbbZbjxblvblwcRwcoXbKzbKzbKzbKAbKzbKzcHSbKCbyQcHTbyQbyQbyQcChbxjaaaaaaaaaaaaaaabmebuibNQbmeaaUaaaaaaaaaaaUbmebNRbuibmeaaaaaaaaaaaaaaaaaUbNUbNUbNUbNUbNUaaUbNUbNUbNUbNUbNUaaUbNLaaUaaaaaaaaaaaaaaaaaaboKbHQbHRbKDcgWaaaaaaaaaaaabljaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKEbKFbKFcQacbocQbcQccQdcQecQfbKMbKMctabxTcavcbecaXcaXcaXcHxcHycHzcHAcHBcHCbIkbZTcrWcRqcumcFVcRkcRrbJHcOAcOBcOCbRIbMjcvTbMjbMjbMjbMjcFtcFucFvcFwcFxcFybopboqbotczKblwcFzbbEbKSbKTbKUbKVbKWbKTcHUbKYcPQcPycHXcHYcODcIabxjaaaaaaaaaaaaaaabmebuibNQbmeaaUaaaaaaaaaaaUbmebNRbuibmeaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbNLaaUaaaaaaaaaaaaaaaaaaboKbLabLbboKaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTcaVbLdbKMcQgbLfcQhcQibLibLjcQjbKMbKMcaZbxTcavcblcaXcbhcaXcHDcHEcHFcHGcHHcHIbIkbIkcebcebcebcebcebbIkbIkcOEcOFcOGcOHbMjcFAbLIbLWcFBcFCcFDcFEbJIbpabpbbbtbpebpgbotbphblwbqtbbEbLqbLrbKTbLsbLtbLrcIbbKYcIccIdcKPcyScIecIfbxjaaaaaaaaaaaaaaabmebNWbNXbmeaaUaaaaaaaaaaaUbmebNYbNZbmeaaaaaaaaaaaaaaaaaUbNKbNKbNKbNKbNKaaUbNKbNKbNKbNKbNKaaUbNLaaUbNKbNKbNKbNKbNKaaUboIboKboKboIaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKMbKMbKMcQkcQlcQmcQnbLickNcQobKFbKFbLybxTcavcbqcaXcaXcaXcHJcbtcaXcavcHKcHLcbBaaUaaUaaUaaUaaUaaUaaUcOIcOJcOKcOLbRIbMjckhckjcFFcFGcFHcFIcFJbJIbQnbqObqPbQzbpgbjxbqRblwblxbqSbKzbKTcIgczLcsobLtcvvbKYcIcbLDcOMcOMcONcOOcOMaaUaaUaaUaaUaaUbmebOabOabObaaUaaaaaaaaaaaUbObbOabOabmeaaUaaUaaUaaUaaUaaUbNSbYQbYQbYQbYQavrbNSbYQbYQbYQbYQavrbNLbOcbYRbYRbYRbYRbOdaaUaaUaaaaaaaaUaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbxTbxTbxTbxTbxTcQhcQibLFbxTbxTbxTbxTbxTbxTcavcavctbcaXcaXcaXcpecavcavcHMcHNcbBaaUaaaaaaaaaaaaaaaaaacOIcOPcOIcOLbRIcfbcFKcFLcFMcFNbChcFObQLbLLbQCbrubrObXDbAybAHbAMbATbBnbQybLMbLNcIjcIkcIlcImcIncIocIpcoAcOMcOQcORcOScOMaaUaaaaaaaaaaaabmebOebOebmebmeaaaaaaaaabmebmebOebOebmeaaaaaaaaaaaaaaaaaabNUbNUbNUbNUbNUaaUbNUbNUbNUbNUbNUaaUbOfaaUbNUbNUbNUbNUbNUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabpaaaaTdaaaabpaaaaaaaaaaaaaaacklcklcpCcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKEbKFbKFcQacbocQhcQpcQqcQrcQfbKMbKMbKMbxTcavcavcavcbxctIcbzcavcavcbEckPckQcbBaaUaaaaaaaaaaaaaaaaaacOIcOTcOIcOUbRIcFPcFQcnXcnYcvwbChcFRcFSbMacmZcoYbQBcnabQJcRmcvxcezceAceBbKzbMbbMcbMdbMebMfbMgbKzbxjbxjcOMcOVcOWcOXcOYaaUaaaaaaaaaaaabmebOibOgbOhbmeaaaaaaaaabmebOibOgbOhbmeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbOkaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTclfbLdbKMcQsbLfcQhcQtbMibLjcQubKMbLdcmQbxTaaUcavcavcavcavcavcavcavcbEckTckQcbBaaUaaaaaaaaaaaaaaaaaaaaUaaUaZGaaUbChbChbChbChbChbRIcpzctDcFTctFcpzcpzctDcvocpzcpzbMkbMlbMlbMnbKzbKzbKzbKzbKzbKzbKzbKzaaUaaUcOMcOZcPacPbcOYaaaaaaaaaaaaaaacnGcndbuicnebmeaaaaaaaaabmebOjbuicnccnGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbOkaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKMbKMbKMcQkcQvcQhcQibLickNcQobKFbKFbLybxTaaUaaUcavcavcavcavcavaaUcbEckTckUcbBaaUaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaUbMlbMocFUcoJcvsbMrbMscvObMucvsbMwbMvbMwbMvbMwbMvbMvbMlaaUaaUaaUaaUaaUaaacOMcOMcOMcOYcOYaaaaaaaaaaaaaaabmebOlcnfbOmbmeaaaaaaaaabmebOlcnfbOmbmeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUbOqaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbxTbxTbxTbxTbxTcQwcQibLibxTbxTbxTbxTbxTbxTaaaaaaaaaaaaaaaaaaaaaaaUcbEckTckQcbBaaUaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaUbMlcobbNgcpbcwgcwhbMAcwibMCcwjbMDbMvbMvbMvbMvbMwbMEbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabOocnHbmecnHbmeaaaaaaaaabmecnHbmecnHbOoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKEbKFbKFcQacbocQhcQpcQqcQxcQfbKMbKMbKMbxTaaaaaaaaaaaaaaaaaaaaaaaUcbEckVckWcbBaaUaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUcpzcpzcpzcpzcpzbNhcpzcpzcwlcwmcwncwocwpbMvbMwbNibMLbMvbMvbMvbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacnEaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTctLbKMbKMcQybLfcQzcQAbLibLjcQBbKMcnDctMbxTaaaaaaaaaaaaaaaaaaaaUcbBcbEcRccRdcbEcbBaaUaaUaaUaaUaaUaaaabpaaaaTdaaacpzcpzcpzcpzcvUbMNbMObMPbNjbMRbMlbNmbMTcwubMUcwTbMvbMvbMvbMvbMvbMVbMvbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaUbxTbKMbKMbKMcQkcQCcQDcQEbLickNcQobKFbKFbLybxTaaUaaUaaUaaUaaUaaUcbBcbBcleclgcsXctWcbBcbBaaUaaaaaaaaUaaUaaUaaUaaUaaUcpzbNrbNvcpzctObMJbMJbMJbNwbNxbNybNzbNGcABbNccpzcvscpzcoKbMvbMlbMlbMlbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabxTbxTbxTbxTbxTbxTcjPcbFcvVbxTbxTbxTbxTbxTbxTcbBcbBcbBcbBcbBcbBcbEcnjcsWctcctPcbDctNcbEaaUaaaaaaaaaaaaaaUaaaaaUaaacpzbQUcACcADcAEcAGcAHcAKcPccBDcBGcBTcCacCccCgcCicCjcucbMvbMvbMlaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabAbctQbxTbOscvzctTctRcnlckSbOyctUbOAcuectScvGctYcKrcKrcKrcKrcKscKtcKucKvcuacukctZclhcbBaaUaaaaaaaaaaaaaaUaaaaaUaaacpzcuvcCkcClbNsbMJcvybMJcCmcLAcpzcpzcCocCrcCrcCrcCucpzbNubMLbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaacKwcKxcKycKzcKAcKBcQFclacQGclackXclbcvXcudcvYcvAcubcufcubcubcugcuhcuicujcvWculctZclhcbBaaUaaaaaaaaaaaaaaUaaaaaUaaacpzcLCcCvcCwcLFcLGcLHcLIcCxcCycCzcCDcLLcLDcLDcLMcLNcvsbMlbMlbMlaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaclicljbxTbOGbOHbOIcQHbOKcQIbOMbONbOGbxTcljbxTcbBcbBcbBcbBcbBcbBcbEclhcuqcurcurcldctNcbEaaUaaaaaaaaaaaaaaUaaaaaUaaacpzcCQcCScpzbNAbNBbNCbNDcDbcLPcpzcDccDdcuvcuvcvfcLScClaaUaaUaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabxTclkbxTbOPcQJcQKcQLcQMcQNcQOcQPbOPbxTcllbxTaaUaaUaaUaaUaaUaaUcbBcbBcusclhclhcuscbBcbBaaUaaaaaaaaaaaaaaUaaaaaUaaacpzcwTcpzcpzcpzcpzctDcDecDfcLTcpzcpzcwgcCrcCrcCrcCrcCuaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaabxTcljbxTbxTbxTbOTbKMbKMbKMbOUbxTbxTbxTcljbxTaaUaaaaaaaaaaaaaaaaaUcbBcbEcbBcbBcbEcbBaaUaaUaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcLUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaTxaaaaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaclmbxTbOWbKMbKMbKMbKMbKMbKMbKMbOXbxTclmaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaTxaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPdabMcPeaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaclnbxTbOZbKMbKMbKMbPabKMbKMbKMbPbbxTcloaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPfabMcPgaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPdabRcPhaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaclnbxTbPcbKMbKMbKMbKMbKMbKMbKMbPdbxTcloaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPfabRcPiaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUcPdabMcPhaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaclnbxTbPebKMbPfbPgcunbPibPjbKMbPkbxTcloaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPfabMcPjcPkcPkaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacPlcPmcPnabRcPhaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaclpbxTbxTbxTbxTbxTbxTbxTbxTbxTbxTbxTclpaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPfabMabRabRabMaRvaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaTdaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaWRabMabRabMabMcPhaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaclqclrclsclsclsclsclsclsclsclsclsclrcltaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUcPocPocPocPocPpaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacPqcPqcPqcPqcPhabpaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUabpaaUaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaUabpaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaUaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaUaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklaaacpBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacpBaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcpCcklaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacklcpCcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl -cklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklcklckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(2,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(3,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(4,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(5,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(6,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(7,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(8,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(9,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(10,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(11,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(12,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(13,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(14,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(15,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(16,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(17,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(18,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(19,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(20,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(21,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(22,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(23,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaw +aaf +aaw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(24,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bnj +aaw +bHZ +aaw +bnj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(25,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaw +aaw +acp +bJM +acp +aaw +aaw +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(26,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaf +aaf +acp +bef +crG +crK +acp +aaf +aaf +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(27,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaw +bgD +acp +beh +bKH +crL +acp +bLB +aaw +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(28,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaf +aaf +acp +bFr +crH +crM +acp +aaf +aaf +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(29,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaw +aaw +acp +acp +acp +aaw +aaw +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(30,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bnj +aaw +crG +aaw +bnj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(31,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaw +crH +aaw +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(32,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(33,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(34,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +bbv +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(35,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(36,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(37,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +cpC +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(38,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +bbv +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(39,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +bbv +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(40,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(41,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(42,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(43,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaU +aaa +aaa +aaa +crB +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +bbv +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(44,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aye +aEf +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +akI +byi +byi +byi +byi +byi +byi +byi +byi +byi +byi +byi +byi +crE +aye +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(45,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aye +aaU +akI +adp +ajt +chi +arW +aHo +buV +bxu +akI +bxB +bxQ +bxZ +byb +byi +byn +byp +byB +byG +byL +byB +clI +byn +clP +byi +aaa +aye +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(46,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aye +aaa +akI +adZ +chh +cMf +axF +aIM +mKP +crz +cMf +bxE +bxW +bya +byb +byk +byn +byq +byn +byH +clD +byn +clJ +byn +clQ +byi +aaU +aye +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(47,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aye +aaa +akI +ajZ +anx +akJ +aAI +aMx +cnn +bxx +bxD +bxI +bxJ +byb +byb +byb +byn +byx +byn +byn +byn +byn +clK +byn +clR +byi +aaa +aye +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +bbv +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(48,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aye +aaa +akI +ahh +aCf +akI +aAJ +cMp +aYa +akI +akI +aNC +bxv +byf +byj +byl +byn +byn +byn +byI +clE +byn +byn +byn +crD +byi +aaa +aye +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +bbv +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(49,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aye +aaU +akI +ajn +aLH +akI +aAK +aRC +aHj +akI +bxA +hiV +cvI +byb +byb +byb +byn +byy +byn +byn +byn +byn +clL +byn +clS +byi +aaa +aye +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(50,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aye +cep +akI +akI +akI +akI +aGa +cMK +bxo +akI +akI +bbk +bxX +byg +byb +bym +byn +byz +byn +byJ +clF +byn +clM +byn +clT +byi +aaU +aye +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +bbv +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(51,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aEa +aXm +aXs +bxC +akI +beC +bxY +byh +byb +byi +byn +byA +byC +byK +clG +byC +clN +byn +clU +byi +aaa +aye +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(52,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aEa +cMK +aHE +akI +akI +akI +akI +akI +byi +byi +byi +byi +byi +byi +byi +byi +byi +byi +byi +byi +crF +aye +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(53,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aEa +cMK +aTh +akI +aaa +aaU +aaa +aaa +aaa +crC +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +bbv +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(54,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aEb +aya +bab +aaU +aaU +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aye +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(55,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aEa +aPT +aaU +aaa +aaa +aaU +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +bbv +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(56,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +agL +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aEa +aPT +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(57,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aee +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aEa +aPT +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(58,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +abh +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aEa +aPT +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cpC +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(59,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaK +aaL +abi +aaa +aaa +aaK +aaL +abi +aaa +aaa +aaK +aaL +abi +aaa +aaa +aaU +aEa +aPT +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(60,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaU +aEa +aPT +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +cpC +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(61,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaU +aEa +aPT +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(62,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaU +aEb +aPT +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(63,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaU +aEa +aPT +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +bbv +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +cpC +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(64,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaU +aEa +aPT +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +bbv +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +bxT +bxT +bFl +bxT +bFl +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bAb +cKw +cli +bxT +bxT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(65,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +cpC +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaU +aEa +aPT +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bxT +bFj +bHS +bSj +bJr +bFj +bxT +bKE +caV +bKM +bxT +bKE +clf +bKM +bxT +bKE +ctL +bKM +bxT +ctQ +cKx +clj +clk +clj +clm +cln +cln +cln +clp +clq +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(66,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaU +aEa +aPT +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +cpC +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bxT +bFk +bHS +bIE +bJr +bFk +bxT +bKF +bLd +bKM +bxT +bKF +bLd +bKM +bxT +bKF +bKM +bKM +bxT +bxT +cKy +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +clr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(67,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaU +aEa +aPT +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +bbv +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bxT +bFl +bFl +bZz +bFl +bFl +bxT +bKF +bKM +bKM +bxT +bKF +bKM +bKM +bxT +bKF +bKM +bKM +bxT +bOs +cKz +bOG +bOP +bxT +bOW +bOZ +bPc +bPe +bxT +cls +aaU +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(68,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaK +aaM +abi +aaa +aaa +aaU +aEa +aPT +aaU +aaU +aaa +aaU +aPV +bik +bik +bik +bik +bik +bik +cQT +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +bbv +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bxT +bFm +bHT +bFt +bJs +bJV +bxT +cQa +cQg +cQk +bxT +cQa +cQs +cQk +bxT +cQa +cQy +cQk +bxT +cvz +cKA +bOH +cQJ +bxT +bKM +bKM +bKM +bKM +bxT +cls +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(69,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aee +aaU +aaU +aaU +aaU +aee +aaU +aaU +aaU +aaU +aee +aaU +aaU +aaU +aaU +aEa +aPT +aaU +aaU +aPV +bik +cQS +aIA +aJe +aLE +aLy +aMQ +aNF +cQU +bik +cQT +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bxT +cnb +bHU +bOF +bJt +bJW +bxT +cbo +bLf +cQl +bxT +cbo +bLf +cQv +bxT +cbo +bLf +cQC +bxT +ctT +cKB +bOI +cQK +bOT +bKM +bKM +bKM +bPf +bxT +cls +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(70,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +abh +abh +abh +abh +abh +abh +aiq +aaL +ajc +abh +abh +abh +abh +abh +abh +aEb +aPT +aaU +aaU +aPW +aHD +aIg +aHF +aJn +aHF +aHF +aJn +aHF +aPp +cQV +cQS +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aWj +aaU +aaa +aaU +aaU +aaU +aaU +aaU +aaa +aaa +aaU +aaU +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaU +aaa +aaa +bxT +bFo +bHV +bYz +cPU +cPW +cPY +cQb +cQh +cQm +cQh +cQh +cQh +cQh +cQw +cQh +cQz +cQD +cjP +ctR +cQF +cQH +cQL +bKM +bKM +bKM +bKM +bPg +bxT +cls +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(71,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +abx +aoH +abx +aaU +aaU +aaU +aaU +aaU +aaU +aEa +aPT +aaU +aPU +aTH +bRD +aHF +aHF +aIE +aIE +aIE +aIE +csD +aHF +cQW +aGq +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +bcw +aUZ +bcw +aaa +bcy +cnU +cnU +cnU +bZW +aaa +aaU +aaU +cbb +cbb +cbb +cbb +cbb +cbb +aaa +aaa +aaa +aaU +aaa +aaa +bxT +cdD +bHW +bIG +cPV +cPX +cPZ +cQc +cQi +cQn +cQi +cQp +cQt +cQi +cQi +cQp +cQA +cQE +cbF +cnl +cla +bOK +cQM +bKM +bKM +bPa +bKM +cun +bxT +cls +aaU +aaU +aaU +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(72,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aju +aoP +aqM +aaU +aaU +aaa +aaa +aaa +aGq +aDn +aLK +aGq +aGq +aKH +cQQ +aHF +aIE +aJu +aKA +bhB +aMX +aIE +aHF +cQX +aQW +bkC +bkC +aQW +bkC +aQW +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +bcw +cRu +bcw +aaa +bcy +bdc +byc +bdc +bcy +aaU +aaU +aaa +cbb +cbg +chT +cpD +cGH +cbb +aaa +aaa +aaa +aaU +aaa +brs +bxT +bFq +bHY +bIH +cGA +bJX +bKq +cQd +bLi +bLi +bLF +cQq +bMi +bLi +bLi +cQq +bLi +bLi +cvV +ckS +cQG +cQI +cQN +bKM +bKM +bKM +bKM +bPi +bxT +cls +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(73,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +abx +aiN +alu +aiN +abx +aaU +aaa +aaa +aaa +aGq +aEe +aUz +bDP +aGq +aGL +cQQ +aHF +aIH +aJz +aKE +aLI +aMX +aIE +aHF +cQY +aQW +bmj +bBt +cDB +bLh +aQW +aQW +bkC +bVN +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +bcw +bde +bcw +bYg +bcy +bfp +cwY +bOD +bcy +aaU +aaU +aaa +cbb +hFa +csR +csR +csR +cbb +aaU +aaU +aaU +aaU +aaU +bAf +bxT +crN +crO +bII +cGB +bFw +bxT +cQe +bLj +ckN +bxT +cQr +bLj +ckN +bxT +cQx +bLj +ckN +bxT +bOy +cla +bOM +cQO +bOU +bKM +bKM +bKM +bPj +bxT +cls +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(74,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +abx +aiN +asl +aiN +abx +aaU +aaa +aaa +aaa +aGq +aXj +aZq +bDQ +hcR +aGM +cQQ +aHF +aII +abO +aKG +aRe +aXS +bbb +aHF +cQQ +aQW +baP +bCd +cjQ +bLk +aVP +cpt +bOR +bXI +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcw +bee +bcw +crI +bcy +bfo +blG +bfo +bcy +aaa +aaU +aaU +cbb +csR +csR +cGJ +dYm +cbb +cGZ +cGZ +cbb +bxT +bxT +bAg +bBJ +bFs +bIa +bIJ +cGC +bXO +bxT +cQf +cQj +cQo +bxT +cQf +cQu +cQo +bxT +cQf +cQB +cQo +bxT +ctU +ckX +bON +cQP +bxT +bKM +bKM +bKM +bKM +bxT +cls +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(75,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aiN +aoW +apS +asH +abx +aaU +aaU +aaU +aaU +aGq +aFE +bdz +bDR +aKF +aLm +cQR +aMi +aQh +aQN +aRa +aRl +aXT +bbc +bbD +cQZ +cDt +cDw +bEq +cps +bMh +bRb +bOQ +bOS +cbi +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcy +bdf +mBP +crJ +blT +bqJ +bBN +bKI +bOr +aaa +aaU +aaa +cbb +cbn +csR +gVV +cGK +cbb +cbb +cbb +cbb +bJZ +cby +bMx +bxT +bFt +bIb +csY +cGD +bZD +bxT +bKM +bKM +bKF +bxT +bKM +bKM +bKF +bxT +bKM +bKM +bKF +bxT +bOA +clb +bOG +bOP +bxT +bOX +bPb +bPd +bPk +bxT +cls +aaU +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(76,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aiN +arr +aDO +atn +awm +axc +awm +ayJ +aqw +aGq +aJL +aUR +bEc +kzb +aGW +aHI +aIL +aKv +aGn +aKK +aLQ +aGn +bbd +bbG +bit +cDu +cDx +bFy +cDC +bOJ +aVR +bBj +bRc +bXI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcy +bdt +ctj +bUF +bOv +bfo +blI +bfo +bWS +bcw +bcw +bcw +bcy +cbu +csR +cGF +cGL +cGP +cGV +cHa +cbb +bxV +cOq +cGv +cGw +cGy +cGy +cGy +cGE +bKb +bxT +bKM +bKM +bKF +bxT +bKM +bLd +bKF +bxT +bKM +cnD +bKF +bxT +cue +cvX +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +clr +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(77,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aiN +akB +aDT +atv +awo +atv +axp +atv +azy +aGq +aJM +urj +cbX +aGq +aGX +aHM +aHM +aIP +aJB +aHM +aHM +aNg +aSW +aHM +biF +aQW +buM +bAX +bEN +bOL +aQW +aQW +buO +cbp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcy +bec +bek +blH +bnm +bwN +bJY +bLE +bOE +bJY +cKI +cbP +bcy +cbC +cnO +csR +csR +cGQ +cGW +mIm +cbb +bKa +cGq +bMy +bxT +bzy +bzy +bIK +bJx +bKc +bxT +cta +caZ +bLy +bxT +bKM +cmQ +bLy +bxT +bKM +ctM +bLy +bxT +ctS +cud +clj +cll +clj +clm +clo +clo +clo +clp +clt +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(78,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +bfq +aaa +aaa +aaU +aiN +alu +aDT +aGy +awu +auL +awu +auL +aAc +aGq +aJX +bdE +cen +aGq +cvK +aHM +cnp +aIQ +aJG +aKL +bPt +aNi +aSW +aHM +bju +aQW +buO +buO +aQW +buO +aQW +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bcy +bed +boJ +fuR +bzX +bAl +boL +bAG +cnT +boQ +cKJ +bAP +bcy +chR +cnV +cGG +cGM +cGP +cGV +cGV +cbb +bxT +cGr +bxT +bxT +bFl +bFl +bFl +bFl +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +bxT +cvG +cvY +bxT +bxT +bxT +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(79,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +agW +ahf +ain +aaa +ain +alt +agW +aaa +aqw +abx +aCd +aDV +aEp +aEs +aIo +aEs +aNZ +atv +aGq +aGq +bdJ +ceo +aGq +aKY +aHM +aHM +aHM +aHM +aHM +aHM +aHM +aSW +aHM +bjJ +aGq +aaU +aaa +aaU +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +bcy +bcy +bcy +bcy +bcy +bgC +bdf +boR +bDL +boQ +cKJ +bAP +bcy +bWl +bZW +bcy +cbb +cbb +cbb +cbb +cbb +bRh +bTO +bVv +bTR +aaU +aaU +aaU +aaU +cav +cav +cav +cav +cav +cav +cav +aaU +aaU +aaa +aaa +aaa +aaU +cbB +ctY +cvA +cbB +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(80,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +agW +ahk +ain +aaU +ain +ahk +agW +aaU +abx +aiO +amq +avW +awd +awK +axf +awK +aOK +aAi +ceC +aAR +aEm +aGz +aGs +aOp +aOZ +aPu +aOZ +aOZ +aOZ +aSa +aSa +bbe +bnG +bkA +aGq +aaU +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +bQe +aaU +aaU +aaU +bcw +bdf +bdf +bpM +bFp +bvj +cKK +bAU +bRi +bSl +bRi +bcy +aEF +bko +bko +bko +bTr +aVF +cGt +aVF +bTR +cav +cav +cav +cav +cav +cav +cbe +cbl +cbq +cav +cav +cav +aaU +aaa +aaa +aaa +aaU +cbB +cKr +cub +cbB +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(81,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +agW +ahl +ain +ain +ain +alv +agW +agW +agW +aiP +anV +auL +awr +awM +asL +axu +aOL +asL +asL +asL +aFj +aFj +aFj +bmc +aHP +aHP +aIT +aJK +aKP +aSi +aYh +csr +aNR +blf +aNR +buR +bKp +bKJ +aaa +bdg +bdg +bdg +bdg +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +bdg +bdg +bdg +bdg +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aye +aaU +aaU +aaU +bcw +cnL +bdf +bpR +bJw +bLc +cKL +bAV +bRj +bZf +bZY +bcy +aSj +bko +csT +bko +bTs +aVF +cGs +aVF +cav +cav +cHj +cqS +cav +cav +ccL +caX +caX +caX +ctb +cav +cav +cav +aaa +aaa +aaa +aaU +cbB +cKr +cuf +cbB +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(82,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +agW +aho +ais +akl +akO +aho +alW +amX +agW +aiO +aob +bUA +awk +ajU +asL +axv +aOW +aAn +aAS +aCc +aFj +aFX +aGt +bnW +cjW +aFj +aFj +aGq +bdQ +aSB +aGq +aNR +aNR +bly +bjF +byd +aUB +bKK +aaa +bdg +beN +bgx +bdg +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +bdg +bEC +bgx +bdg +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +chC +abp +abp +abp +bcy +biK +bdf +bpR +bJT +bLl +cKM +bQX +bvy +bZg +caa +bcy +aTE +aTE +aTE +aTE +bTG +aVF +cGs +aVF +caw +caA +cHk +caP +caT +caX +caX +caX +cbh +caX +caX +cbx +cav +cav +aaa +aaa +aaa +aaU +cbB +cKr +cub +cbB +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +cpC +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(83,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ahg +ahg +ahg +ahg +ahg +ahp +aiE +akq +akT +aAd +atq +atH +anU +anU +asL +asL +azi +asL +anU +axz +aPj +ayM +cCP +aCg +aFm +aGK +cCW +brG +aGu +aMh +aFm +aOr +aKS +aSW +cDs +aNR +biq +blA +bqh +buG +bIW +bKK +aaa +bdg +beR +beJ +bdg +bdg +bdg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdg +bdg +bdg +beJ +beR +bdg +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +brs +brs +brs +brs +bcw +biT +bdf +bpR +bwD +bLx +cKN +bWt +bvy +bZj +cac +bcy +aTX +aVF +aVF +aVF +aVF +aVF +cHg +bTP +caw +caB +cHl +caP +caT +caY +caX +caX +caX +caX +caX +ctI +cav +cav +aaa +aaa +aaa +aaU +cbB +cKr +cub +cbB +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(84,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ahg +akp +alw +afH +ahg +ahq +aiG +akr +alj +ari +amg +amX +anU +aCr +aKd +aLJ +azj +aph +asL +axA +aPk +aMp +aOn +aCi +aFj +aGb +cCX +bGn +aHW +baK +aFj +aSs +bWe +cPs +bdS +aNR +aPt +aYR +csE +bvJ +aUF +bKK +aaa +bdg +beJ +beJ +aXk +bjg +aXl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +baZ +bjg +bhS +beJ +beJ +bdg +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +cnI +cnJ +bgW +bgW +bgW +bgW +bnk +bqI +bHF +bDM +bOu +bWu +bRk +bZB +cad +bcy +aVF +cGR +cGX +cHb +cHc +cHe +cHh +bTQ +caw +caC +cHk +caP +caT +coG +caX +cHx +cHD +cHJ +caX +cbz +cav +cav +aaa +aaa +aaa +aaU +cbB +cKs +cug +cbB +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(85,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aaU +ahg +aks +akY +alF +ahg +aps +agW +agW +agW +asF +ain +ain +anU +aEw +asX +aNj +aNJ +aph +asL +axB +aPn +aAv +aOO +aCl +aFj +aZT +aGv +bLp +bEV +aIr +aFj +aOs +aIP +aTf +aYy +bbf +bsf +bnI +aRo +bAn +bKG +bLe +aaa +bdg +beJ +beJ +bdg +bdg +bdg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdg +bdg +bdg +beJ +beJ +bdg +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +bgW +bin +bjs +bgW +bgW +bmb +bgW +bgW +bOv +bWS +bcy +cvH +bcy +bcy +bSJ +cGS +cGY +buC +cHd +cHf +cHi +buC +cax +bWd +cHm +cbv +caU +cba +cnC +cHy +cHE +cbt +cpe +cav +cav +cav +aaa +aaa +aaU +cbB +cbE +cKt +cuh +cbE +cbB +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(86,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anU +anU +acc +anU +ahg +akt +atI +amm +ame +akL +akD +amh +aBA +arq +awJ +awJ +anU +aHb +asY +aNG +aNV +aBb +anU +abS +aPv +abS +aPD +abS +aFj +aFj +aLa +cjR +aFj +aFj +aFj +aGn +bfA +aTu +aGn +aNR +aNR +aNR +aRw +bCe +aNR +aNR +aaa +bdg +beJ +beJ +bdg +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +bdg +coQ +beJ +bdg +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +bgW +cfg +bjt +bep +bVe +bVp +csf +bgW +jyu +bXg +bXS +bYb +cae +bcy +bfr +cGT +bJz +bTo +cag +cbc +caI +bTo +cax +caE +cHn +csk +cav +cav +cav +cHz +cHF +caX +cav +cav +cav +aaU +aaU +aaU +cbB +cbB +cnj +cKu +cui +clh +cbB +cbB +aaU +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(87,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anU +aaN +aaS +auE +ahy +aku +aly +aoq +aoR +aoV +aoY +apu +aeD +arT +aaS +aNM +anU +aHN +atj +ayf +azn +aBe +bzx +axC +aPY +aAz +aOh +aCG +bpX +aGo +aAz +cjS +anU +aMY +aNK +aNL +aPo +aTD +aNL +aNK +aVj +aNR +bao +bDk +aNR +aaU +aaa +bdg +beJ +bbI +bdg +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +bdg +cmd +beJ +bdg +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +bgX +bAw +biA +biA +biA +bmd +csI +bgW +bOw +bcy +bRm +bYj +bRq +bcy +big +cce +bJA +bTq +big +big +bTN +big +cax +cpg +cHo +cbw +bXd +cav +cav +cHA +cHG +cav +cav +cbE +cbE +cbE +cbE +cbE +cbE +cle +csW +cKv +cuj +cuq +cus +cbE +aaU +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(88,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aah +aaz +byX +byX +byX +byX +byX +aaz +acO +anU +aeb +apc +auI +ahy +aky +amI +aod +amB +ajy +akF +awG +axW +asj +awR +axo +anU +aIl +anU +anU +anU +aBf +anU +aTp +aQb +aaS +aQl +agu +aSk +aUg +blY +cjT +aLk +aNd +aNL +aNL +aPq +aUC +aNL +aNL +aVj +aNR +aNR +bEm +aNR +aaU +aaa +bdg +beJ +beJ +bdg +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +bdg +beJ +beJ +bdg +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +bgX +biB +biA +cDS +cDU +cDW +cDY +bgW +bOx +bcy +bcw +bYs +bcw +bcy +bYr +cgV +cGi +cGl +cGo +cGp +cGu +cGp +cGx +cGz +cHp +cHr +cGz +cHu +cHw +cHB +cHH +cHK +cHM +ckP +ckT +ckT +ckT +ckV +cRc +clg +ctc +cua +cvW +cur +clh +cbB +aaU +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(89,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aan +aaA +aaA +aaA +aaA +aaA +aaA +aaA +ada +anU +anU +apQ +auK +ahg +akA +amQ +ama +ahg +abS +abS +awZ +aEy +ayS +abS +abS +anU +aIV +anU +ayj +anU +aBj +anU +axN +aQb +aaS +bpo +aAX +aED +aVw +aBF +aKx +aLL +aNf +aNN +aNL +aPq +aUC +aNL +aNL +aVl +aYT +aXf +bFH +aYT +aaU +aaa +bdg +beJ +beJ +bdg +bdg +bdg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdg +bdg +bdg +beJ +beJ +bdg +aaU +aaa +aaa +aaa +aaa +aaa +bdg +bdg +bGI +bGI +bGI +bGI +aaa +aaa +aaa +aaa +aaa +aaU +bgX +csF +csN +biA +biA +csL +cDj +cDy +bPl +bXx +bXT +bYu +bYA +bYA +bZG +cmV +cGj +cGm +bYv +bYv +cio +cct +cct +bOO +cHq +cHs +cHt +cHv +caG +cHC +cHI +cHL +cHN +ckQ +ckQ +ckU +ckQ +ckW +cRd +csX +ctP +cuk +cul +cur +clh +cbB +aaU +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(90,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaU +aaU +aas +aaA +aaC +abn +abq +abG +ack +aaA +adb +anU +aaR +aqa +awY +adO +acN +amZ +acN +aqY +ajz +alM +axK +axX +azk +acN +acN +azl +aJw +anU +anU +anU +aLw +abS +axT +aQb +aaS +aAY +avj +aSN +aVI +aBF +aKy +anU +aNk +aNL +aNL +aPq +aUC +aNL +aTO +aTP +aYT +baA +bFI +aYT +aYT +bdg +bdg +beJ +beJ +aXk +bjg +aXl +cut +aaa +aaa +aaa +aaa +aaa +aaa +baZ +bjg +bhS +beJ +beJ +bGI +bXP +aaa +aaa +aaa +aaa +aaa +ceE +bjg +ceF +beJ +beJ +bGI +aaa +aaa +aaa +aaa +aaa +aaU +bgW +biG +cve +bky +biA +biA +cDj +cDy +bWT +bXh +bYa +bYw +bYL +bZE +bZE +csP +cGk +cGn +cct +bYo +ckk +bYF +cct +bFu +bKe +bsM +bsM +bsM +cuY +bIk +bIk +cbB +cbB +cbB +cbB +cbB +cbB +cbB +cbE +ctW +cbD +ctZ +ctZ +cld +cus +cbE +aaU +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(91,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +cpC +ckl +aaa +aaa +aaa +aaa +aaa +aas +aaA +adB +aaF +aaJ +abm +acd +acl +acD +aaG +aeh +aqf +auS +agu +ajx +ana +agu +agu +agu +agu +aqf +asV +aCt +agE +atU +aAV +auV +aGP +bls +aKO +aLx +ayR +ayC +aQE +aMZ +aAZ +aCL +abS +aVO +aKh +anU +anU +abS +abS +aNL +aPz +aUG +aNL +aNL +aVu +aYT +baC +cPt +bcs +aYT +bdj +beF +beJ +beJ +bdg +bdg +bdg +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bdg +bdg +bdg +beJ +beJ +bGI +bXV +aaa +aaa +aaa +aaa +aaa +bdg +bdg +bGI +beJ +cis +bGI +aaa +aaa +aaa +aaa +aaU +aaU +bgW +biI +cqB +czA +cBt +csx +cDv +bgW +bWU +bXl +bXy +bWa +bYc +bXU +bXU +bWa +bJF +bKv +bYv +bYp +bYx +cPw +caz +bsU +bRV +bQQ +ccd +csV +cvt +bZT +bIk +aaU +aaU +aaU +aaU +aaU +aaU +aaU +cbB +cbB +ctN +clh +clh +ctN +cbB +cbB +aaU +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(92,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aas +aaA +aaH +aic +aaF +aaF +acu +aaA +acU +adK +aeL +asO +auT +ahE +akQ +ahE +ahE +ahE +ahE +ahE +aqz +atV +aCW +aEC +aEL +aBa +aGG +aHH +aIs +aJy +aKt +aKC +aLn +aQH +aMq +aQm +aSh +aTR +aWS +bpS +anU +aLW +aaS +abS +aLZ +aPB +aUV +aYB +bbg +bcH +bnZ +bqi +bIl +bcJ +bOY +bdr +beJ +beJ +beJ +bdg +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +bdg +beJ +ceI +bGI +bXV +aaa +aaa +aaa +aaa +aaa +aaa +aaU +bGI +beJ +bbI +bGI +aaU +aaU +aaU +aaU +aaU +aUk +bgW +bgW +csl +cAQ +bgW +bgW +cEb +bgW +bWV +bXh +bXA +bXU +bpz +aaa +aaU +bXU +bKs +bKv +bYv +bYq +cPv +bYH +bYv +bFx +bSd +bTh +bto +bTh +cvQ +crW +ceb +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +cbB +cbE +cbB +cbB +cbE +cbB +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(93,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aas +aaA +abl +aaF +aaQ +abA +abA +acC +acZ +adW +asV +aeM +adA +aed +afl +afl +afl +aiK +ajA +ajA +aew +avg +aew +axi +atW +aCE +aCH +anU +anU +anU +aPX +abS +ayI +aQM +aSx +aTF +aUv +aVz +aWe +aTF +aWC +aXi +aXO +aYS +aZM +bbp +bcN +aYJ +aNL +aVJ +aYW +baF +bIr +bcx +cvZ +bdr +beJ +beT +bbI +bdg +aaU +aaa +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaa +aaU +bdg +cmd +beT +bGI +bXV +aaa +aaa +aaa +aaa +aaa +aaa +aaU +bGI +beJ +beJ +bGI +aaU +aaU +aaU +aaU +aaU +aTV +aUo +aVW +cDH +bbS +aUk +bVL +cEc +bXr +bWW +bXh +bXB +bXU +bpz +aaa +aaU +bXU +aJV +brz +bYv +bTg +bYy +crf +bYv +bIe +bSe +bto +csZ +bto +cEP +cRq +ceb +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(94,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +cpB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aas +aaA +abk +abo +abw +abP +acy +aaA +adb +anU +aeQ +aeM +ani +aew +aeJ +aeJ +aeJ +aew +aeJ +aeJ +aeJ +avF +aeJ +aeJ +aeJ +aew +aDW +aew +aIn +aew +aFG +aew +aew +ayT +aRO +aBI +aDs +bfw +aYo +aKo +anU +aaS +aMP +abS +aOv +aPH +bcQ +aUC +aNL +aVJ +aYX +baD +bIV +bKg +cwa +bdr +beJ +bfd +beJ +bdg +aaU +aaa +aWZ +aWZ +aWZ +aWZ +aWZ +aWZ +aWZ +aaa +aaU +bdg +beJ +bfd +bdg +bXV +aaa +aaa +ceD +aaa +aaa +aaa +aaU +bdg +beJ +coR +bdg +aaa +aaa +aaa +aaa +aaU +aUi +aUp +aWm +cDH +bcB +aTV +bVM +cEd +bWs +bWs +bXh +bXJ +bXU +bpz +aaa +aaU +bXU +bKs +bLG +bYv +bYv +cwb +bYv +bua +bJE +bSd +bTh +cqz +bTh +cRi +cum +ceb +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cpB +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(95,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aan +aaA +aaA +aaA +aaA +aaA +aaA +aaA +ada +anU +aeQ +aeM +adD +aew +afn +agI +aid +aew +ajG +alU +aew +awH +aew +axj +ayQ +aew +aDY +aew +aew +aew +aQf +aSX +aew +ayU +aSQ +aAB +aDt +asL +aYr +asL +anU +abS +abS +abS +aNL +aPq +bdx +aYO +aNL +aVL +aYT +baG +bbM +aZA +aYT +bdy +beM +bfd +beJ +bdg +aaU +aaU +aWZ +aXC +aYg +aYz +aZf +aZr +aWZ +aaU +aaU +bdg +beJ +bfd +bdg +bXV +aaa +bdg +buB +bdg +aaa +aaa +aaU +bdg +beJ +beJ +bdg +aaa +aaa +aaa +aaa +aaU +aUi +aUu +cnu +cDI +cDT +aTV +bQZ +cEd +csO +cEu +bXh +bXK +bWa +bYc +bXU +bXU +bWa +bKt +bLU +bRM +bRO +bRR +cyt +bDT +bKd +bTi +caO +ckb +cuZ +cRj +cFV +ceb +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(96,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aay +aaz +bPo +bPo +bPo +bPo +bPo +aaz +aeg +anU +aeV +aeM +adE +aew +afG +agP +agP +aiL +ajT +anu +ask +ayF +aCX +aEE +aEE +aES +aGT +aHT +aJt +aJN +aQg +akv +aew +ayU +aSQ +aTg +aDu +asL +aYq +aXu +aZU +aZV +beb +aNO +aNL +aPq +bex +aNL +aTO +bhh +aYT +aYT +bbP +aYT +aYT +bdg +bdg +bJy +caW +bdg +aaU +aaa +aWZ +aXD +aYk +aYk +aYk +aZs +aWZ +aaa +aaU +bdg +caW +bJy +bdg +bXV +aaU +bdg +bjg +bdg +aaU +aaU +aaU +bdg +beJ +beJ +bdg +aaa +aaa +aaa +aaa +aaU +aUi +aUu +aWm +cDH +bOt +aTV +bIg +cEe +cEs +cEv +cEx +cEA +cEJ +cEM +cEJ +cEJ +cEJ +bKu +bQv +bRN +cEs +bRS +cEN +cEO +bIc +bRX +cRn +cvS +cmR +cRp +cRk +ceb +aaU +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(97,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +anU +agv +aeN +abS +aew +afJ +agP +agP +ajB +akv +anw +aym +azN +aDe +aDe +aDe +aET +aHg +aHS +aLf +aJO +aQi +alU +aew +ayW +aSQ +aAB +aDB +asL +aYq +aXu +aZV +aZV +beb +aNS +aOw +aPq +bcQ +aNL +aTY +aWk +aXR +azd +aTS +aRW +bcR +bdN +beJ +bfd +beJ +bdg +bdg +aaU +aWZ +aXE +aYk +aYA +aYk +beg +aWZ +aaU +bdg +bdg +beJ +bfd +bGI +bYd +bGI +bGI +bzb +bGI +bdg +bdg +bdg +bGI +beJ +bbK +bGI +aaU +aaU +aaU +aaU +aaU +aTV +aVh +biP +cDH +bcC +aTV +bIn +bIN +bIO +bIQ +bIR +bIQ +bIQ +bIR +bIQ +bIS +bIQ +bIQ +bQP +cfZ +bWX +bWX +ckf +btn +bIh +bRY +bTD +czH +bKf +cRl +cRr +bIk +aaU +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(98,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +abp +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +abp +aaU +aaU +aaU +aaU +aaU +aaU +aaU +akE +akE +ans +apg +aqE +aew +afY +agP +agP +aiL +akv +anw +akv +akv +akv +akv +aAh +aew +aEW +alU +akv +aKa +aKw +alU +aew +azc +aSQ +aAB +aDL +asL +aYq +aXu +aZW +aZV +beb +beb +beb +aPM +bcQ +aNL +aNL +aWl +aXR +aRI +aTS +aRW +bcR +bcR +cmd +bfd +bgz +bgx +bdg +bdg +aWZ +aZf +aYk +aYk +aYk +aYg +aWZ +bdg +bdg +beJ +beJ +bfd +blc +bYP +coS +aXc +aXc +aXc +aXc +aXc +aXc +aXc +aXc +aXc +bGI +aaU +aaU +aaU +aaU +aaU +aTV +aTV +aTV +bAc +brw +aTV +bVM +cEf +bWx +aab +bXo +bXQ +bXZ +bYi +bYk +bWa +bWa +bXU +bXU +bXU +bXU +bXU +bWa +bIk +bId +bKN +bTD +cmS +ccm +coH +bJH +bIk +cOI +cOI +cOI +aaU +aaU +aaU +aaU +abp +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(99,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aak +aak +aak +aak +aak +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +bhy +alq +alq +apn +aqF +aew +agD +ahr +aiH +aew +akw +aoB +akw +aqD +aew +ayh +aew +aew +aUy +alU +akv +aym +aQg +akv +aew +azf +aCb +aFT +bjV +bpW +aZO +aXu +aZX +bcr +beO +beO +beb +cDp +beL +aRm +aNL +aXw +aXR +aRW +aTS +aRW +bcR +bdU +beJ +bfd +beJ +bii +coP +bdg +aWZ +aVG +bnu +bnV +aYl +aZu +aWZ +bdg +byV +bzB +bgA +bWf +bXm +bZQ +bWq +ccN +cei +ccN +ccN +ccN +ccN +ccN +coZ +blO +bGI +aaa +aaa +aaa +aaa +aaU +aTV +aVk +bfu +csu +cAS +cDV +cDX +cEg +bWx +bSE +ckR +bSE +bSG +bTc +bSE +bSE +aaU +aaU +aaU +aaU +aaU +aaU +aaU +bIk +bIj +bKO +bTD +cry +ccm +cOx +cOA +cOE +cOJ +cOP +cOT +aaU +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cPf +cPf +cPf +cPf +cPo +abp +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(100,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aar +abM +abR +abR +abM +aZG +aaU +aaU +aaU +aaU +aaU +aTd +aaU +aaU +aaU +aaU +aaU +aaU +aTx +akE +akE +anC +app +aqH +aew +aew +aew +aew +aew +aew +aew +aew +aew +aew +axk +asz +aew +aGV +akv +aLv +alU +aQA +aSZ +aew +aAP +aEc +bjB +asL +asL +bfm +aXA +aZY +bct +beP +beP +bjv +cDq +bhz +ccQ +ccS +aXB +aYY +aSc +aTT +aUH +bcX +bel +cpl +bfi +bgA +bLH +bji +bli +aWZ +aWZ +aWZ +boe +aWZ +aWZ +aWZ +beJ +bSW +bUy +bJG +aZy +aZy +aZy +aZy +aXg +bfd +bjg +bUt +bai +baV +cKF +bbn +cKG +bGI +aaa +aaa +aaa +aaa +aaU +aTV +aVq +bfx +cuQ +cpP +aTV +bVR +cEh +bWy +buf +bJu +bSQ +bSY +bTd +bTj +bSE +aaU +aaa +aaa +aaa +aaa +aaa +aaU +bIk +cpw +bKP +cRo +crA +cdW +cOy +cOB +cOF +cOK +cOI +cOI +aZG +aaU +aaU +aaU +aTd +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aTx +abM +abR +abM +abM +cPo +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(101,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aar +abM +aca +acG +acG +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +akP +als +anW +apr +aqJ +arR +ajC +agH +akC +amb +amk +auH +ape +civ +avG +axl +aCu +aew +aFG +aIz +aew +aPZ +aQY +aTa +aew +aDi +bGY +aDX +aIq +atc +aYq +aXu +baa +bcL +beS +bgm +bjC +cDr +bhW +ccR +aNL +aXG +aXR +awO +aUc +cjq +bcR +bcR +bcR +bcR +bgE +bLJ +bLV +bfi +blE +bBW +bgA +aww +awL +aGC +aON +aGC +bTu +bUC +bVQ +aZy +bTp +bRe +baw +bZA +cfQ +bZA +bZA +bqB +bZS +bZS +bZS +bZS +bZS +aaa +aaa +aaa +aaa +aaU +aUi +ciC +bzz +cvM +cts +aTV +bVM +cEf +bWz +bSE +bSK +bSR +bSL +bTe +bTM +bSE +aaU +aaU +aaU +aaU +aaU +aaU +aaU +bIk +bJD +bKQ +bYB +cgr +bIk +cOz +cOC +cOG +cOL +cOL +cOU +aaU +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cPg +cPi +cPj +abR +cPo +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(102,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aar +abM +ace +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +abp +aaU +aaU +aaU +aaU +aaU +aaU +aaU +akE +akE +akE +akE +akE +akE +ahm +ako +alx +bfa +aaj +bNM +civ +cix +avG +axm +aCC +aCK +aFZ +aew +aew +awQ +ayO +aBx +aoF +aHR +ccM +aDX +aJU +atc +aYq +aXu +baj +bcP +bfg +bgy +bjD +aNO +bcQ +aNL +aUD +aXR +aXR +cjy +aTS +aQL +aUX +aZE +aVS +bcR +bgF +bcR +bLX +bLY +bLY +aVd +bLY +bQg +bQw +bLY +bLY +bLY +bTy +aZy +bVU +aZy +bJm +bbm +baw +aXe +chU +cjw +cjw +cke +clu +cmP +clw +bZZ +bZH +aaU +aaU +aaU +aaU +aaU +aTV +aYf +beo +cuQ +cwe +aTV +bVS +cEi +cEt +cEw +cEy +cEB +cEK +bSS +bTl +bSE +brU +brU +brU +brU +cdZ +brU +brU +bIk +bIk +bIk +ccB +cFW +bIk +cGb +bRI +cOH +bRI +bRI +bRI +bCh +aaU +aaU +aaU +cpz +cpz +cpz +cpz +cpz +cpz +cpz +aaa +aaa +aaa +aaa +cPk +abR +cPo +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(103,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aar +abR +ace +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUo +aaU +acL +afs +aiT +aco +alG +cjo +aaj +aGc +bNT +ciy +cnF +bGU +bHl +aoF +asW +atz +avJ +awS +azB +aBC +atc +aIF +aJv +aJZ +aLY +aNA +bkF +aXu +aXu +bcU +aXu +aXu +bjD +aQn +bcQ +aNL +aUE +aXR +aQG +aRW +bsb +aUI +aUY +bew +aUY +aWb +aRW +bcR +cpc +bjj +bjj +bmh +bnv +bou +bQx +bqj +bjj +bjj +bjj +aZy +bVV +bWg +aWg +bbo +baw +bZC +cjv +aYc +bZF +bay +bZU +cnW +bbq +bcp +bZH +aaU +aaU +aaU +aaU +aaU +aTV +bHH +aWp +czf +coI +aTV +bVT +cEj +bWA +bSG +bSL +bSS +bUJ +bSS +bSL +bSC +brZ +btf +btU +cec +brU +ced +cej +bCh +bRL +bIs +ccC +cGN +cFn +cGc +bMj +bMj +bMj +cfb +cFP +bCh +aaa +aaa +aaU +cpz +bNr +bQU +cuv +cLC +cCQ +cwT +aaa +aaa +aaa +aaa +cPk +abM +cPp +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(104,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aar +abM +acf +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +bUo +aaU +acL +afF +aip +beV +aco +amd +aaj +cit +ciw +ciz +ciB +bGV +bHm +aLu +ata +ata +ata +awT +aAk +cjN +atc +aIG +aRU +aDX +aYI +atc +aVQ +aWa +aWa +cCV +aYt +aBY +aOB +aNO +bcQ +aNL +aUL +aXR +aQK +aRW +bzT +cnq +aVe +aRH +aVe +aWc +aRW +bcR +bcR +bcR +bcR +bmi +bnx +bpn +bQx +bqA +aZy +aZy +aZy +aZy +bav +bWh +csG +bQA +aZy +bZV +bZJ +bZF +cpu +bax +cea +bZX +ccY +cab +bZH +aaa +aaa +aaa +aaa +aUk +aUk +aUk +cnm +czz +aUk +aUk +bWa +cEk +bWa +bSE +bSM +bST +bSZ +bTf +bTm +bSC +bsa +buA +bJK +ceg +bqT +cee +cef +coc +bTz +bTE +ccD +cGO +bTE +cGd +cvT +cFA +ckh +cFK +cFQ +bCh +aaa +aaa +aaU +cpz +bNv +cAC +cCk +cCv +cCS +cpz +aaa +aaa +aaa +aaa +aaa +aRv +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(105,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +acM +aaa +aaU +aaa +aaa +aaa +adj +adj +adj +adj +adj +adj +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +aaj +avi +aal +aal +aal +bGW +aco +apH +aoF +auP +bGf +bHh +cqd +cBb +aFP +aKi +aMN +aQw +coU +atc +aVV +aSg +aXM +aYq +aYt +baB +aOB +aQo +bix +bcS +aQo +aXR +aQL +cjq +aQL +aQL +cjq +aQL +aQL +aTS +aRW +bcR +bjG +blk +blF +bmn +bnz +bpw +bQx +bll +aZC +bcz +bad +bah +baR +bWi +aWh +cmN +aZy +baE +bRZ +bZF +csH +bay +bKw +bZH +bZH +bZH +bZH +aaa +aaa +aaa +aaa +aUk +bmG +bmG +bmG +cDN +bmG +aUk +bWr +cEl +bWB +bSE +bSN +bSU +bTa +bau +bTn +bSC +bRH +bth +cOd +ceg +brl +cef +cnZ +bRI +bTA +bVO +cfN +cPx +ckd +cGe +bMj +bLI +ckj +cFL +cnX +bCh +aaa +aaa +cpz +cpz +cpz +cAD +cCl +cCw +cpz +cpz +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(106,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +adj +aeC +afv +adF +agM +adj +aaa +aaU +aaU +aaj +aaj +aaj +aaj +aaj +aaj +aau +ahn +ajH +ajY +alB +amj +ape +aal +ciu +aal +ape +amj +aCM +bHd +afX +atc +auW +avL +axw +cqH +bhN +aIC +aDP +aPs +aGh +csn +atc +aVZ +aXL +cqN +aYq +aYt +baH +bcR +aPr +biC +beJ +bft +bdg +aaa +aaa +aaa +aaa +aaa +aaa +aQL +aTS +aRW +bcR +bjX +cpn +blJ +bmZ +bnA +bpy +bQI +bll +aZI +beG +bae +chP +baS +bWj +baS +bbr +aZy +bJC +bZK +bZF +cjx +bay +baX +bZH +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aUk +bwK +bAF +bmG +cDN +bmG +aUk +bWc +bWo +bWC +bSE +bYV +cEC +cEL +bvn +bSC +bSC +bRJ +bth +bTB +cek +csK +cKk +cKl +cKm +cKn +cKo +bYI +cPP +bIq +cqZ +bMj +bLW +cFF +cFM +cnY +bCh +aaa +aaa +cpz +cvU +ctO +cAE +bNs +cLF +bNA +cpz +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(107,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +adj +aeR +afx +aga +afI +adj +aaa +aaa +aaU +aaj +aaE +acn +acn +acn +acn +afw +acn +ajN +amS +amS +aoX +amS +amS +aDE +amS +amS +aKR +apY +bRa +cjO +atc +aVr +avM +avL +csw +aBK +aID +aLX +aSJ +aHZ +atc +atc +ayd +ayd +ayd +chJ +aOo +baM +bcR +aPr +biC +beJ +bft +bdg +aaU +aaU +aaU +aaU +aaU +aaU +aQL +aTS +aRW +bcR +bku +bll +blK +bmn +bnD +bpC +bQx +bll +baz +aZN +bCS +bak +bAI +bWk +cdE +bbs +aZy +bKR +cnN +bZF +cCJ +cnP +bZS +bZS +bGI +aaa +aaa +aaa +aaa +aaa +aaa +aUk +bmG +bmG +bmG +cDN +bmG +aUk +bWb +cEm +bWL +bSE +bSP +cED +bTb +bCX +bSC +brk +bsp +bth +bth +ceg +brU +bSX +cel +bCh +cEQ +bXn +bYJ +bSa +bSc +bSg +bMj +cFB +cFG +cFN +cvw +bRI +aaU +aaU +cpz +bMN +bMJ +cAG +bMJ +cLG +bNB +cpz +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(108,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +add +adC +adC +adC +aeS +adj +adj +agN +ahL +ahL +ahL +ahL +afD +afQ +age +age +agy +age +age +afC +akK +akG +alC +aal +ape +aal +aDU +aal +bGH +aal +aOH +aal +arb +atc +atc +atc +atc +csA +aCa +aCa +aId +aIx +aJx +aVc +ayd +cfR +aLl +ayd +cDk +ayd +ayd +bGI +aPw +bmC +aYP +bft +bcR +bdg +bdg +bdg +bdg +bdg +bdg +bcR +bgN +bgF +bcR +bcR +bcR +bcR +bna +bnP +bpF +bQY +bqK +aZy +aZy +aZy +bak +baw +bWw +aZy +aZy +aZy +bZH +bZH +bZA +cCK +bZH +bZS +bSB +bTT +bTW +bTW +bTW +bTW +bTW +bTW +bmE +bUu +aUk +aXt +cDK +aXt +bwm +bWa +cEn +bWR +bSH +bSG +cij +bSG +bFB +bSC +bhx +bqv +bti +btY +cod +cdZ +bss +cem +bRI +cER +cEU +bSh +bCh +bCh +bSh +bMj +cFC +cFH +bCh +bCh +cpz +bMl +bMl +cpz +bMO +bMJ +cAH +cvy +cLH +bNC +ctD +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(109,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +adf +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +adM +aaj +aaI +ami +akX +akX +akX +akX +aqV +arS +akX +akX +akX +akX +avN +awy +avN +avN +avN +aBk +avN +aDa +aDS +aDS +aDS +aBy +cwf +cBc +cBu +cBE +cKD +cBo +cBZ +cCb +cCe +cCe +cCe +cDl +cCn +cCp +cCq +aRb +bjU +aYQ +bgc +bgd +bgd +bgG +bgd +bgd +bgd +bgd +boo +bTw +bgE +coO +bkx +blo +blo +bnc +bnR +bpG +bQx +bqY +brM +bwr +bkx +brI +blo +bWE +blo +bGr +bIZ +bVI +blo +aYH +cCL +aYH +bGI +bTt +bGI +but +but +but +but +but +but +bUq +bUv +bUq +baL +cDO +bbl +bbA +bbW +cEo +bbl +coB +bbl +cEF +buD +bFC +bqc +brm +bst +bst +bst +csj +bst +bst +coV +bCh +cES +cEV +cgf +cFj +cFo +cFr +cFt +cFD +cFI +cFO +cFR +ctD +bMo +cob +cpz +bMP +bMJ +cAK +bMJ +cLI +bND +cDe +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(110,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +adf +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aiM +aaj +aaI +aco +akX +alA +aoe +apA +aqX +arU +apA +atN +auv +akX +avO +awz +ayp +azb +avN +aBl +aBP +aDc +aBQ +aEJ +aFM +azP +aFf +aIu +aKJ +aKJ +cKE +aKJ +aKJ +aKJ +aKJ +aKJ +aKJ +aXK +aYw +aYV +baJ +bcf +bke +bmq +bmL +bgu +beJ +beJ +beJ +beJ +beJ +beJ +beJ +biS +bjR +cCG +bUw +cCG +cCG +bpx +cCG +cCH +bRf +cCG +cCH +cCG +bUw +bVJ +cCG +bWF +cCG +cfz +cCG +cCG +cCH +cCG +cCM +cCG +cCN +coM +cpr +cpx +cpx +cpx +cpx +cpx +cpx +crV +crY +crZ +csJ +cDP +bUI +bUI +bVB +cEp +bUI +cqe +cqg +cEG +bdv +bqr +bqe +brq +bst +bst +bVP +cKh +btj +btj +bAo +cuW +cET +cEW +cka +bQk +bQk +bQu +cFu +cFE +cFJ +bQL +cFS +cFT +cFU +bNg +bNh +bNj +bNw +cPc +cCm +cCx +cDb +cDf +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(111,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +adf +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aiM +aam +aaI +acw +akX +alE +aoi +apD +arf +arZ +atp +atT +aux +akX +avR +awC +ayq +azp +avN +aBo +aBQ +aDd +aBQ +aEK +aFM +azQ +aFi +cBe +aEv +aEv +aEv +aEv +aEv +aEv +aEv +aEv +aEv +aMH +aMS +aNI +aOS +aQD +bkP +aZJ +beJ +beJ +beJ +beJ +beJ +btG +beJ +beJ +beJ +biW +bqd +bcf +bwU +bcf +bcf +bCi +bcf +bCp +bcf +bcf +bCs +bcf +bwU +bCD +bcf +bcf +bcf +bGt +bJB +blB +cCI +blB +blB +bRg +bWH +bWM +bZr +cde +cmF +crk +cmF +cmF +cwU +cAT +cBA +cCT +cCU +cCY +cCU +cCU +cCZ +cDQ +cEq +cID +bZm +cEH +bdv +bqr +cyy +cyA +bst +cyE +cyK +buJ +bst +bst +bAq +cuX +bFJ +cEX +clv +bWD +cqb +bKy +cFv +bJI +bJI +bLL +bMa +ctF +coJ +cpb +cpz +bMR +bNx +cBD +cLA +cCy +cLP +cLT +cLU +aaa +aaa +aaa +aaa +aTd +aaa +abp +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(112,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +adf +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +aiM +aap +abd +abT +akX +alO +aok +akX +arh +asb +akX +atY +auB +akX +avS +awC +ayr +azA +aAf +aBr +aBR +aDf +aDZ +aEN +aFM +aAe +aFC +cAW +aHk +aIi +aHQ +aHQ +aHQ +aJT +aHQ +aHQ +aHQ +aHQ +aOz +aHt +bGI +bGI +bkU +aZJ +bGI +bGI +bGI +crr +bjj +bjj +bjj +bjj +bIP +bje +bqn +bjj +bkx +blC +blO +bnr +blO +blO +blO +baf +bRs +bxk +bkx +bjj +bFA +bjj +bIP +bGA +bGE +bLg +bMG +bPR +bGE +bRy +bSA +bTw +cwW +bTY +bTY +bTY +bTY +bTY +bTY +cwX +cqY +bUE +baO +cDR +bFc +bFc +cDa +cEr +bPQ +cIE +cEz +cEI +bXi +bga +caQ +bXC +bvK +bHI +bYK +buK +bst +bst +bKi +bPP +bQa +cEY +cqW +bJg +bQl +bYG +cFw +bpa +bQn +bQC +cmZ +cpz +cvs +cwg +cpz +bMl +bNy +cBG +cpz +cCz +cpz +cpz +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(113,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +adf +aad +aad +aad +aad +aad +aad +aad +aad +aad +aad +adM +aaq +aaI +acF +akX +akX +akX +akX +arj +ase +akX +akX +akX +akX +avX +awF +ayt +azC +avN +aBt +aBZ +aDd +aEd +aEO +aFM +aAj +aIk +cBf +cBv +aIj +aHs +aHs +aHs +aHs +aHs +aHs +aHs +aHt +aNp +aHt +aPb +bGI +blm +baq +bGI +aPb +bGI +bgL +bGI +bdg +bdg +bdg +bGI +bjh +bqF +bGI +aWB +bsl +cjJ +aXH +cbA +cbH +ckZ +aZv +bRP +aWB +aWB +bDN +cpv +bDN +bGI +bdg +bdg +bGI +bGI +bGI +bGI +bRB +bGI +bTt +bGI +but +but +but +but +but +but +bUq +bUv +bUq +baQ +cuR +cvl +cvl +cKe +cNh +cNw +cIF +ccp +bqo +buF +bpA +bqe +ceY +bwf +bHJ +cbr +cDE +cDG +cEa +buS +buS +bFX +cEZ +bAs +ayY +baT +baT +cFx +bpb +bqO +bru +coY +cpz +bMr +cwh +cwl +bNm +bNz +cBT +cpz +cCD +cDc +cpz +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(114,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +adh +adC +adC +adC +afb +adj +adj +agO +adj +adj +adj +adM +aat +abf +acF +acI +aem +aex +aht +aRz +brB +ank +arJ +amo +acF +avN +avN +avN +avN +avN +aBw +aBZ +aDo +aDo +aEP +aFM +aAj +aFC +cBg +aIj +aHs +aHs +aaU +aaU +aaU +aaU +aaU +aaU +aHY +aHY +aHY +aHY +aHY +bln +bmy +aNT +aNT +aNT +aNT +aNT +aaa +aaa +aaU +aSt +bjk +bqG +aWB +aWB +aWK +aXo +aXI +aYn +cda +aZj +aZw +bRQ +aZQ +aWB +aWB +bGI +bGI +bGI +aaU +aaU +aaU +bGI +aSV +bGI +bRW +bgY +cgC +bTT +bTZ +bTZ +bTZ +bTZ +bTZ +bTZ +bUr +bUz +bUq +bbh +cuR +cvm +cDn +cKf +cNi +cvl +cIF +ccp +bqr +bbh +bpB +bqm +bqm +byw +bst +cbr +cDF +cDJ +cKC +cDh +cPR +bFJ +cFa +cFk +cFl +cFp +cFp +cFy +bbt +bqP +brO +bQB +ctD +bMs +bMA +cwm +bMT +bNG +cCa +cCo +cLL +cDd +cwg +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(115,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +adj +adY +afc +afy +agb +adF +ahM +ahM +aie +adM +bHX +abY +acF +acV +adi +aeT +afq +aij +cdI +adi +adi +anl +acF +aVD +axP +aCA +bGM +avN +avN +aCh +aDp +aDp +avN +aDS +aAU +aFC +cBh +aHs +aHs +aaU +aaU +aaa +aaa +aaa +aaa +aaU +aHY +aTL +aVA +aWi +aWo +blr +aXq +bbj +bda +bol +aSl +aNT +aaa +aaa +aaU +aSt +bjk +bqG +aWB +aWG +aWM +aXr +aXJ +aXr +cjG +aXr +aXr +bRU +aZR +aWI +aWB +aaa +aaa +aaa +aaa +aaa +aaa +bGI +bGI +aRy +bSk +aRy +bGI +bGI +aaa +aaa +aaa +aaa +aaa +aaa +bUq +bUq +bUq +aaa +cuR +cvn +cDo +cLB +cNj +cvl +cIF +ccp +cpH +bbh +bqs +bXz +bqm +byD +bHJ +cbs +buS +cDZ +czg +czt +cPS +czD +cFb +bEl +bJn +bQm +cbf +bop +bpe +bQz +bXD +cna +cvo +cvO +cwi +cwn +cwu +cAB +cCc +cCr +cLD +cuv +cCr +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(116,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aaU +aaU +aaU +aaU +adj +adY +aeR +adF +adF +adF +adF +adF +aig +adM +aiZ +ajL +acF +adg +adi +aeU +aeU +agr +alD +anj +ajJ +ajJ +auM +ayD +ayD +ayD +aIe +aLg +aEo +bnJ +bHo +bHq +bHf +arw +aBg +aGg +cBh +aHs +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaU +aHY +aVg +aQF +bba +bcK +bmg +bmD +bmR +bnK +bnL +aSm +aNT +aaa +aaa +aaU +aSt +bjk +bqG +aWB +aWI +aWO +bPz +bQf +aYs +cjZ +aYs +aYs +bSV +aZS +aWG +aWB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +bqX +bSr +bqX +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +cuR +cvp +cFY +cLE +cNk +cuR +cIF +ccp +cJe +bbh +brJ +btv +bqm +bzJ +bst +cbK +buS +bAJ +czh +czu +cPT +czE +cFc +bEl +aJD +bbx +bbZ +boq +bpg +bpg +bAy +bQJ +cpz +bMu +bMC +cwo +bMU +bNc +cCg +cCr +cLD +cuv +cCr +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(117,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +abp +akN +aTd +aaa +abp +aaa +aaU +adj +adY +afc +afz +agk +agR +afz +ahR +afz +aiW +ajp +ajR +agj +agq +agq +agq +acH +ags +alK +agq +anR +apf +auQ +azz +azz +azz +azz +azz +aUA +boH +bDZ +bEF +bHx +bHk +aBh +aGx +cBh +aHs +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aHY +aIv +aIv +aJW +aHY +aRQ +aYe +aNT +aUO +aQU +aSn +aNT +aaa +aaa +aaU +aSt +bjk +bqG +aWB +aWI +aWP +aXy +aXN +aXy +ckg +aXy +aXy +aXy +aZZ +bag +aWB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +bqX +bSs +bqX +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +cuR +cuR +cFZ +cLJ +cNl +cuR +cIG +ccw +csM +cyo +bBs +blU +bqz +bAD +bIi +bBP +buS +caR +czi +cKj +buS +cFs +cEX +bIU +aJE +bbz +bjx +bot +bot +bjx +bAH +cRm +cpz +cvs +cwj +cwp +cwT +cpz +cCi +cCr +cLM +cvf +cCr +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(118,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aaU +aaU +aaU +aaU +adj +adY +aeR +afB +agp +agS +agp +agp +agp +aiX +ajr +ajW +agn +agw +ajJ +ahw +anQ +aUS +ckG +cwk +aBm +aoh +acF +arl +ayX +aDj +bGN +bGR +bHb +bvd +bHq +bHf +bHf +arw +aBi +aGx +cBh +aHs +aaU +aaa +aaa +aEQ +aEQ +aEQ +aEQ +aEQ +aHY +aHY +aHY +aHY +aHY +aTb +aWv +aNT +aNT +aNT +aNT +aNT +aSt +aSt +aSt +aSt +bjk +bqG +aWB +aWB +aWQ +aXz +aXU +aYu +ckY +aZn +aZx +bEs +bac +aWB +aWB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +bqX +bSs +bqX +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +cuR +cGa +cuR +cNm +cuR +cIH +cgv +coE +bxM +bDd +bXt +brH +bAE +bIL +cdX +buS +buS +buS +buS +buS +cnz +cEZ +bJa +aKZ +bbB +blv +czK +bph +bqR +bAM +cvx +bMk +bMw +bMD +bMv +bMv +cvs +cCj +cCu +cLN +cLS +cCr +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(119,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +adj +adY +aeR +afI +agt +agV +adF +adF +aih +adM +adm +aeH +acF +adJ +adi +afq +agY +aij +brB +adi +amf +aoc +asJ +asJ +asJ +asJ +asJ +asJ +asJ +bvt +aDv +bHu +bHy +bHB +aAj +aGx +cBh +aHs +aaU +aaa +aaa +aEQ +aFw +aDR +aDM +aLV +aDN +aDN +aDN +aDN +aDg +aUM +bfl +aOa +aPI +aPI +aPI +aPI +aPI +aTn +aPI +aPI +bjp +bqW +aUh +aWB +aWB +aWB +aXV +aYv +aYN +aWB +aWB +aWB +aWB +aWB +aye +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +bqX +bSs +bqX +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +cuR +cGf +cLK +cNn +cuR +cIF +cgB +bqr +bbh +bDm +bFE +bIf +bIt +bJd +bXq +cmK +cws +czv +cmU +crg +cvR +cFd +bEl +aMm +bbC +blw +blw +blw +blw +bAT +cez +bMl +bMv +bMv +bMw +bMv +cpz +cuc +cpz +cvs +cCl +cCu +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(120,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +adj +adM +adM +afe +afL +adM +adM +ahQ +ahV +aiI +adM +adt +aeO +acF +aek +aes +afr +ahi +ail +ckH +alr +avn +apb +asJ +atB +aBU +aDk +bGO +bGS +asJ +aDz +ark +bHv +aPF +aPF +aJA +aGx +cBh +aHs +aaU +aaa +aaa +aEV +aFy +aGd +aDM +aMg +aIa +aGE +aGE +aGE +aLi +aUT +baI +aOb +aPK +aPK +aPK +aPK +aPK +aVm +btR +aPK +bjH +brc +bkV +aVv +bkR +aWB +aXW +aWB +aZd +aWB +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +bqX +bSs +bqX +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +cuR +cGg +cLO +cuR +cuR +cIF +cgB +bqx +bbh +bPw +bqz +bqz +bzA +bRT +ciQ +col +cxh +czB +cnk +bqz +cKH +cFe +cFk +cFm +cFq +cRw +cFz +bqt +blx +bBn +ceA +bMl +bMw +bMv +bNi +bMv +coK +bMv +bNu +bMl +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(121,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +adj +adj +adP +aep +aeR +afI +agF +adM +adM +adM +adM +adM +adt +aeO +acF +ale +ale +ale +ale +aru +asf +ale +ale +ale +ale +azL +aCj +aDl +aIh +aLB +aVE +byR +bHr +bHv +aPF +bGp +aAj +aGS +cBh +aHs +aaU +aaa +aaa +aEV +aFz +aGe +aDM +aUK +aGe +alZ +alZ +alZ +alZ +aHU +aHU +alZ +alZ +alZ +aSt +aSt +aSt +bjA +aVv +cho +aWq +bro +bwa +bwY +bwY +bwY +bCl +bCn +aWd +aSt +aaU +bun +bxl +awq +awq +awq +awq +awq +awq +awq +aOe +aQv +aaU +bqX +bSt +bqX +aaU +cgI +cgN +cgN +cgN +cgN +aPg +aPg +cgP +aaU +aaU +aaU +aaU +cuR +cGh +cLO +cuR +cvL +cII +cgB +bqr +bbh +bPw +bqz +bqq +bzG +bFZ +ckp +com +cyu +czF +cDM +crn +cxf +cFf +bEl +aOF +bbE +coX +bbE +bbE +bqS +bQy +ceB +bMn +bMv +bMv +bML +bMv +bMv +bMv +bML +bMl +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(122,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +adj +adF +adF +aeq +afj +afN +adF +adF +adj +aaU +aaU +act +abQ +aeX +abU +ale +alQ +aol +ale +arz +ash +ale +aua +auF +ale +aAL +aCw +aPi +aPi +bGT +asJ +bHj +bHs +bHw +aPF +bGs +aAj +aGx +cBh +aHs +aaU +aaa +aaa +aEQ +aHn +aWt +aWz +aWW +aIc +alZ +alZ +aog +aog +axV +axV +aog +aog +alZ +bvv +aUh +cjM +aVv +aVv +bue +bue +bxf +bBY +bue +bue +bue +aXY +bCo +aWd +cho +aaU +bup +ajO +ajO +ajO +ajO +ajO +ajO +ajO +ajO +aQa +ajO +ajO +aRy +bSO +aRy +bfh +cgJ +bye +cmI +bXa +bfh +bfh +bfh +cgJ +aaU +aaa +aaa +aaa +cuR +cHZ +cLQ +cuR +bdC +cIJ +cgB +bqr +bbh +bPw +bqz +brK +bCf +bTC +ckD +cpI +cyF +czM +cGI +cHW +cxg +cFf +bJb +bJJ +bKh +bKz +bKS +bLq +bKz +bLM +bKz +bKz +bMw +bMv +bMv +bMv +bMl +bMl +bMl +bMl +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(123,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +adj +adF +adX +aeu +afk +afP +agK +adF +adj +aaa +aaU +act +adv +aeO +afW +ale +alT +aom +apN +arA +asn +atr +aud +auG +ale +aAO +asJ +asJ +asJ +asJ +asJ +bHk +bHk +bHk +aPF +aHt +aKc +aGx +cBi +aHt +aDM +aDM +aDM +aEQ +aDM +aDM +aDM +aXa +bdb +alZ +aog +apB +aFc +bfj +axV +axV +apB +aog +alZ +aUh +aUP +bCC +aZb +bue +bvc +bys +bCc +bGZ +bNN +bue +aXZ +aXX +aWd +aZo +aaU +avv +ajO +aGi +axI +axI +aGi +ajO +bFf +aPE +baW +aYZ +beu +beK +bTX +bWI +bWN +cbj +cdf +cny +bXk +cgL +cvD +cvF +cgJ +aaU +aaa +aaa +aaa +aRv +aaa +aaa +bbh +bdD +cIK +cgB +bqr +bcT +bPw +bqz +bsL +bzG +bFG +clc +bqz +bqz +bqz +bqz +bqz +cNJ +cAm +cAt +cAv +cFg +bKz +bKT +bLr +bKT +bLN +bMb +bKz +bMv +bMw +bMv +bMV +bMl +aaU +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(124,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +adj +adF +adX +aey +adM +adY +agK +adF +adj +aaa +aac +acE +adU +aeO +afW +ale +alV +aon +apO +arC +aso +apO +aon +auJ +ale +aBz +aEU +aGD +aJF +aJF +aJF +aJF +aHa +aHp +aHp +aIJ +aLc +aMo +cBj +cBw +cBF +cBF +cBF +cBF +cBF +cCf +aHG +aXb +aVC +alZ +aog +apG +aFN +axV +aLO +axV +aRL +aog +alZ +aUh +aUQ +aVM +aVN +bue +bvg +byE +bCu +bHa +bOB +bue +aYd +aYx +aWd +aZo +aaU +avv +ajO +bCv +axI +aNh +aNz +bDw +bFv +bHp +bLm +ajO +ajO +aRy +bUi +aRy +bfh +bfh +cdh +bzN +bYT +bYS +cvE +bYS +cgJ +bfh +aaU +aaU +aaU +aaU +aaU +aaU +bbh +bdF +cIL +ciF +aYG +bdu +biU +brF +bsN +bCg +bHC +cmB +bqz +cyG +czP +bBQ +cKi +cNV +cFf +bJc +bJL +cHO +bKz +bKU +bKT +cIg +cIj +bMc +bKz +bMv +bME +bMv +bMv +bMl +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(125,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +adj +adF +adX +aez +afu +afT +agK +adF +adj +aaU +abv +acP +aef +afg +agf +ale +ale +ale +ale +arD +asq +ale +ale +ale +ale +aBH +bGz +ayu +aim +aim +aim +aim +aim +aim +aim +aEh +aEq +aMG +aQS +aWr +aWu +aWu +aWu +aWu +aWu +bbQ +aWA +aXd +bre +alZ +apB +axV +aGp +axV +csC +axV +axV +apB +alZ +aSt +aSt +cho +aSt +bue +bue +byF +bCw +bue +bOC +bue +cho +aSt +ckI +aSt +brs +avv +ajO +avY +ajO +ajO +aOI +bDU +bGg +bIF +bLz +bNe +ajO +bQb +cnR +cJt +bfh +brb +bzN +bzN +bYU +cgM +bYY +bZb +cgJ +bfh +bfh +bfh +bfh +bfh +brs +brs +bcT +bdD +cIM +ciW +bqC +bdu +bXt +csi +bsP +bAC +bHC +bIM +bqz +cyN +czW +cFX +bRI +cyB +cFh +bJe +cRb +cHP +bKA +bKV +bLs +czL +cIk +bMd +bKz +bMl +bMl +bMl +bMl +bMl +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(126,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +adj +adF +adF +aeA +aeA +aeA +adF +adF +adj +aaa +chH +acS +aen +afi +agg +ahj +ajf +ajf +ajf +aAx +alN +ano +ano +ano +auZ +aBL +bnH +axh +anq +anq +anq +anq +anq +anq +anq +anq +bID +aHu +aGr +aOJ +aOT +aOT +aOT +aOU +aOU +aOT +aXP +aOT +aOT +aOJ +aog +axV +bfj +axV +axV +axV +axV +aog +aSG +aRh +aRq +aRq +aRq +aRq +bvz +byZ +bCy +bvz +bOV +aRq +cjD +bnU +bxm +bns +bxn +avy +alo +awn +aIS +aNo +aJp +bDW +bGB +aHq +bki +bPp +bPU +bQi +bUU +cNC +bWP +cbV +bzR +cvB +bOz +cwd +bYZ +bZc +cgQ +bZe +bZe +bZe +bZe +cjr +brL +brL +bVW +bVW +cIN +cjV +bdu +bdu +bXu +bqz +bsQ +bCY +bHE +bqz +bqz +bMj +cAc +cov +bMj +cyC +cFf +btp +bJN +cHO +bKz +bKW +bLt +cso +cIl +bMe +bKz +aaU +aaU +aaU +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(127,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +adj +adj +adF +adF +adF +adF +adF +adj +adj +aaa +abz +acX +agh +agB +aim +aim +aim +aim +aim +aqs +aqu +aim +aim +awc +axx +ayN +aAA +aBM +aCq +aDx +apy +arV +apy +axg +ceu +anq +bID +aHu +aGr +aOT +aPS +aSb +aTi +aUd +aTi +aWs +aYb +ban +bdd +aOJ +aog +ayK +bfk +axV +axV +bfj +axV +apB +aSH +aSt +aSt +aTs +cho +aSt +bue +bzD +bCE +bue +aSt +aSt +aSt +aSt +aWd +aSt +brs +avv +ajO +axZ +ajO +ajO +aPf +bEZ +bGD +bJk +bLC +cRf +bPV +bQT +bVq +cPG +bfh +cbY +cdn +cpf +bYU +cgM +bYY +bRx +cgJ +bfh +bfh +bfh +bfh +bfh +brs +brs +bcT +cIv +cIO +cgB +bTv +bcT +bQE +bqz +bqz +bqz +bJf +bqz +caj +cdY +cAo +cdY +cup +cyH +cFi +bMF +bNF +cHQ +bKz +bKT +bLr +bLt +cIm +bMf +bKz +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(128,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaU +adj +adj +adj +adj +adj +adj +adj +aaU +aaa +acb +aft +agz +adt +abB +afE +afE +afE +afE +aFu +aeO +aeY +aeY +aeY +aeY +aBN +awN +awN +anq +anT +anT +anT +anT +anT +anT +cex +bNp +aFC +aFF +aOU +aQt +aSf +aTj +aTv +aTv +aTv +aYi +baU +bdh +aOJ +aog +aog +axV +aHV +aRr +axV +aog +aog +aSH +aZz +aaU +aaU +aaU +aaU +aRv +aaU +aaU +aRv +aaU +aaU +aaU +aSt +cpG +aSt +aaU +avv +ajO +aze +azJ +aNr +bCF +bDw +bPK +bKx +bmv +ajO +ajO +aRy +bVC +cRh +bfh +bfh +bBR +cqf +bYX +bYS +cvE +bYS +cgJ +bfh +aaU +aaU +aaU +aaU +aaU +aaU +bbh +cIw +bjm +cgB +bYW +bcT +bQE +bsV +bsG +bHD +bHD +bMj +caH +chV +cDL +cox +cvu +cyI +cyL +cyM +bJO +cKp +cHS +cHU +cIb +cvv +cIn +bMg +bKz +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(129,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aaU +aaU +aaa +aaa +aaa +abz +acP +aef +acS +abC +ahY +ajg +abI +acQ +aHr +aeO +aeY +ahB +aiY +aeY +aCk +aeY +aeY +anq +aof +cpq +asa +aoL +anT +anT +cey +bRF +aFC +aFF +aOU +aQu +aSf +aTv +aTv +aTv +aTv +aYj +ban +bdl +aOJ +alZ +apB +aog +aog +aog +aog +apB +alZ +aSH +aaa +aaa +aaa +aaa +aaa +aWR +aaa +aaa +aWR +aaa +aaa +aaa +aaU +aSq +aaU +aaa +avv +ajO +aGi +axI +aIX +aGi +ajO +cRe +aZP +bmH +aYZ +bht +bcY +cyd +cRs +cgF +bfh +bBS +cqh +bXk +cvC +cvD +cvF +cgJ +aaU +aaa +aaa +aaa +aWR +aaa +aaa +bbh +cIx +bjm +cgB +bbh +bbh +bQE +bsV +bts +bHG +bQp +bMj +cbm +byQ +bHK +cGU +bXN +bHK +bIu +bJh +byQ +cHR +bKC +bKY +bKY +bKY +cIo +bKz +bKz +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(130,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aai +ade +aev +act +acQ +aiy +ajk +aqR +ats +aLb +aeB +aeY +ams +ahC +akS +aCo +aor +aeY +anI +aoL +anT +asa +bEz +bES +bES +bGv +ccg +aFC +ago +aOT +aQz +aSf +aTw +aTv +aTv +aTv +aYM +bbi +aOT +aOT +aOJ +aOJ +aOJ +bmF +bnT +bnT +aRJ +aRJ +chm +aaU +aaU +aaU +aaU +aaa +btT +bzE +btZ +btT +aaa +aaa +aaa +aaU +aSq +aaU +aaa +buv +ajO +ajO +ajO +ajO +ajO +ajO +ajO +ajO +aQa +ajO +bmM +bcZ +bVF +bTS +cgG +bfh +bEo +cqm +bZa +bfh +bfh +bfh +cgJ +aaU +aaa +aaa +aaa +ctG +cIh +ctJ +ctG +cIy +bjm +cgB +bbh +bpm +bQE +bsV +buj +bpD +bXL +bsV +cyO +byN +bzK +czw +bDa +coe +bIv +bJi +bDa +czw +byQ +cPQ +cIc +cIc +cIp +bxj +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(131,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +acQ +aiD +ajq +arc +atJ +bmp +bGi +aeY +ahF +apx +akU +aCp +aor +aeY +anL +aoU +anT +anT +anT +anT +anT +cex +bRF +aFC +aFF +aOU +aQB +aSf +aTv +aTv +aUU +aTv +aYj +ban +bdO +bfv +bfv +bfv +bkW +bmJ +bnS +bof +aQJ +aQJ +aQJ +aQJ +aQJ +aRZ +aaU +aaa +bvB +bzF +bCR +btT +btT +bvB +btT +btT +cjE +aaU +aaa +bux +bxl +azq +aCU +aCU +aCU +aCU +aCU +bbu +aQj +ajO +ajO +bdi +bWm +cjI +cgH +cgN +cgO +cgN +cgN +cgN +aPg +aPg +cgK +aaU +aTx +ctG +ctG +ctG +cIi +cLR +ctG +cIy +bjm +cmn +bWZ +bXj +bXv +bsV +bul +bpD +bsV +bsV +cyP +byQ +bzS +czw +cRv +bBu +crX +czI +bBu +cKq +cHT +cPy +cId +bLD +coA +bxj +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(132,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +ajw +acQ +acQ +acQ +acQ +acQ +ahD +asr +aeY +ahG +apM +akV +aqv +aor +aeY +anP +aqP +apz +asK +apz +btk +cev +anq +ccq +aFC +aFF +aOU +aQI +aSf +aTv +aTv +aTv +aTv +aZa +bbi +aOT +bfy +bgJ +bjL +blD +bmK +boi +bsx +aaU +aaU +aaU +aaU +aaU +aSq +aaU +aaa +btT +bzM +bCT +bHc +bQt +bUg +cch +ccy +aSq +aaU +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +cjH +aaa +aaU +bWv +aaU +aaa +aaU +aZB +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +ctJ +cuS +cvq +cIq +cMU +cvr +cIw +bjm +cgB +bbh +coC +bpO +bpE +bpE +bpE +bpE +bpE +cyQ +byQ +cCO +czx +czC +czG +bIw +czJ +bBu +bKm +byQ +cHX +cKP +cOM +cOM +cOM +cOM +cOM +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(133,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ajw +ajw +aki +alg +alY +aoo +ajw +bAt +aeO +aeY +aeY +apZ +aeY +aeY +aeY +aeY +anq +anq +anq +anq +anq +anq +anq +anq +ccz +aHv +aFF +aOT +aQP +aSf +aTv +aTv +aTv +aTv +aZc +bbH +bdP +bdP +bgR +bdP +aOJ +aPN +bes +aaU +bQe +aye +bQe +aye +aaU +aSq +aaU +btT +btT +bzP +bCZ +bKl +bQW +bUp +cci +btZ +aSq +bgh +bIY +bIY +bRo +bIY +bRo +bIY +bIY +bIY +bIY +bIY +bIY +bRp +aaa +aaU +bWv +aaU +aaa +aaU +aZB +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +ctK +cuT +cuT +cuT +cMV +cNo +cIz +bWO +cIX +bZh +bZh +bZh +bZh +bZh +bsV +bze +bpD +cyR +byQ +crq +csp +bPS +bQc +bQj +bQo +bJP +bKn +byQ +cHY +cyS +cOM +cOQ +cOV +cOZ +cOM +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(134,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +cpB +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aaU +aaU +apv +apv +crP +ajw +ajX +akk +ali +amn +aop +aqb +bEI +bGj +aff +ahH +aqG +akW +any +aos +apk +atQ +atL +atk +bBd +bFN +atM +bFR +aff +cfe +aIk +aIU +aOX +aQQ +aSf +aTv +aTv +aUW +aTv +aZc +aVf +bdP +bfF +bha +bdP +abp +aPN +bes +aaU +aye +aaU +aaU +aaU +aWj +aSu +aRZ +btT +bwh +bAe +bDD +bKr +bRl +bUL +btT +btT +cjE +bsz +aaU +aaU +cdV +cdV +cdV +cdV +cdV +cdV +cdV +cdV +cdV +cgi +cgD +cdV +chy +chN +bWQ +bWQ +cdo +aPg +aPg +cet +bpL +bBO +bBO +bBO +bBO +ctG +ctG +cvr +ctG +ctG +ctG +cIy +bjW +cKO +bZh +bZk +bZn +bZq +bZh +cEE +bpD +cmL +cyS +byQ +byQ +byQ +byQ +byQ +byQ +bKk +byQ +byQ +byQ +cOD +cIe +cON +cOR +cOW +cPa +cOM +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(135,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aYp +cdc +crQ +ajF +akc +akm +alk +amH +aoz +ajw +agA +alP +anA +aot +aqK +avo +aCs +aFo +aot +aot +aot +aot +bCO +ahJ +ahJ +ahJ +ahz +bRF +aEu +aJc +aPa +aQR +aSz +aTz +aTz +aVb +aTz +aZg +aVf +bdW +bfJ +bhc +bdP +abp +aPN +bes +aaU +aye +aaU +aWj +aWj +aWj +aSv +aSu +buk +bwz +bAi +bEe +bKL +bRE +bUY +ccj +aSw +aaW +bsz +aaa +aaa +aaa +aye +aaU +ceR +cfa +cfo +cfp +cfC +cdV +cgl +cgR +chr +chz +chX +cdV +cdV +ckJ +cdV +cdV +cdV +bpN +bCa +bSo +bSv +cfl +ctX +cuU +cwr +cIr +cMW +ctG +cIA +cIP +cIY +cJf +bGu +bHi +bJU +bOn +bOp +bJp +bJp +cyT +bPs +bYC +bPN +bPN +bPN +bPN +cAu +cCh +cCh +cCh +cIa +cIf +cOO +cOS +cOX +cPb +cOY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(136,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +agd +cdc +crR +ajF +akf +akh +ali +amR +ajw +ajw +bGc +aeO +aff +ahS +ajQ +axO +anX +aoC +apl +ahJ +cpd +ahJ +aqG +bED +bET +bET +bGw +chQ +cAV +aJc +aOT +aQX +aSE +aTC +aUe +aVf +aVf +aSE +bcd +bdY +bfM +bhg +bdP +abp +aPN +bey +aaU +aye +aaU +aaU +aaU +aWj +aWj +aWj +btT +bwB +bAm +bEh +bLo +bSz +bVa +btT +aaU +aby +bsz +aaa +aaa +aaa +aye +aaU +ceR +cff +cfo +cfA +cfH +cfW +cgo +cgS +chr +chA +chY +ciY +ckt +clY +cnx +cpK +cdV +bBE +bCa +bSp +bSw +cfl +cuu +cuV +cwE +cuV +cMX +ctG +bdG +cIM +coa +cwH +cyq +cyw +cJh +bZh +bsY +btx +bum +cyU +czd +czj +blp +blp +bme +bxj +bxj +bxj +bxj +bxj +bxj +bxj +cOM +cOM +cOY +cOY +cOY +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(137,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaU +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aYp +cdc +crR +ajF +akh +akh +alp +amT +ajw +awN +bGc +ahI +aff +ahW +ajQ +ayi +anX +aoC +aqh +ahJ +ahJ +ahJ +aqG +bEE +bFQ +bFS +ahz +aAj +cAW +aJC +aOT +aRc +aOT +aOT +aOT +aOU +aOU +aOT +aOT +bdP +bdP +bhl +bdP +abp +aPN +bes +aaU +bQe +aye +aye +aye +aaU +aWj +btw +buq +bwC +bAr +bEx +bMz +bSD +bVu +bvB +aaU +aby +bsz +aaa +aaa +aaa +aye +aaU +ceR +cfa +cfo +cfB +cfH +cfW +cgo +cgU +chs +chs +chZ +ciZ +cku +cmf +cnK +cnK +cdV +bBO +bUB +bSq +bVf +cfm +cuw +cuV +cuV +cuV +cMY +ctG +bdH +cIM +coi +bZh +bZh +bZh +bZh +bZh +bsZ +bsZ +bsZ +bxj +byU +czk +blp +coy +cdd +aYp +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(138,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aax +aax +aax +aax +aax +apv +crS +ajw +ajw +akx +ajw +anc +ajw +axe +bGc +aeO +ahz +aiw +ajQ +alL +anX +aoC +aqi +ahJ +ahJ +azK +bDo +bFK +bFK +bFT +aff +aAj +cAW +aJQ +aHO +aRB +aIO +aTG +aUj +aVi +aWD +aZh +aTG +aaU +aaU +cuA +cuy +bcc +bcO +bes +aaU +aaa +aaa +aaU +aaa +aaU +aTy +btT +btT +bwL +bwL +bEY +bMB +bSF +bVA +btT +aaU +aby +bsz +aaa +aaa +aaa +aye +aaU +ceR +cff +cfp +cfC +cfI +cdV +cgp +chb +cht +cht +cia +cjh +ckw +cmg +cof +cof +cpY +cwq +cwV +cAU +cfh +cos +cuF +cva +cyp +cuV +cMZ +cvr +bdG +cIM +cgB +coF +bcT +aaU +aaa +aaa +aaa +aaa +aaU +bxj +byU +czk +blp +ctH +cdd +csc +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(139,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aTd +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aax +aaX +abs +abs +abu +cqV +csa +acs +adu +adQ +ajw +anf +ajw +awN +bGc +aeO +ahz +aiw +ara +ays +anX +aoC +arm +ahJ +atM +aAl +bDO +bFL +bFL +bFU +ahz +aAj +cAW +aKD +aLT +aSo +aSP +aTI +aUl +aVn +aWL +aWL +bce +aaa +aaa +aaa +aaU +brs +aPR +cux +aaU +aaa +aaa +aaa +aaa +aaU +aWj +btZ +bus +bwQ +bBk +bFa +bMI +bSI +bXp +btT +aaU +abH +bAA +bMK +aZp +ceq +cet +cet +cet +cet +cfr +cfE +cfJ +cdV +cgu +chg +chs +chB +cib +cjs +cky +cmE +cok +cok +cdV +bBO +bPv +cBd +cfi +cfm +cuH +cvb +cvd +cvd +cNa +cNp +ber +cIQ +cgB +bqN +bcT +aaU +aaa +aaa +aaa +aaa +aaU +bxj +byU +czk +blp +cqT +cdd +aYp +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(140,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aax +aaZ +abt +abt +abK +cqV +abN +abL +adQ +adQ +ajw +ajw +ajw +awN +bGc +bGl +ahA +aiQ +ard +alI +anX +aoC +aqh +ahJ +apP +aAl +bFL +cqi +bEU +bFV +bGx +chW +cAX +cBo +aMw +aSp +aTA +aTK +aUm +aVo +aWN +aZk +bcg +aaa +aaa +aaa +aaU +brs +aQp +cux +aaU +aaa +aaa +aaa +aaa +aaU +aWj +bud +buE +bwS +bBv +bFb +bMS +bBv +bXM +bvB +bvM +acY +adz +bsz +aaa +aaU +cdt +ceK +ceK +cdV +cft +cfF +cfK +cgb +cgw +chj +aXF +chD +cid +cju +ckz +cmG +coT +cpL +cpZ +bBO +cxd +cBd +cfj +cfl +cuI +cuV +cyv +cuV +cNb +cNq +beW +cIM +cgB +bqV +bcT +aaU +aaa +aaa +aaU +aaU +aaU +blp +btK +czl +blp +cqU +bBZ +bme +bme +bme +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(141,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aax +aba +aax +aax +aax +aax +aax +acR +abL +adQ +aQO +aei +atZ +aFv +bGd +bGm +aff +aiR +arg +amu +amu +api +ahJ +ahJ +ahJ +aAl +bFL +bFL +bFO +bFU +ahz +aCm +aEx +aGJ +aNm +cBK +aJr +aTG +aUn +aVp +aWT +aZl +aTG +aaU +aaU +aaU +aaU +abp +aQq +bes +aaU +aaa +aaa +aaa +aaa +aaU +aTy +btT +btT +bwT +bBB +bGb +bMW +bTF +bXM +btT +btT +btT +cjF +bMX +cdt +cdt +cdt +ceL +ceT +cdV +cfu +cdV +cdV +cdV +cdV +chk +chu +cdV +cdV +cdV +ckA +cmY +cdV +cdV +cdV +bBO +bSm +cBk +cfk +cfl +cuJ +cvc +cyz +cuV +cNc +cNr +byT +cIR +coj +byT +bzY +aaU +aaa +aaa +blp +bme +bme +blp +btL +czm +bzq +bui +clZ +buo +buo +bme +bme +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(142,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aax +aax +aea +adQ +adQ +aer +auc +apv +agJ +amp +aff +aiS +art +amv +akR +apj +atA +atK +aqg +aCO +bFM +bFP +bFM +bFW +aff +azP +azP +aGQ +aNv +cBL +bhR +aTM +aTM +aTG +aTG +aTG +aTG +aaa +aaa +aaa +aaU +abp +aQr +bes +aaU +aaa +aaa +aaa +aaa +aaU +aWj +btw +buq +bwZ +bBC +bGk +bNf +bBv +bXM +ccn +ccA +ccy +aTl +bsz +cdG +cer +cew +ceM +ceV +asU +arB +asw +atb +avl +aMa +crv +aOE +aQc +clz +aMa +aQd +cks +crv +crx +aeI +bBO +bSn +cBl +bSn +cfl +cuK +cuV +cyz +cuV +cNd +cNs +beY +cIM +cgB +btl +bBl +aaU +aaa +aaa +bme +bnY +bpT +bqL +btL +czn +czy +bui +bui +bui +bui +bui +bme +bme +bme +bme +bme +bme +bme +cnG +bme +bOo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(143,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aax +afO +ala +abL +aet +aeK +afU +ahe +aiJ +ahz +ahz +arI +ahz +ahz +aff +aff +aff +aff +aff +ahz +ahz +ahz +aff +aff +aka +aka +aCe +aNB +aDh +aka +aql +aql +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +abp +aQr +beD +cuy +cuy +cuz +aaa +aaa +aaU +aWj +aaU +btT +bxa +bBF +bGy +bNk +bUc +bXM +cco +ccE +btZ +aTl +bsz +cdU +ces +ces +ceN +ceW +cJv +mkx +cJw +cJN +asR +awe +asS +asS +asS +asS +avC +aQe +ckx +cqP +crl +csQ +cqs +cqG +crt +cdm +ctl +cuL +cvd +cAp +cvd +cNe +cNt +beZ +cIS +coz +bty +bBl +aaU +aaU +aaU +bme +bog +bpT +bqM +btL +czm +bui +cOw +bui +bui +bui +bui +bui +bui +bui +bNW +bOa +bOe +bOi +cnd +bOl +cnH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(144,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adn +ahZ +amP +aea +adQ +ayk +aGZ +aKn +bEG +bEX +bEX +asg +bEX +bEX +aXv +bEM +bEO +bEP +amE +asp +auh +ayG +aNX +aEA +bvi +bvF +bvL +aXn +cBM +bDS +bER +aql +aaa +aaa +aaa +aaa +aaa +aaa +aVs +aVs +aUq +bmO +aUq +aVs +aVs +cuA +cuz +aaa +aaU +aWj +aaU +btT +btT +bBH +btT +bNl +bvB +bXM +btT +btT +btT +cjF +bMX +cdt +cdt +cdt +ceO +ceX +aeI +aQx +asD +asR +asR +avE +avQ +avQ +avQ +avQ +bem +aQe +asR +aSK +aSr +aeI +bxz +bwP +cBn +cBH +ctE +cuM +cvg +cBa +cJk +cNf +cNu +bSy +cIT +coD +bub +bIo +aaU +cNK +aaU +bme +bom +bpT +bqU +btL +czo +bPO +bPT +bQd +bQd +bQr +bJo +bNQ +bNQ +bNQ +bNX +bOa +bOe +bOg +bui +cnf +bme +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(145,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aae +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adq +aib +asy +aea +ann +azG +aag +ael +agQ +aje +akM +anz +akM +akM +apq +aqZ +avT +avT +aCN +avT +avT +aAb +avT +aCN +avT +avT +aHl +aNY +cBN +cbZ +bEa +amy +aaa +aaa +aaa +aaa +aaa +aVs +aVs +bjO +bmk +bmU +bok +bpr +aVs +aVs +cuA +cuy +cuz +aWj +aaU +aaa +btT +bBV +btT +bNn +btT +bYf +btT +aaU +aVt +adN +bsz +aaa +aaU +cdt +ceP +ceK +aeI +arN +arF +asS +auC +avH +axM +axM +axM +axM +aPh +aQk +asS +aSK +aTW +aVB +cqu +bwR +cBx +cBI +ctG +ctG +cvh +cBm +cJy +cNg +cNs +cIB +cIM +bXX +bty +bBl +aaU +bIm +aaU +blp +bme +bme +brv +btL +czp +bAW +bBm +bui +bui +bQs +bNH +bme +bme +bme +bme +bOb +bme +bOh +cne +bOm +cnH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(146,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +adn +ajh +amP +aea +adQ +ayk +aGZ +aKn +alR +bqQ +aox +anD +aox +aox +aFp +aHh +aJS +aMy +axG +aJS +aHh +aHh +aHh +aCz +aHh +aHh +cBq +aRT +cBO +cca +bEa +amy +aaU +aaU +aaU +aaU +aaU +aVs +bhq +bjY +bka +bmV +bka +bps +ang +ang +ang +ang +cuB +aWj +aaU +aaa +btT +bBX +btT +btZ +btT +aaa +aaU +aaU +aTl +qeq +bPh +guK +hXk +hXk +cJp +hXk +hXk +tjb +asx +asS +auD +awX +axQ +beH +axQ +aZt +avI +beI +asS +aSL +aTZ +aWV +cqv +bwV +cBy +cBJ +cdy +cuN +cvi +cBB +cvi +cuN +cNv +bhT +cIM +bXX +bty +bzr +byT +cfc +bcT +bmf +bon +bpU +brN +btL +czq +bme +bBm +bui +bui +ctV +blp +bme +aaU +aaU +aaU +aaU +bme +bme +bme +bme +bme +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(147,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aax +ajm +aoQ +ach +adQ +aFr +aKg +ahO +aml +abX +akd +aoA +awt +aDb +aqL +anB +alS +aMC +apR +atP +aji +azm +azm +aCB +azm +aRM +bar +aSD +cBP +bDV +bEb +aUq +aVs +aVs +aVs +aVs +aVs +aUq +bhv +bka +bka +bnb +boV +bpt +aRF +cog +bnt +ang +cuC +cuD +cuD +cuy +cuE +cuD +cuy +cuy +cuE +cuy +cuy +cuD +cuG +eUF +bsz +aej +agc +agT +bFg +apm +aqS +arP +cph +asS +auN +avK +axR +aAy +aOk +aOR +aPm +aPm +bBo +aTm +aUb +bAR +bnf +bwR +cBx +cCR +cdz +cPI +cdJ +cdM +cdJ +cdO +cPK +bbY +cIM +bZl +cwO +cyr +cyx +cyr +cyr +cyD +cyJ +cyJ +cyV +cze +czr +bme +bBm +bui +bui +bJq +bme +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(148,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aax +aax +aea +adQ +adQ +adQ +aFt +apv +aiF +amr +aqL +aoy +aoD +aoj +aDm +aqL +aji +aKs +aNl +apU +atP +aji +aBT +buP +aCD +bvl +bvZ +bas +aSD +cBQ +ccb +cBV +aUw +aVx +aWU +aZm +aWU +aVx +bfO +aVx +aWU +bms +bnd +boX +bpH +ang +coh +cfy +bvb +aRu +aSv +aSy +aSw +aTk +aQJ +aQJ +aQJ +aQJ +aQJ +aQJ +aRZ +aVK +cxa +bPr +sVC +aNH +bEr +cJA +aqO +anE +anE +anE +aQT +ayb +axt +aCZ +aRG +aOl +aOV +avQ +cmX +aRp +bkJ +aUf +aeI +bnp +cmO +cfU +cmm +cri +cdH +cdK +cPu +cdr +bqw +cdS +bUs +cIU +coL +cyk +cys +baN +baN +baN +coq +box +box +cyW +cpy +bPD +bAY +bBw +bCA +cql +bJq +bNI +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(149,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aax +aba +aax +aax +aax +aax +aax +adr +ach +adQ +acT +afR +apv +apv +ajb +amt +anH +aAQ +aoG +bvp +aDF +aFk +aHh +aKB +aNu +aou +aou +aji +aBW +aBX +aCF +buX +bAh +bat +aSD +cBP +bDX +cBW +aUq +aVs +aVs +aVs +aVs +aVs +aUq +bhO +bka +bka +bno +boZ +bpJ +apd +bfI +clH +ang +aRX +aSw +aSM +aaU +aTl +aaU +aaU +aaU +aaU +aaU +aaU +aSu +aYU +cxb +bsz +aej +agC +bEK +cJB +apm +aqT +arQ +cpi +asS +aTQ +avU +ayn +aFU +aOq +aOY +aPO +aPO +bCW +bvY +asB +bAR +bnq +bEW +bQF +cah +cdA +cPJ +cdL +cmv +cdL +cdQ +cPL +bUD +cIV +coN +cyl +bzI +bHn +bzI +bzI +cor +boy +boy +cyX +btO +bPE +bme +bBm +ccx +bui +bJq +bme +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(150,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aax +abb +abs +abs +abu +cqV +acg +ach +adQ +adQ +adS +adS +adS +adV +ajd +ajj +aqL +azr +bwl +bEn +anJ +aqL +awh +amx +aNU +aqj +aji +aji +aFV +aiv +aMj +amA +bDu +bat +aSD +cBR +cbZ +cBX +amy +aaU +aaU +aaU +aaU +aaU +aVs +bid +bkv +bka +bnw +bka +brA +ang +ang +ang +ang +aaU +aaU +aaU +aaU +aTl +aaU +aaa +aaa +aaa +aaa +aaa +bgh +bGQ +bIT +bPX +aaU +atF +atF +cJC +atF +atF +arO +asC +asS +auY +azE +ayo +bCb +ayo +bei +avV +aQs +asS +bwJ +bfn +aXh +cqw +bSx +bQG +cbd +cdB +biL +bkD +cop +bkD +biL +boa +bhT +cIW +cIZ +cym +bzU +bzV +cuo +bcT +bnO +boz +bqp +cyY +btL +bPF +bme +bBm +ccx +bui +crj +blp +bme +aaU +aaU +aaU +aaU +bme +bme +bme +bme +bme +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(151,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aTd +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aax +abg +abt +abt +abK +cqV +csb +ads +ajK +adQ +adS +aeG +adS +afd +ajI +afK +aqL +aqL +aqL +aqL +aqL +aqL +afK +amy +aOD +aql +awB +boO +aAp +aCn +amA +bvD +amy +bas +aSD +cBN +cca +cBX +amy +aaa +aaa +aaa +aaa +aaa +aVs +aVs +bkw +bmt +bnB +bmt +bpZ +aVs +aVs +aaa +aaa +aaa +aaa +aaa +aaU +aTl +aaU +aaa +aaa +aaa +aaa +aaa +bsz +aTl +cxc +aaa +aaa +aRD +ciT +cJD +cmu +atF +arY +awW +asS +avc +awa +clA +aLF +axM +axM +aPP +crs +asS +cpj +aUr +bmT +cqx +bwP +bQH +cdj +cdC +biQ +cjY +cot +blt +cse +bob +cjz +bjm +cIM +cym +bIp +aaU +bIx +aaU +blp +bme +bme +cyZ +btL +bPG +bBa +bBm +ccx +bui +bJR +bNJ +bme +bme +bme +bme +bOb +bme +bOi +bOj +bOl +cnH +cnE +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(152,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aax +aax +aax +aax +aax +apv +crS +adS +adS +aeW +adS +apo +adS +axL +agZ +aeZ +agm +aqW +ahX +aiU +afZ +agl +apW +amz +amz +aqm +amz +amz +aAq +bGa +bGG +bGG +cAY +cBq +aRT +cBS +cBU +cBY +aqn +acK +acK +acK +aqn +aaa +aaa +aVs +aVs +aVs +bnB +aVs +aVs +aVs +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aTl +aaU +aaa +aaa +aaa +aaa +aaa +bsz +aTl +cxc +aaa +aaa +atF +ciU +cJE +cJG +cJI +cJK +cJL +cJO +asR +aOQ +bev +cbJ +aOx +aPc +beq +aQe +asR +crw +aUt +bpK +cqy +bEW +bQF +cdk +bmQ +biR +bjy +cou +csd +byr +bob +bhY +bXW +cJa +cyn +bQR +aaU +cNL +aaU +bme +bpi +bpT +cza +btL +bPH +bBc +bBM +ccx +bui +bui +bJR +bNR +bNR +bNR +bNY +bOa +bOe +bOg +bui +cnf +bme +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(153,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaU +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aYp +cdc +crR +adT +aeo +afm +aiA +apt +bve +afS +ahK +aix +ajM +akH +akH +asP +akH +akH +bhj +bEJ +cfS +bEJ +cml +amA +amA +amA +aMl +bcW +bvH +bvL +aXn +cBM +bDY +bEd +aqn +cCd +aRE +aSY +acK +aaa +aaa +aaa +aaU +anK +cAL +anK +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aTl +aaU +aaU +aaa +aWR +aaa +aaU +bsz +aTl +cxc +atF +atF +atF +cmh +cmp +atF +atF +asi +asi +cJP +asR +awe +clB +asS +asS +aPd +avC +aQe +aRR +cpj +aSr +aeI +bQq +cqI +bQM +cdl +cdu +cdN +ciK +ctd +cwC +bmw +bob +bia +bXX +cIM +bty +bIp +aaU +aaU +aaU +bme +bog +bpT +czb +btL +bPI +bUx +bUx +ccK +cOw +bui +bui +bui +bui +bui +bNZ +bOa +bOe +bOh +cnc +bOm +cnH +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(154,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +agd +cdc +crR +adT +aeE +afm +afm +apT +adS +bEu +aif +afa +aha +ahx +ahx +asT +ahx +ahs +afK +aGR +aAa +are +cmo +avP +aAW +aDq +aNn +bvh +aql +aCe +aYK +aDr +aci +aqn +aqn +aRj +aND +aVX +anK +anK +aHA +aHA +anK +anK +cAM +bCM +anK +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aWj +aTl +aWj +aMI +cgd +bwW +beE +bwW +bsz +aTl +cxc +atF +aus +aus +aus +aus +cmw +atF +asv +asN +cJQ +avA +azh +aOd +aOM +aOC +aPe +clC +aQC +aRV +cJl +cko +aeI +bpv +cqJ +cdg +cds +cdv +biQ +bXf +bkG +cwP +ctn +bob +bib +bXX +cIM +bty +bIp +aaU +aaa +aaa +bme +bpj +bpT +czc +cze +czs +czy +bui +bui +bui +bui +bui +bme +bme +bme +bme +bme +bme +bme +cnG +bme +bOo +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(155,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aYp +cdc +crT +adT +aeF +afp +aiV +anv +aec +axS +aif +afK +ahb +ahx +aia +atm +alX +ahx +arx +amF +afK +aka +cmA +aka +aka +aka +aka +aka +aka +aLU +aNE +aRd +acK +aHL +aIN +aMK +aOc +aSA +aTo +aTt +aTJ +bsR +bCG +bCK +cAN +bCN +anK +aaa +aaa +aaa +aaa +arE +arE +arE +arE +bxP +arE +aMI +cgX +bim +cik +bwW +bsT +bGQ +bHe +bHA +aus +bcM +cmi +cmq +aus +atF +aqU +asG +cJR +aws +aqU +aqU +aMz +chE +cie +cjK +ckm +cnh +ckm +ckm +ckm +ckm +cqK +cru +csz +cdw +biQ +biQ +biQ +biQ +biQ +boc +bzV +bYm +cJb +bzV +bUn +aaU +aaa +aaa +blp +bme +bme +blp +btL +bPH +bBe +bui +cma +bHt +bHt +bme +bme +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(156,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaU +adq +adq +adq +aec +afM +agx +aja +aoM +aec +agi +aif +afK +ahc +ahx +ahx +ajs +atO +ayl +bml +ary +afK +atR +cmC +aSU +aka +aER +aFO +aGF +aKf +aMb +aPl +aRf +adR +arX +aKj +aVy +aRx +aSF +aTr +arH +aVa +aIK +aKk +aTU +cAO +cCA +anK +aaU +aaU +aaU +aaU +arE +bGJ +bFe +atf +bxS +bzo +aMI +cgY +bwW +cil +bwW +bwW +bCj +anr +bHO +aOP +biu +cmj +cmr +cmx +atF +cfv +asI +cJS +clx +awA +chl +aNx +chF +cir +cjL +ckB +cno +cpa +cpR +cqa +ckm +ckm +csq +ckm +bUN +biV +cKg +cLn +cLz +bmz +biV +cdP +bXX +cIM +bqE +bcT +aaU +aaa +aaa +aaU +aaU +aaU +blp +cmy +cmz +blp +cqU +blp +bme +bme +bme +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(157,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aec +aec +bEp +bEp +bEp +bEp +bEp +aif +afK +ahd +ahx +ahx +ajD +atC +ahx +bmr +bPu +ciN +cly +aCv +cwZ +aka +aEX +aFQ +aGI +aKf +aMb +aPx +aLj +anh +azo +aKp +aND +aND +aWH +aHx +asc +aWn +bvG +aKl +bCQ +cAP +anK +anK +arE +atf +aKT +arE +arE +att +cqr +arE +byv +bAN +aMI +cgZ +cif +cim +cmD +ciS +bCj +anr +bHO +aus +blX +cmk +cms +aus +atF +ast +asI +cJT +cJZ +cKa +cKb +cKc +chG +ciD +cjU +ckC +cnr +cpk +cpS +cqc +cqA +cqL +css +ckm +bUO +cdR +ciL +cLr +cwQ +bPx +bod +beW +bXX +cIM +bqD +bcT +aaU +aaU +aaU +aaU +aaU +aaU +bxw +bza +bMQ +blp +cnf +cdd +aYp +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(158,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +abp +aaa +aTd +aaa +abp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaV +aaV +aaV +abe +aeP +agX +ajS +akg +bvm +ahP +aif +afK +afK +ahT +ahx +ahx +ahx +ahx +bvo +amM +apW +ars +cwN +azR +aBG +aEY +aFR +aGU +aKm +aMc +aPx +aRg +aGH +aIf +aLs +aRA +bkT +aWJ +aHz +btb +aWn +bvR +bCI +bDJ +cAM +bCP +boA +aYC +brf +att +att +att +btP +bwo +arE +bAd +arE +aMI +cha +cig +cck +bwW +ciV +bCj +anr +bHO +aus +aus +aus +aus +aus +atF +asI +asI +cJU +avw +bRd +azg +aNQ +chI +ciH +cjX +ckF +cns +cpo +cpT +cqn +cqC +cqM +cst +ckm +bUG +cfn +con +coo +cwR +bPy +bVY +bWn +bYO +cJc +bXb +bcT +bpP +bpP +bpP +bpP +bpP +bpP +cro +bza +bMQ +blp +ctH +cdd +csc +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(159,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaV +aaU +aaU +aaU +aaV +ahP +ahP +ahP +akj +ahP +aif +aiB +afK +ahU +ait +ajE +amC +ahx +bvo +aIm +apW +arv +aub +azS +aBG +aEZ +aFS +aHd +aKr +aMf +aPy +aRi +aqc +aqn +aci +aci +aci +aXQ +aHy +bDc +aWw +aWy +aYm +aYD +aYE +aYF +beQ +bjw +bwu +bnl +bwp +bwM +bxq +byt +byu +bAz +ceQ +cgT +chc +bmY +ccI +bmY +anm +asu +anr +bHO +atF +atF +atF +atF +atF +atF +aqU +asM +cfL +aqU +aqU +aqU +aqU +chK +chK +ckm +ckm +ckm +cpA +cpU +cqo +cqD +cqO +ckm +ckm +bjZ +blq +bCz +bCz +cgc +cxi +cAA +cAI +cAZ +cJd +cBp +ccV +cIt +cIu +bMq +bJl +bLK +bYe +bHL +bYt +bYD +blp +crU +cdd +aYp +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(160,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaV +aaU +aaa +aaa +aaU +ahP +akn +aJR +bEg +ahP +aoJ +ass +afK +afK +afK +afa +afa +anF +bvq +afK +aAa +aka +atS +aka +aql +aFa +aFW +aHm +aKf +aMr +aPA +aLj +aPx +aTN +avm +aVH +aWX +aZF +anK +aHz +aWx +aTr +boA +cAF +bCL +boA +anK +bqb +avm +brj +bsO +avm +bVz +bVK +bGX +cbR +ceS +bmW +chv +bwW +cin +aMD +arp +bCk +aqk +bRn +qlJ +qlJ +bcG +cmt +auR +aYL +cfw +bap +cJW +bcI +bbF +bbN +bbN +bbO +bbL +bcb +aaU +ckm +cpF +cpV +cqp +cqE +crb +ckm +bgl +bgl +bjb +bjb +bkI +cic +cxj +biV +bie +bZl +cqQ +bqD +cBr +aRY +bcE +aRY +aRY +btz +cOe +btB +btB +btA +blp +blp +blp +blp +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(161,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +abc +aaU +aaa +aaa +aaU +aio +akZ +biO +bEt +bEA +aik +ajl +ajP +alh +aqN +ato +aut +ayw +bDB +bSu +cjm +asm +aqo +aAo +bDi +aFb +aGf +aHw +aKu +aME +aPC +aRk +aSI +aSI +aUJ +aVU +aVU +aZH +bch +bea +bfS +biX +bkK +bmA +bnE +bch +aSI +bqk +brg +bry +btq +avm +aMI +aMI +bwW +bwW +bwW +aMI +chw +bwW +ciq +bwW +ciV +bwW +aaU +bsT +bRo +bRp +anr +bcI +bgw +bgw +bgw +bdk +cJX +bcI +bbJ +bbF +bbN +bbN +bbN +bbO +bbV +ckm +cie +ckm +cqq +ckm +crm +ckm +bgn +bhn +cuO +bhn +bhn +cic +cDi +biV +bdH +bWO +cqR +bqE +cBr +aST +bcF +ckc +bnQ +btA +bMQ +bta +bta +bta +bta +bta +aaa +aaa +aaa +bNK +bNS +bNU +aaa +bNK +bNS +bNU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(162,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aao +abj +ado +aaa +aaa +aaU +aio +alb +aKe +bEw +ahP +bEB +bGo +afA +ahN +aiC +alz +avt +azx +bEv +bZM +avt +avd +bDp +bDv +aiC +aFd +aGj +aHB +aKz +aMM +aPG +aRn +aSO +aUa +aUN +aWf +aWY +aZL +bcq +bcq +bgb +aSO +bkQ +bmB +bnF +bpc +bqa +bnF +brh +brE +btt +btJ +bmS +bwq +bwX +bwX +bzL +bwX +bBp +bwW +ciq +bwW +ciV +bwW +aaU +aaa +aaa +bsz +cJx +cJF +bRA +cJJ +bsX +cJM +cJY +bcI +bbJ +bbL +bbN +bbN +bbN +bcb +ciI +bjI +bkB +bmP +bKj +bbV +bfG +bge +bgB +bho +bjc +bjK +bkI +csm +cxk +biV +cvN +bjm +bXX +bqD +cBs +aTc +bdL +biE +bpV +bLZ +bNt +bta +btQ +bxN +bDh +bHM +aaa +aaa +aaa +bNK +bYQ +bNU +aaa +bNK +bYQ +bNU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(163,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aao +abj +ado +aaa +aaa +aaU +ahP +alf +afh +bEy +ahP +aiz +aiz +aiz +ahN +aiC +ake +avt +aDD +aqp +aui +aAm +bvw +bDq +aul +bDA +bDA +bDA +bDA +avm +aMO +aLr +aRs +aSS +and +amY +amY +amY +amY +amY +amY +bvu +aJd +aKQ +aJd +aKQ +aJd +aJd +bql +bri +brW +btu +bsO +aMI +aMI +aMI +bAk +aMI +aMI +bzn +aMD +ciq +bwW +ciV +bwW +aaU +aaa +aaa +bsz +anr +bcI +sdp +bUX +bgw +uwK +bhm +bcI +bbL +bbN +bbN +bbN +bbN +bbO +bcl +bAa +bkM +bja +bKB +bcl +bfG +bge +bge +bge +bge +bge +bge +cwS +cxl +biV +bdI +cNx +bXX +bqD +cBr +bcu +csS +biH +bnQ +btB +bNV +bta +bzd +ceh +bzd +bHM +aaa +aaa +aaa +bNK +bYQ +bNU +aaa +bNK +bYQ +bNU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(164,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aao +abj +ado +aaa +aaa +aaU +ahP +ahP +ahP +ahP +ahP +aaU +aaU +aiz +ahN +aiC +alc +avu +aDD +aqx +awv +bvr +bDn +bDr +bDx +bDC +bDF +bDE +bDK +avm +aMT +aLr +aRt +aTe +amY +aBq +aCQ +aFe +aCJ +bFn +bFn +aJd +aJi +aKU +cCs +aLD +aLR +aJd +aZD +bwE +bIX +csB +bwj +bmW +bEQ +bxb +aNW +cCF +bmW +bzn +bwW +ciq +bwW +ciV +bwW +aaU +aaa +aaa +bsz +anr +bcI +aXp +bVb +cfx +bhs +bmm +bcI +aaU +aaa +aaa +aaa +bbV +bbV +bbV +bhk +bwi +blN +bKX +ciI +bfG +bbV +bgH +bhp +bjd +bZi +boG +cxe +cxm +bgf +cIC +bjm +bXX +bqD +cBC +bcv +bdL +bkf +bWY +btC +bPm +bta +btV +cfG +btV +bta +aaa +aaa +aaa +bNK +bYQ +bNU +aaa +bNK +bYQ +bNU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(165,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aao +abj +ado +aaa +aaa +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aiz +amw +aiC +ald +avZ +aGY +aqQ +ayc +bvA +bZN +bDs +aaB +aEg +bDG +bDI +bDK +avm +aMW +aLr +aRK +amY +amY +aBs +ane +anp +aCJ +bFn +bFn +aJd +bfH +bdq +bet +bmu +aUs +buQ +bvk +bwF +bVi +cvJ +bwn +bmW +bws +aNW +bxd +bBK +bAS +bCq +bwW +ciq +bwW +ciV +bwW +aaU +aaa +aaa +bsz +anr +bcI +bcI +cwy +bcI +jMO +bcI +bcI +aaU +aaa +aaa +aaa +bbV +bfN +bhk +bhk +bwt +bja +bLn +bbV +bfG +bbV +bgI +bDl +cuP +bjM +ccW +cgs +cxn +bgf +bBU +bnN +crc +buw +aRY +bcD +bcF +bkz +bnQ +btD +bPm +bxH +bzc +bBg +coW +bxH +bxH +aaa +aaa +bNK +bYQ +bNU +aaa +bNK +bYQ +bNU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(166,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aao +abj +ado +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaU +aiz +amD +aiC +afV +amK +aHc +bEH +azV +bvC +cbQ +bDs +bDz +aNe +bDH +bDA +bDA +avm +aNs +aLr +aRN +aSe +aAC +aAD +anp +ane +aCJ +bGe +bFn +aJd +aJl +aKV +bfz +bmx +aLp +aML +aZe +bhF +bXc +bhG +bhH +bhL +bio +biD +cAq +bkE +bmW +bBq +bwW +ciq +aMD +ciV +bwW +aaU +aaa +aaa +bsz +anr +aaU +aaa +cwz +aaa +jyu +aaa +aaa +aaU +aaa +aaa +aaa +bbV +bgg +bgK +bhk +bwG +bja +bLv +bbV +bfG +bbV +bjf +bkh +blu +ciI +ccZ +cgs +cxo +bgf +bgf +bez +cxB +bhf +aRY +aRY +aRY +aRY +aRY +btz +bPn +btE +bzk +crp +bBf +bDf +bHM +aaa +aaa +aaU +avr +aaU +aaa +aaU +avr +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(167,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +adx +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaU +asd +ahN +aiC +alH +amK +aDD +aqp +aAg +bCJ +cjn +bDt +bDA +bDA +bDA +bDA +aHC +aKW +aNt +aLr +aRN +amG +aAD +aBs +awP +anp +aCJ +bFn +bFn +aJd +bDe +aKX +bet +bmX +aLS +aML +baY +bwO +bEi +cwt +czQ +czX +cAd +cAn +cAr +bkL +bmW +bBr +bwW +ciq +bwW +ciV +bwW +aMD +bwW +aaa +bsT +bHe +bRo +bRp +aaa +cwD +jyu +aaa +aaa +aaU +aaa +aaa +aaa +ciI +bgv +bhk +bhk +bxe +bja +bLA +bbV +bfG +ciJ +bUk +bUH +bVg +bVn +cfd +cgs +cxp +ckq +bgf +beB +cxC +bgq +cjA +biy +bjN +bkO +biZ +bXY +bPm +bxH +bFF +csU +bBg +bDg +bHM +aaa +aaa +bNK +bNS +bNU +aaa +bNK +bNS +bNU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(168,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aao +abj +ado +aaa +aaa +aaa +aaa +aaa +aaa +cjj +cjj +cjj +cjj +cjj +ahN +aiC +aiC +amL +aQZ +aqx +bvw +bvw +bvw +ant +aoN +aJH +anS +amc +aHX +aLd +aNE +aPJ +aRN +amG +ane +anp +csy +aBs +aCJ +aCJ +amY +bvu +aJd +aKQ +bfB +brt +aJd +bvu +bAO +bxc +bFd +czN +czR +buh +bwv +bxh +byP +bkN +bmN +bng +bnM +boh +bpI +bqg +bqu +bra +bwW +bwW +aaU +anr +aWj +bUj +bVD +aaa +cPz +aaa +aaa +aaU +aaa +aaa +aaa +bbV +bbV +bbV +bhk +bwt +bBi +bLO +bbV +bTV +bgf +bTk +bUR +cfO +cja +cja +boj +cxq +cxv +bgf +brQ +cxC +bgq +bhX +biz +bjP +cJi +biZ +btz +bPm +clW +bPM +bzd +bBg +bDh +bHM +aaa +aaa +bNK +bYQ +bNU +aaa +bNK +bYQ +bNU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(169,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aao +aaO +ado +aaa +aaa +aao +abj +ado +aaa +aaa +aao +aaO +ado +aaa +cjj +cjk +anb +ajo +ajV +anG +aro +avb +awb +awI +amc +agU +air +aZK +anN +awD +aoO +azT +bso +aIb +aLe +aNP +aPL +aRP +aKq +aLM +aMu +aNy +aSd +aTq +aVY +aJj +aJd +btm +bdo +bet +bse +aMd +aJd +bdA +bxg +bvs +aMA +czS +buW +bwx +aMA +aMA +aMA +aWE +bzn +bwW +ciq +bwW +ciV +bwW +brr +bCr +cwv +bAQ +bxt +bzp +bUV +caf +bam +cPA +bam +bYl +bam +bam +bam +cJg +bbX +bbX +bcn +cnv +bxL +cpW +bLP +buH +bBz +bPY +bUd +cdx +cga +cgq +cgq +bzw +cxr +cxw +cxx +cxz +cxD +cxF +bhX +biJ +bjQ +ccF +biZ +btz +bPm +bxH +bSf +bzd +bQD +bxH +bxH +aaa +aaa +bNK +bYQ +bNU +aaa +bNK +bYQ +bNU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(170,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aao +aaP +ado +aaa +aaa +aao +abj +ado +aaa +aaa +aao +aaP +ado +aaa +cjj +agG +aiu +ajv +akb +anZ +arG +avf +awf +awU +amc +awV +aoO +aqq +aqq +avh +azX +aCV +cra +aIp +aLh +aOf +aPQ +aRS +amY +aAF +aMv +aDI +aBs +aAD +aBs +aGB +bsS +bvT +bdp +cAJ +cAR +buZ +aJd +bhe +bxp +bvx +aMA +czT +bva +bwy +bxi +cCE +cAw +aWF +bBD +bmS +ciM +bmS +ciX +bmY +brP +brX +bsh +bsu +bxK +bDb +sVC +cdp +sVC +cPB +sVC +bZp +sVC +sVC +sVC +cJq +cRt +bvW +bvX +bwd +bxU +bBT +bLQ +bLT +bQh +bLT +bLT +cdF +bVl +bZd +cfX +ciP +cjB +cgt +bcl +bfc +bgs +cxG +bif +cnA +csg +btW +biZ +bUW +bRr +bxH +bzj +bzW +bBx +bxH +aaU +aaa +aaa +bNK +bYQ +bNU +aaa +bNK +bYQ +bNU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(171,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +ahv +aaa +aaU +aaa +aaa +aaa +aao +aaP +ado +aaa +aaa +aao +abj +ado +aaa +aaa +aao +aaP +ado +aaU +cjj +amO +afo +cjl +cjj +bGq +bEf +avm +awb +awI +amN +anM +aoO +aoO +aoO +aoO +aoO +aFI +amc +aIt +aLj +aOg +and +aoE +amY +aAG +ane +aEi +aAD +aBs +aAD +aMV +aNq +aOi +bdp +bfK +bsW +cCB +aJd +bhi +byM +blP +aMA +czU +czY +cAe +bFz +cAs +cAx +bhU +biN +biY +bne +cAz +bqf +bqH +brY +bsi +bsv +bsy +bsy +bTJ +bsI +bRv +bsD +bww +bsD +cPE +cPF +cPF +cnQ +cJs +bBL +bBL +bCm +bwg +bzC +boC +bLR +bTx +bUb +bUh +bUm +bUZ +bVm +cbM +cfY +cJz +cjC +bhr +ckv +bdV +bgt +cxC +bhX +biJ +bjQ +ctu +biZ +btz +bPm +bxH +bxH +bxH +bxH +bxH +aaU +aaa +aaa +bNK +bYQ +bNU +aaa +bNK +bYQ +bNU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(172,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +cnM +abM +acj +aaU +aaa +aaa +aaa +aao +aaP +ado +aaa +aaa +aao +abj +ado +aaa +aaa +aao +aaP +ado +aaa +cjj +cjj +cjp +cjp +cjp +aoK +aoK +aoK +awb +awI +amN +aii +aoO +aqr +aSR +awE +aoO +brx +amc +aIw +aLj +aOj +amY +aoZ +anp +ane +anp +aDI +aBs +aAD +aBs +aHe +aJd +bmI +aZi +bfL +btM +bvf +aJd +bhw +byO +bBb +aMA +btc +czZ +cAf +bVH +bwA +bAj +aMB +bzn +bwW +cgY +bwW +cil +bmW +bCt +aMI +aMI +aaa +aaa +aaa +bfW +bJv +aaa +cwI +aaa +cbG +aaU +aaa +aaa +aaa +aaa +bbV +bhu +bhr +bbT +bdZ +brR +bbT +bUf +bbT +bbT +bbT +bUP +bbT +bbT +cJV +bbT +bbT +bbT +brQ +bgt +cxH +cxN +cxP +cxQ +cxU +cxW +cxX +cPN +clX +bZu +cmM +bYn +bZt +bHN +bHN +bHN +bNL +avr +aaU +aaU +aaU +avr +aaU +aaU +aaU +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(173,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aav +abR +acj +aaU +aaa +aaa +aaa +aao +aaP +ado +aaa +aaa +aaU +adx +aaU +aaa +aaa +aao +aaP +ado +aaa +aaa +aaU +aoK +asA +atu +aue +auO +arM +awb +axa +amc +anO +arn +aqt +atX +ayV +aJJ +brC +bsq +aIy +aLo +aOm +amY +aqd +ane +aBS +aBV +aEk +aBV +aBS +aAD +aHf +aJd +aJd +bco +aJd +aJd +aJd +bvu +bdA +bxp +bvs +aMA +aNc +bvQ +cAg +bxr +byY +cvP +aMB +bzn +bjz +cgZ +bzH +bJS +bmW +bmW +aMI +aaU +aaU +aaU +aaU +bfW +opd +aaU +cwJ +aaU +cbG +aaU +aaU +aaU +bbT +bbT +bbT +bbT +bbT +bbT +bkm +brV +cPH +bfU +bFD +bgO +cqt +bUQ +cvj +cDg +cKd +ben +bor +bcV +bfe +bgt +cxI +ctv +biM +bjS +bkS +cpJ +btF +cxY +bZt +bZv +bYn +bYn +bZy +bHN +bHz +ckn +aqA +bNL +bNL +bNL +bNL +bNL +bOf +bOk +bOk +bOq +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(174,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaD +abM +acm +aaU +aaU +aaU +aaU +aao +aaP +ado +aaa +aaa +aaU +adx +aaU +aaa +aaa +aao +aaP +ado +aaU +aoK +aoK +aoK +asE +atw +atw +atw +arM +awg +axb +amc +amc +amc +amc +amc +azF +aJY +brD +bsr +aIB +aLj +aOy +amY +apw +anp +aBS +ayy +aEj +ayy +aBS +aBs +aHi +aJk +aJd +bdm +aLA +aJd +aMk +aMk +bdA +bxp +bvI +aMB +aMA +aMA +cAh +aMA +bzf +bAp +aMB +bzn +bxG +bxF +bxG +bXs +cii +cjg +cji +aaa +aaa +aaa +aaa +bgi +fui +aaa +cwK +aaa +cbG +aaa +aaa +aaa +cmH +crh +bVx +bVw +bVy +bVw +cwc +buz +bAu +bCx +bPZ +bUl +bVc +cte +cvk +cDm +cvk +ctp +ctq +bkX +ctr +bZw +cxJ +bez +biZ +biZ +biZ +biZ +btz +cxY +bZt +bZt +bZx +bZt +bZt +bHN +bHP +bHN +bNL +aaU +aaU +aaU +aaU +bOc +aaU +aaU +aaU +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(175,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaY +abV +acq +acJ +adk +adG +aaU +aaU +aaT +aaU +aaU +aaU +aaU +aaT +aaU +aaU +aaU +aaU +aaT +aaU +aaU +aoS +aqe +aqe +asQ +atx +auf +auU +avp +awi +axd +ayv +azD +ayv +aBD +aCx +aDw +aEl +aFg +aGk +aIW +aLq +aOG +amY +apa +ane +aBS +ayy +bvE +ayy +aBS +aAD +aHJ +amY +aJd +bds +bfQ +bug +buL +buL +bhC +byS +aMn +aMD +bEj +bvU +cAi +aMA +bzg +aMA +aMB +bzn +bwW +bxF +aMD +bEL +bAK +bjz +aMI +aZG +aaa +aaa +aaa +bgi +fui +aaa +cwI +aaa +cbG +aaa +aaa +aTx +bbT +bbT +bbT +bbU +bcV +crd +bej +bej +bfs +bfY +bej +bla +bVh +ctf +bkc +bcV +bcV +bnh +bnh +bcV +bcA +bgZ +cxK +ctw +bjl +bGC +bpQ +bpQ +cOa +cPO +cya +cya +cya +cya +cye +bHN +bIy +bHN +bJQ +bJQ +aaa +aaa +bNK +bYR +bNU +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(176,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +cpB +aaa +aaa +aaa +aaU +abr +abM +abr +abM +adl +abM +aZG +aaU +aaV +aaV +aaV +aaV +aaV +aaV +aaV +aaV +aaV +aaV +aaV +aaU +aTx +aoK +aoK +arK +asZ +aty +auj +auX +avq +awj +axn +ayx +azH +aAr +aAr +aCI +aDy +aEn +aFs +aAr +aIY +aLr +amG +amG +apL +anp +aBS +aBu +aEj +aBu +aBS +aBs +aGB +aJf +aJd +bdw +bfT +aJd +aMk +aMk +bdA +bzQ +ccl +czO +czV +czV +cAj +bxs +bzl +bkg +bPq +bzn +bwW +byW +bCB +bIC +bVj +cip +cpE +aaa +aaa +aaa +aaa +bgi +fui +aaa +cwK +aaa +cbG +aaa +aaa +aaa +cpp +cgj +cgk +cgj +bcj +cgj +ben +bej +cqF +bfZ +bej +bAB +bVk +ctg +cjd +ctm +blQ +bbw +bci +bci +bfP +cqj +cxL +bir +biZ +cjt +bXE +bLZ +bLZ +bYh +bYn +bYn +bYE +cni +cyf +cgy +bIz +cmc +ceJ +bJQ +aaa +aaa +bNK +bYR +bNU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(177,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +abD +abW +acr +acW +adw +adH +aaU +aaU +abc +aaU +aaU +aaU +aaU +abc +aaU +aaU +aaU +aaU +abc +aaU +aaU +aoT +aqy +arL +asZ +atD +auk +atD +avs +awl +axq +ayB +avb +aAs +aBJ +awp +awx +aEr +aFx +aGl +aIZ +aLr +amG +ane +anp +ane +azt +aBv +aEj +aFh +aKN +aAD +aGN +aJg +amY +aOt +bfV +amY +aMs +aMs +bhD +aOA +bvN +aMs +bmo +cAa +cAk +bxy +bzi +cAy +bTU +bzn +aMD +bzh +bwW +cih +aMI +aMI +aMI +bLw +bMM +bMM +bMM +ifC +bJv +aaU +cwJ +aaU +bWJ +mIT +cJr +aaU +bbT +bbT +bbT +bbT +bbT +bdT +beX +beU +beU +beU +beU +bLu +bVr +cth +cje +csv +bcV +bby +bck +bdM +bdM +bhb +bhM +bis +bjn +bjn +bXF +bjn +bjn +bjn +bjn +bjn +bjn +bjn +cyg +bGF +bIA +bIB +bNO +bHN +aaa +aaa +bNK +bYR +bNU +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +abp +aaa +aTd +aaa +abp +aaa +aaa +aaa +cpB +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(178,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +abE +abM +acx +aaU +aaU +aaU +aaU +aao +abj +ado +aaa +aaa +aao +abj +ado +aaa +aaa +aao +abj +ado +aaU +aoK +aoK +aoK +atd +atE +aum +ava +avs +awp +axD +ayE +awp +awp +awp +awp +aDA +aEt +aFA +aGm +aIZ +aLr +amG +anp +aBS +aBS +aBS +ayy +aEj +ayy +aBS +aBS +aLG +aJh +aLN +aOu +cCt +beA +aMt +aNw +bhE +btg +bvO +bwb +aMs +cAb +cAl +bhA +bgP +bzO +caD +bzn +bjz +ciG +bAK +ciV +aMI +aaa +bJj +bLS +kxw +kxw +kxw +bPA +wPS +aaa +cwI +cwA +cbI +cwA +anr +aaa +aaU +aaU +aaU +aaU +bbT +bbT +bbT +bfE +bih +bkb +bkj +bkY +bVs +cti +cje +cto +bcV +bcV +bcm +bdV +bdM +cqk +bhP +biv +ciR +bjT +bXG +clV +bjT +cjf +btH +btX +ckE +bjn +cyf +bHN +cnS +bKZ +bNP +bHN +aaa +aaa +bNK +bYR +bNU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(179,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aav +abR +acj +aaU +aaa +aaa +aaa +aao +abj +ado +aaa +aaa +aao +abj +ado +aaa +aaa +aao +abj +ado +aaa +aaU +aaa +aoK +ate +atG +auq +atG +avx +awp +axE +ayH +azM +aAt +awp +aFl +aDC +axU +aFB +awx +aIZ +aLr +amG +ane +azt +azu +aAH +aBv +aEk +ayz +azu +azu +aKN +aJm +amY +aQy +bgo +amY +amY +amY +bfX +btr +bvP +bwc +bmo +bwk +bwH +bxG +bzm +bAx +bBh +bBG +bAK +ciO +bAK +ciV +bAS +aaa +bJv +bMp +cwA +cwA +cwA +bgM +cwA +cwA +cwL +cwA +cbL +cwA +bdR +mIT +mIT +mIT +mIT +cJr +aaa +aaU +bbT +bgk +bbT +bkd +bbT +cpm +bVG +cgn +cje +blb +blR +bni +bcA +bdM +bdM +cNA +bhb +ciE +cmT +cnB +csh +cHV +cPM +bjn +btI +buc +cme +bjn +cyf +bHN +bHN +bHN +bHN +bHN +aaa +aaa +bNK +bOd +bNU +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(180,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aav +abM +acz +aaU +aaa +aaa +aaa +aao +abj +ado +aaa +aaa +aao +abj +ado +aaa +aaa +aao +abj +ado +aaa +aaa +aaa +aoK +atg +atG +aur +atG +avz +awx +axU +ayL +azO +aAu +awp +aCP +aDG +cPr +aFD +awp +aJa +aLr +amG +anp +aBS +ayy +ayy +aBS +bAZ +aFn +aFY +aFY +aFn +aJo +aLP +aMJ +bgp +buT +cCC +buN +bDj +bur +bvS +bwe +aMs +bmW +bwI +aMI +ceG +bAK +aMI +aMI +aMI +cjc +aMI +cnt +aMI +aaa +bJv +bMp +cww +bMY +bMY +bPB +xoj +cwx +cPC +cww +cbN +cww +aaU +aaa +aaa +aaa +aaa +anr +aaa +aaU +bbT +bEk +bfD +bVd +bkX +bUT +bXw +chd +cki +ctt +blS +bnn +bcA +bdM +bdM +bdM +bhP +biv +cDz +cDA +cDD +bnX +bjn +bjn +bjn +bjn +bjn +bjn +cyh +boI +aaU +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(181,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aRv +aaa +aaU +aaa +aaa +aaa +aao +abj +ado +aaa +aaa +aao +abj +ado +aaa +aaa +aao +abj +ado +aaa +aaa +aaa +aoK +ath +atG +auu +atG +avB +awx +axU +ayP +azU +aAE +awp +aCR +aDH +aEz +aFH +aGw +aJb +aLt +amY +anY +azt +azu +azu +aBv +aEk +ayz +azu +azu +aKN +aAD +aMe +bdB +bgr +buU +byo +apV +bgj +buu +bvV +aMs +aMs +aaU +bCU +aMI +ceG +bAK +bAS +aaa +aaU +aaa +aRv +aaa +aaU +aaa +bJv +bMp +cww +bMZ +bMZ +bPC +uAY +cwF +cwM +cww +cge +cww +aaU +cak +cam +cak +aaa +anr +aaa +aaU +bff +bgQ +bff +bgQ +bff +bfC +bYM +bjo +bkk +ctx +blV +bny +bdK +bma +bfR +bhd +bhQ +bpl +bjn +bjn +bjn +bjn +bjn +bRt +bxO +bzs +bzZ +bBy +cyi +boI +boK +boK +boK +boK +boK +boK +boI +aaU +aaU +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(182,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aao +abj +ado +aaa +aaa +aao +abj +ado +aaa +aaa +aao +abj +ado +aaa +aaa +aaa +arM +ati +arM +atG +atG +avD +awx +axY +ayZ +azW +aAT +aBO +aCS +aDJ +aEB +aFJ +awp +aJs +aLz +amY +anp +aBS +aBS +aBS +ayy +aEI +ayy +aNa +aSC +aSC +aTB +aUx +bdX +bhV +buY +bMm +amY +aMs +buI +aMs +aMs +aaU +aaU +bCV +aMI +ceH +aMI +aMI +aaa +aaU +aaa +aaU +aaa +aaU +aaa +bJv +bMp +cww +cpM +bNa +bPJ +bRC +cwG +cPD +bVE +cbT +cww +bhI +bhI +can +bhI +aaa +anr +aaa +aaU +bfC +bfb +cmW +bic +cbk +bfC +bYN +bgT +bgT +ctA +bgV +bgV +bgT +bgV +boM +boS +ccv +boS +boI +bqZ +cxT +bMH +btN +buy +bRw +bRz +cmJ +bRG +cyj +cmb +bHQ +bHQ +bHQ +bHQ +bHQ +bLa +boK +aaa +aaU +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(183,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aao +acv +ado +aaa +aaa +aao +abj +ado +aaa +aaa +aao +acv +ado +aaa +aaa +aaa +arM +atl +arM +arM +arM +avs +awp +ayg +aza +azY +aBc +awp +aCT +aDK +aEG +aFK +awp +aJP +aLC +amY +aoa +ayA +azv +aBp +aCy +aEM +aFq +aNb +aGA +aBs +aAD +aMF +bdn +bdn +bdn +bdn +aCJ +aaU +aaU +aaU +aaU +aaU +aaU +aaa +aVT +aaa +bAL +aaU +aaa +aaU +aaa +aaU +aaa +aaU +aaa +bJv +bMp +cww +bNb +bNb +bPL +cwB +cwB +cwB +bVX +eKM +cww +bhI +bhI +cao +bhI +bhI +anr +aaa +aaU +bfC +bgS +bGL +bip +ctz +bfC +cbO +cgE +bkl +ctB +blW +cxs +bos +bgV +boN +boT +bpd +bpp +bqy +cxR +cxV +cxV +cxV +cjb +cxV +cyb +cyc +bVt +bZo +bZs +bZs +bZs +ciA +clO +bHR +bLb +boK +aaa +aaU +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(184,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaT +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +arM +atl +arM +aaU +aaU +aaU +awp +awp +awp +awp +awp +awp +aCY +aDQ +aEH +aFL +awp +aKb +aKb +amY +amY +amY +azw +amY +aHK +aMR +aMU +aQV +amY +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +aCJ +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaU +aaa +bJv +bMp +cww +bjE +bNq +bQK +qgO +chO +cpN +bWG +cRg +jiZ +bhI +cLY +cap +cMt +cau +anr +aaa +aaU +bfC +bgU +cng +bCH +bRu +bUK +ccu +che +ckr +ctC +bVo +cxt +bVZ +bgV +boI +boU +cty +bpf +bpf +cxS +bpY +btd +btd +bDy +bxR +cxZ +boI +bBA +bFh +boI +boK +boK +boK +bKo +bKD +boK +boI +aaU +aaU +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(185,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaV +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +arM +akz +arM +aaU +aaU +aaU +aaU +aaU +aaa +aaa +aaU +apC +aqC +axr +aAM +aqC +apC +aaU +aaa +aaa +aaU +amY +azZ +amY +aKI +aKM +aBS +aBS +aCJ +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaU +aaa +bJv +bMp +cww +bkH +blz +bNd +bNE +cww +cpO +bWG +cJo +cMH +bhI +cLZ +caq +cLZ +bhI +anr +aaa +aaU +bfC +bUS +bAv +bPW +cBz +bUM +ccX +chf +ckO +ckO +ckO +cxu +chf +cxy +cxA +cxE +cxM +cxO +cND +bpf +brS +bte +cdT +ceZ +bte +bzu +boI +cJj +bzt +boK +aaU +aaa +aaa +aaa +cgW +aaa +aaa +aaa +aaU +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(186,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +abc +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aWj +aaU +aaU +aaa +aaa +aaU +aaU +aaa +aaa +aaU +apC +aug +axs +aAN +bsc +apC +aaU +aaa +aaa +aaU +amY +aAw +amY +aCJ +amY +aCJ +aCJ +aCJ +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaU +aaa +bJv +bMp +cww +cww +cww +cww +cww +cww +cww +cIs +tyI +cMJ +cLX +cMa +cMj +cMu +cMG +anr +aaU +aaU +bff +bfC +bff +bfC +bff +bfC +bij +bhK +bkn +cnw +bkn +bhK +bov +bgV +boI +boW +bpf +bpu +bpf +cty +brS +boI +btS +ccT +boI +bzu +boI +bBI +bFi +boK +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(187,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +adx +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aaU +aaU +apC +aun +axs +aAN +bsd +apC +aaU +aaU +aaU +aaU +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +rTW +tpQ +wPS +bMt +pgu +pgu +pgu +gGG +vsO +chS +cpQ +cfM +cbU +jXo +cLm +cMb +cas +cMb +cMH +anr +aaa +aaa +aaU +aaa +aaU +aaa +aaU +bgT +bhZ +bhK +bkn +bkn +bkn +bhK +bow +bgT +boP +boY +bpk +bpf +bpY +brd +brT +boI +btS +ccU +boI +bzv +boI +boI +boI +boI +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(188,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +ady +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +ahu +ahu +ahu +apC +apC +auo +axy +aBd +aJI +apC +apC +ahu +ahu +ahu +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +opd +aaa +aXx +aXx +aXx +aXx +aXx +bfW +tuF +lRy +fti +cfP +mEa +cLV +chn +eCy +chL +cMv +cMI +anr +aaa +aaa +aaU +aaa +aaU +aaU +aaU +bgV +bhZ +bhK +bkp +bhK +blZ +bhK +boB +bgV +boI +boI +ckK +ckL +ckM +boI +boI +boI +cre +cow +boI +cRa +boI +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(189,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +ahu +amU +aov +apE +aqB +aup +axs +aBn +bbR +aqB +apE +aov +amU +ahu +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +opd +aaa +aXx +bca +bca +cat +cKX +bQN +nLV +cLd +fti +cfT +cgg +cgx +chp +chx +chM +gDY +jiZ +hlV +aaa +aaa +aaU +aaa +aaU +aaa +aaU +bgT +bil +bjq +bkq +bld +biw +bld +boB +bgV +aaU +boI +boK +boK +boK +boI +aaU +cNW +cNX +cOf +cNX +cOm +aaU +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(190,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ahu +ahu +amV +amV +apF +aqC +adI +axH +aBB +bsg +aqC +bsB +amV +amV +ahu +ahu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +opd +aaa +aXx +bRK +bca +bZI +bZR +bfW +qHL +eTZ +vcb +uVD +mqB +dpO +tZC +qWY +rUl +cMw +cfs +cMP +aaa +aaa +aaU +aaa +aaU +aaa +aaU +bgT +bgT +bjr +bkr +ble +xxP +bnC +boD +bgT +aaa +aaa +aaa +aaa +aaa +aaa +aaU +cNX +cNX +cOf +cNX +cOm +aaU +aaa +aaa +aaa +aaU +aaU +aaU +aaU +blj +aaU +aaU +aaU +aaU +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(191,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ahu +all +amV +amV +apI +bsw +auw +axJ +aBE +auy +bsw +bsm +amV +amV +bsJ +ahu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +opd +aaa +aXx +bca +bca +cKQ +cKY +bQO +ony +xcO +hKC +cVO +sRD +cMe +cai +rdF +cMk +ceU +cMJ +cxc +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +bgT +bks +blg +bgT +cgm +boE +bgT +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +cNX +cOf +cOh +cOm +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(192,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ahu +alm +amV +amV +apI +bsA +auy +azs +aBE +auy +bsA +bsm +amV +amV +bsK +ahu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +opd +aaU +aXx +aXx +aXx +aXx +aXx +bfW +cww +bUa +cMr +sRD +cMo +cgz +cai +fkx +cMl +cMx +cMJ +cxc +aXx +aXx +aXx +aXx +aXx +aaa +aaU +aaa +aaa +bgT +bkt +blh +bgT +blh +boF +bgT +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +cNX +cOf +cOh +cOm +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(193,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ahu +aln +amV +amV +apJ +aqC +auz +azs +aBE +bsj +aqC +bsC +amV +amV +aln +ahu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +opd +aaa +aXx +bSb +bSb +cKR +cKX +bQN +cLb +cLe +cMo +hMZ +nAF +lcD +cai +fkx +mNN +cLo +nBM +cfD +cKX +cLt +bkZ +bkZ +aXx +aaa +aaU +aaa +aaa +aaa +aaa +cqX +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +cNX +cOf +cOh +cOm +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(194,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ahu +aln +amV +amV +apK +aqB +aqB +azI +brn +aqB +aqB +bsE +amV +amV +aln +ahu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +opd +aaa +aXx +bSi +bWp +bZL +bZR +bfW +cwA +cLf +cMo +iAW +fIw +wWH +ntC +nEX +hDz +cLp +oMB +mxW +bZR +cay +caK +caM +aXx +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +cNX +cOf +cOh +cOm +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(195,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ahu +alm +amV +amV +amV +aqI +aqB +aGO +auy +aqB +aqI +amV +amV +amV +bsK +ahu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +opd +aaa +aXx +bSb +bSb +cKS +cKY +bQO +cLc +eIh +car +tXV +tZj +jml +cVq +cMc +cMm +cMy +cML +cLa +cKY +cLu +bkZ +bkZ +aXx +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +cNX +cOf +cOh +cOm +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(196,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ahu +alJ +amV +aow +amV +amV +auA +auy +auy +bsk +amV +amV +amV +amV +alJ +ahu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +opd +aaU +aXx +aXx +aXx +aXx +aXx +bfW +cww +bhJ +cMo +iAW +cJu +iAW +cJH +cMd +cMn +cMz +cMJ +aaU +aXx +aXx +aXx +aXx +aXx +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +cNX +cOf +cOh +cOm +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(197,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ahu +ahu +amV +amV +amV +aqI +ave +auy +bXH +bsm +aqI +amV +amV +amV +ahu +ahu +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +opd +aaa +aXx +bTH +bTH +cKT +cKX +bQN +cLb +cLh +cMo +iAW +cJu +hlo +cJH +cMe +cMo +cLq +nBM +cKZ +cKX +cLv +blL +blL +aXx +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +cNX +cOf +cOh +cOm +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(198,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +ahu +amW +aoI +amV +amV +ave +aIR +auy +bsm +amV +amV +aoI +bsH +ahu +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +opd +aaa +aXx +bTI +bXe +bZO +bZR +fuE +bWK +cLi +xKr +nvn +cJu +iAW +cJH +cMe +cMo +cMA +cMN +aaU +bZR +caF +caL +caN +aXx +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +cNX +cOf +cOh +cOm +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(199,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +ahu +ahu +ahu +apX +aqI +avk +aJq +brp +bsn +aqI +bsF +ahu +ahu +ahu +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +opd +aaa +aXx +bTH +bTH +cKU +cKY +cLa +cLc +fgS +car +iAW +jon +xjk +cai +cMg +cMq +cMB +cML +cMQ +cKY +cLw +blL +blL +aXx +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +cNX +cOf +cOh +cOm +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(200,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +ahu +ahu +apC +apC +ahu +ahu +apC +apC +ahu +ahu +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +opd +aaU +aXx +aXx +aXx +aXx +aXx +rTW +wbu +cLg +kOG +dVR +xCy +sHB +xkC +cMe +cMr +cMC +cML +cMR +aXx +aXx +aXx +aXx +aXx +aaU +aaU +aaU +aaU +aaU +aaU +blj +abp +blj +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +cNX +cOf +cOh +cOm +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(201,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +amJ +aaU +aaU +aaU +aaU +amJ +aaU +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +opd +aaa +aXx +bTK +bTK +cKV +cKX +bQS +cLb +cLj +cMo +qvB +cgh +cgA +chq +cMh +cMq +cMD +cMM +cMS +cMT +cLx +cpX +blM +aXx +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaU +aaU +aaa +aaa +aaU +cNX +cOf +cOh +cOm +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(202,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +opd +aaa +aXx +bTL +bXR +bZP +bZR +opd +cwA +cal +cLl +cLs +cLs +cLs +cLs +cLs +cMs +cME +cMN +aaU +bZR +caJ +bpq +caS +aXx +aaa +aaU +aaa +bal +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +cNy +cNy +cNz +cNz +cNy +cNX +cOf +cOi +cOm +cOr +cOl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(203,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +opd +aaa +aXx +bTK +bTK +cKW +cKY +bQV +cLc +cLk +ctk +prx +vxU +cLW +ccG +cMi +iQY +cMF +cMO +cMS +cMT +cLy +blM +blM +aXx +aaa +aaU +aaU +bal +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cNy +cNz +cNz +cNy +cNE +cNM +cNO +cNy +cNX +cOf +cOj +cOn +cOj +cOp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(204,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +opd +aaU +aXx +aXx +aXx +aXx +aXx +opd +cww +cww +cww +cfV +cww +cww +cww +cww +cww +cww +cww +aaU +aXx +aXx +aXx +aXx +aXx +aaa +bal +aaa +bal +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cNz +cNB +cNB +cNB +cNF +cNN +cNR +cNY +cOb +cOg +cOj +cOj +cOj +cOp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(205,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +bGh +bHg +bHg +bHg +tpQ +bHg +bHg +wPS +aaU +aWj +cww +cJm +cww +aWj +aWj +aWj +aWj +aWj +aaU +aaU +aaa +aaa +aaU +aaa +aaa +aaa +bal +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cNz +cNB +cNB +cNB +cNG +cNN +cNS +cNy +cNX +cNX +cOj +cOj +cOs +cOp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(206,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aWR +aaa +aaU +aaa +bal +bal +aaU +bal +bal +bal +aaU +aWj +cww +cJm +cww +aWj +bal +bal +bal +bal +aaU +bal +bal +bal +aaU +aaU +bal +bal +bal +aaa +bal +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cNz +cNB +cNB +cNB +cNG +cNN +cNT +cNy +cNX +cNX +cOj +cOj +cOt +cOp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(207,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aWR +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +cbS +abM +ccH +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aWj +bFY +cJn +cww +aWj +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +bal +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cNz +cNB +cNB +cNB +cNG +cNO +cNO +cNZ +cNX +cNX +cOj +cOj +cOu +cOp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aWR +aaa +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(208,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +abF +abM +acA +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +cbS +abR +ccJ +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aWj +aWj +aWj +aWj +aWj +bal +bal +bal +aaU +bal +bal +bal +aaU +bal +bal +bal +aaU +bal +bal +bal +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cNy +cNz +cNz +cNy +cNH +cNP +cNU +cNy +cOc +cNX +cOk +cOo +cOv +cOp +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +cPl +abM +cPq +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(209,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +abJ +abR +acA +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +abp +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +abp +aaU +aaU +aaU +aaU +aaU +aaU +aaU +cbW +abM +aaD +aaU +aaU +aaU +aaU +aaU +aaU +aaU +abp +aaU +aaU +abp +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cNy +cNy +cNz +cNz +cNy +cNX +cNX +cOl +cOp +cOp +cOl +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +abp +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +cPm +abR +cPq +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(210,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +abJ +abR +acB +adc +adc +adL +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +bGK +bGK +bUe +ccc +abR +aaY +cdb +bGK +cdq +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaU +aWj +aWj +aaU +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cPd +cPd +cPd +cPn +abM +cPq +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(211,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +abJ +abM +abR +abM +abR +abM +aZG +aaU +aaU +aaU +aaU +aaU +aaU +aTd +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aTd +aaU +aaU +aaU +aTx +abM +abR +abM +adl +ccr +ccO +abM +abR +abM +aZG +aaU +aaU +aaU +aTd +aaU +aaU +aTd +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +cNQ +cNI +aWj +aWj +aWj +aWj +aaU +aTd +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aTd +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aTx +abM +abR +abM +abR +abM +cPq +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(212,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +abp +abJ +abZ +abZ +abZ +abZ +abZ +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +bGP +bNo +bNo +ccf +ccs +ccP +cdi +bNo +bNo +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cNI +cNI +cNI +aWj +aWj +aWj +aWj +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cPe +cPh +cPh +cPh +cPh +cPh +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(213,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +abp +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +abp +aaU +aaU +aaU +aaU +aaU +aaU +aaU +abM +abM +abM +aaU +aaU +aaU +aaU +aaU +aaU +aaU +abp +aaU +aaU +abp +aaU +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaU +abM +cNI +aWj +abp +abp +aWj +aaU +abp +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +abp +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +aaU +abp +aaU +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(214,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaU +aaa +aWj +brs +brs +aWj +aaa +aaU +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(215,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aWj +aWj +aWj +aWj +aWj +aWj +cfq +cfq +aWj +aWj +aWj +aWj +aWj +aWj +aWj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(216,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(217,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +cpB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cpB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cpB +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(218,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +cpB +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(219,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(220,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(221,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +cpC +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +ckl +ckl +cpC +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(222,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(223,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(224,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(225,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(226,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(227,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(228,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aWj +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(229,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aWj +aWj +aWj +aWj +aWj +aWj +aWj +aWj +aWj +aWj +aWj +aWj +aWj +aWj +aWj +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(230,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(231,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(232,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(233,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(234,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(235,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(236,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(237,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(238,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(239,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(240,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(241,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(242,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(243,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(244,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(245,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(246,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(247,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(248,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(249,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(250,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(251,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(252,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(253,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(254,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +"} +(255,1,1) = {" +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl +ckl "} From d4196650fdfee8486e87019c76f116a8f33d3df8 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 25 Aug 2020 11:06:50 -0500 Subject: [PATCH 60/94] Automatic changelog generation for PR #13132 [ci skip] --- html/changelogs/AutoChangeLog-pr-13132.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13132.yml diff --git a/html/changelogs/AutoChangeLog-pr-13132.yml b/html/changelogs/AutoChangeLog-pr-13132.yml new file mode 100644 index 0000000000..a69e52b6ac --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13132.yml @@ -0,0 +1,4 @@ +author: "ancientpower" +delete-after: True +changes: + - tweak: "Ghosts can read newscasters by clicking on them." From 8699ce2174282b4f02fff219c417259718359392 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Tue, 25 Aug 2020 11:58:20 -0700 Subject: [PATCH 61/94] fixes a bunch of broken clickdelays (#13218) * fixes * fix --- code/_onclick/overmind.dm | 2 +- code/game/objects/structures/grille.dm | 6 +++++- code/modules/food_and_drinks/food/snacks.dm | 5 ++++- code/modules/hydroponics/hydroitemdefines.dm | 13 +++++++++---- code/modules/mob/living/carbon/carbon.dm | 4 ++-- .../reagents/reagent_containers/spray.dm | 18 +++++++++++------- 6 files changed, 32 insertions(+), 16 deletions(-) diff --git a/code/_onclick/overmind.dm b/code/_onclick/overmind.dm index 8ace273dd8..419524c871 100644 --- a/code/_onclick/overmind.dm +++ b/code/_onclick/overmind.dm @@ -32,4 +32,4 @@ /mob/camera/blob/AltClickOn(atom/A) //Remove a blob var/turf/T = get_turf(A) if(T) - remove_blob(T) \ No newline at end of file + remove_blob(T) diff --git a/code/game/objects/structures/grille.dm b/code/game/objects/structures/grille.dm index 36e4f825da..7853b9619c 100644 --- a/code/game/objects/structures/grille.dm +++ b/code/game/objects/structures/grille.dm @@ -86,6 +86,10 @@ /obj/structure/grille/attack_animal(mob/user) . = ..() + if(!user.CheckActionCooldown(CLICK_CD_MELEE)) + return + user.DelayNextAction(flush = TRUE) + user.do_attack_animation(src) if(!shock(user, 70) && !QDELETED(src)) //Last hit still shocks but shouldn't deal damage to the grille) take_damage(rand(5,10), BRUTE, "melee", 1) @@ -114,12 +118,12 @@ /obj/structure/grille/attack_alien(mob/living/user) if(!user.CheckActionCooldown(CLICK_CD_MELEE)) return + user.DelayNextAction(flush = TRUE) user.do_attack_animation(src) user.visible_message("[user] mangles [src].", null, null, COMBAT_MESSAGE_RANGE) if(!shock(user, 70)) take_damage(20, BRUTE, "melee", 1) - /obj/structure/grille/CanPass(atom/movable/mover, turf/target) if(istype(mover) && (mover.pass_flags & PASSGRILLE)) return TRUE diff --git a/code/modules/food_and_drinks/food/snacks.dm b/code/modules/food_and_drinks/food/snacks.dm index 895699434a..4d5f4e2dd0 100644 --- a/code/modules/food_and_drinks/food/snacks.dm +++ b/code/modules/food_and_drinks/food/snacks.dm @@ -97,9 +97,12 @@ All foods are distributed among various categories. Use common sense. return -/obj/item/reagent_containers/food/snacks/attack(mob/living/M, mob/living/user, def_zone) +/obj/item/reagent_containers/food/snacks/attack(mob/living/M, mob/living/user, attackchain_flags = NONE, damage_multiplier = 1) if(user.a_intent == INTENT_HARM) return ..() + INVOKE_ASYNC(src, .proc/attempt_forcefeed, M, user) + +/obj/item/reagent_containers/food/snacks/proc/attempt_forcefeed(mob/living/M, mob/living/user) if(!eatverb) eatverb = pick("bite","chew","nibble","gnaw","gobble","chomp") if(!reagents.total_volume) //Shouldn't be needed but it checks to see if it has anything left in it. diff --git a/code/modules/hydroponics/hydroitemdefines.dm b/code/modules/hydroponics/hydroitemdefines.dm index abf6632939..f6be9db9a2 100644 --- a/code/modules/hydroponics/hydroitemdefines.dm +++ b/code/modules/hydroponics/hydroitemdefines.dm @@ -103,6 +103,7 @@ throwforce = 5 throw_speed = 2 throw_range = 3 + attack_speed = CLICK_CD_MELEE w_class = WEIGHT_CLASS_BULKY flags_1 = CONDUCT_1 armour_penetration = 20 @@ -125,9 +126,12 @@ playsound(src,pick('sound/misc/desceration-01.ogg','sound/misc/desceration-02.ogg','sound/misc/desceration-01.ogg') ,50, 1, -1) return (BRUTELOSS) -/obj/item/scythe/pre_attack(atom/A, mob/living/user, params) +/obj/item/scythe/pre_attack(atom/A, mob/living/user, params, attackchain_flags, damage_multiplier) + . = ..() + if(. & STOP_ATTACK_PROC_CHAIN) + return if(swiping || !istype(A, /obj/structure/spacevine) || get_turf(A) == get_turf(user)) - return ..() + return else var/turf/user_turf = get_turf(user) var/dir_to_target = get_dir(user_turf, get_turf(A)) @@ -138,11 +142,12 @@ var/turf/T = get_step(user_turf, turn(dir_to_target, i)) for(var/obj/structure/spacevine/V in T) if(user.Adjacent(V)) - melee_attack_chain(user, V) + melee_attack_chain(user, V, attackchain_flags = ATTACK_IGNORE_CLICKDELAY) stam_gain += 5 //should be hitcost swiping = FALSE stam_gain += 2 //Initial hitcost user.adjustStaminaLoss(-stam_gain) + user.DelayNextAction() // ************************************* // Nutrient defines for hydroponics @@ -192,4 +197,4 @@ /obj/item/reagent_containers/glass/bottle/killer/pestkiller name = "bottle of pest spray" desc = "Contains a pesticide." - list_reagents = list(/datum/reagent/toxin/pestkiller = 50) \ No newline at end of file + list_reagents = list(/datum/reagent/toxin/pestkiller = 50) diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index edb681e60f..b7d67e49a6 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -87,7 +87,7 @@ if(user != src && (user.a_intent == INTENT_HELP || user.a_intent == INTENT_DISARM)) for(var/datum/surgery/S in surgeries) if(S.next_step(user,user.a_intent)) - return 1 + return STOP_ATTACK_PROC_CHAIN if(!all_wounds || !(user.a_intent == INTENT_HELP || user == src)) return ..() @@ -95,7 +95,7 @@ for(var/i in shuffle(all_wounds)) var/datum/wound/W = i if(W.try_treating(I, user)) - return 1 + return STOP_ATTACK_PROC_CHAIN return ..() diff --git a/code/modules/reagents/reagent_containers/spray.dm b/code/modules/reagents/reagent_containers/spray.dm index 9b25a80680..926ed27854 100644 --- a/code/modules/reagents/reagent_containers/spray.dm +++ b/code/modules/reagents/reagent_containers/spray.dm @@ -19,6 +19,10 @@ var/stream_range = 1 //the range of tiles the sprayer will reach when in stream mode. var/stream_amount = 10 //the amount of reagents transfered when in stream mode. var/spray_delay = 3 //The amount of sleep() delay between each chempuff step. + /// Last world.time of spray + var/last_spray = 0 + /// Spray cooldown + var/spray_cooldown = CLICK_CD_MELEE var/can_fill_from_container = TRUE amount_per_transfer_from_this = 5 volume = 250 @@ -27,8 +31,6 @@ /obj/item/reagent_containers/spray/afterattack(atom/A, mob/user) . = ..() - if(!user.CheckActionCooldown(CLICK_CD_MELEE)) - return if(istype(A, /obj/structure/sink) || istype(A, /obj/structure/janitorialcart) || istype(A, /obj/machinery/hydroponics)) return @@ -49,7 +51,8 @@ to_chat(user, "[src] is empty!") return - spray(A) + if(!spray(A)) + return playsound(src.loc, 'sound/effects/spray2.ogg', 50, 1, -6) user.last_action = world.time @@ -64,10 +67,10 @@ if(reagents.has_reagent(/datum/reagent/lube)) message_admins("[ADMIN_LOOKUPFLW(user)] fired Space lube from \a [src] at [ADMIN_VERBOSEJMP(T)].") log_game("[key_name(user)] fired Space lube from \a [src] at [AREACOORD(T)].") - return - /obj/item/reagent_containers/spray/proc/spray(atom/A) + if((last_spray + spray_cooldown) > world.time) + return var/range = clamp(get_dist(src, A), 1, current_range) var/obj/effect/decal/chempuff/D = new /obj/effect/decal/chempuff(get_turf(src)) D.create_reagents(amount_per_transfer_from_this, NONE, NO_REAGENTS_VALUE) @@ -79,10 +82,11 @@ reagents.trans_to(D, amount_per_transfer_from_this, 1/range) D.color = mix_color_from_reagents(D.reagents.reagent_list) var/wait_step = max(round(2+ spray_delay * INVERSE(range)), 2) - do_spray(A, wait_step, D, range, puff_reagent_left) + last_spray = world.time + INVOKE_ASYNC(src, .proc/do_spray, A, wait_step, D, range, puff_reagent_left) + return TRUE /obj/item/reagent_containers/spray/proc/do_spray(atom/A, wait_step, obj/effect/decal/chempuff/D, range, puff_reagent_left) - set waitfor = FALSE var/range_left = range for(var/i=0, i Date: Tue, 25 Aug 2020 12:04:42 -0700 Subject: [PATCH 62/94] ports my baystruments updates from tg (#13219) * subsystem * fix * e * update * fix --- .../subsystem/processing/instruments.dm | 17 +- code/modules/instruments/songs/_song.dm | 171 ++++++++++++++---- code/modules/instruments/songs/play_legacy.dm | 92 +++++----- .../instruments/songs/play_synthesized.dm | 51 +++--- 4 files changed, 221 insertions(+), 110 deletions(-) diff --git a/code/controllers/subsystem/processing/instruments.dm b/code/controllers/subsystem/processing/instruments.dm index a4e0d7703f..ee0fd1ea00 100644 --- a/code/controllers/subsystem/processing/instruments.dm +++ b/code/controllers/subsystem/processing/instruments.dm @@ -4,16 +4,26 @@ PROCESSING_SUBSYSTEM_DEF(instruments) init_order = INIT_ORDER_INSTRUMENTS flags = SS_KEEP_TIMING priority = FIRE_PRIORITY_INSTRUMENTS - var/static/list/datum/instrument/instrument_data = list() //id = datum + /// List of all instrument data, associative id = datum + var/static/list/datum/instrument/instrument_data = list() + /// List of all song datums. var/static/list/datum/song/songs = list() + /// Max lines in songs var/static/musician_maxlines = 600 + /// Max characters per line in songs var/static/musician_maxlinechars = 300 + /// Deciseconds between hearchecks. Too high and instruments seem to lag when people are moving around in terms of who can hear it. Too low and the server lags from this. var/static/musician_hearcheck_mindelay = 5 + /// Maximum instrument channels total instruments are allowed to use. This is so you don't have instruments deadlocking all sound channels. var/static/max_instrument_channels = MAX_INSTRUMENT_CHANNELS + /// Current number of channels allocated for instruments var/static/current_instrument_channels = 0 + /// Single cached list for synthesizer instrument ids, so you don't have to have a new list with every synthesizer. + var/static/list/synthesizer_instrument_ids /datum/controller/subsystem/processing/instruments/Initialize() initialize_instrument_data() + synthesizer_instrument_ids = get_allowed_instrument_ids() return ..() /datum/controller/subsystem/processing/instruments/proc/on_song_new(datum/song/S) @@ -29,7 +39,10 @@ PROCESSING_SUBSYSTEM_DEF(instruments) continue I = new path I.Initialize() - instrument_data[I.id || "[I.type]"] = I + if(!I.id) + qdel(I) + continue + instrument_data[I.id] = I CHECK_TICK /datum/controller/subsystem/processing/instruments/proc/get_instrument(id_or_path) diff --git a/code/modules/instruments/songs/_song.dm b/code/modules/instruments/songs/_song.dm index d842dbc003..a0d96658e6 100644 --- a/code/modules/instruments/songs/_song.dm +++ b/code/modules/instruments/songs/_song.dm @@ -2,6 +2,12 @@ #define MUSIC_MAXLINES 1000 #define MUSIC_MAXLINECHARS 300 +/** + * # Song datum + * + * These are the actual backend behind instruments. + * They attach to an atom and provide the editor + playback functionality. + */ /datum/song /// Name of the song var/name = "Untitled" @@ -15,6 +21,9 @@ /// delay between notes in deciseconds var/tempo = 5 + /// How far we can be heard + var/instrument_range = 15 + /// Are we currently playing? var/playing = FALSE @@ -53,17 +62,24 @@ /////////////////// Playing variables //////////////// /** - * Only used in synthesized playback - The chords we compiled. Non assoc list of lists: - * list(list(key1, key2, key3..., tempo_divisor), list(key1, key2..., tempo_divisor), ...) - * tempo_divisor always exists - * if key1 (and so if there's no keys) doesn't exist it's a rest + * Build by compile_chords() + * Must be rebuilt on instrument switch. * Compilation happens when we start playing and is cleared after we finish playing. + * Format: list of chord lists, with chordlists having (key1, key2, key3, tempodiv) */ var/list/compiled_chords + /// Current section of a long chord we're on, so we don't need to make a billion chords, one for every unit ticklag. + var/elapsed_delay + /// Amount of delay to wait before playing the next chord + var/delay_by + /// Current chord we're on. + var/current_chord /// Channel as text = current volume percentage but it's 0 to 100 instead of 0 to 1. var/list/channels_playing = list() /// List of channels that aren't being used, as text. This is to prevent unnecessary freeing and reallocations from SSsounds/SSinstruments. var/list/channels_idle = list() + /// Person playing us + var/mob/user_playing ////////////////////////////////////////////////////// /// Last world.time we checked for who can hear us @@ -72,8 +88,6 @@ var/list/hearing_mobs /// If this is enabled, some things won't be strictly cleared when they usually are (liked compiled_chords on play stop) var/debug_mode = FALSE - /// Last time we processed decay - var/last_process_decay /// Max sound channels to occupy var/max_sound_channels = CHANNELS_PER_INSTRUMENT /// Current channels, so we can save a length() call. @@ -113,7 +127,7 @@ var/cached_exponential_dropoff = 1.045 ///////////////////////////////////////////////////////////////////////// -/datum/song/New(atom/parent, list/instrument_ids) +/datum/song/New(atom/parent, list/instrument_ids, new_range) SSinstruments.on_song_new(src) lines = list() tempo = sanitize_tempo(tempo) @@ -125,6 +139,8 @@ hearing_mobs = list() volume = clamp(volume, min_volume, max_volume) update_sustain() + if(new_range) + instrument_range = new_range /datum/song/Destroy() stop_playing() @@ -135,12 +151,15 @@ parent = null return ..() +/** + * Checks and stores which mobs can hear us. Terminates sounds for mobs that leave our range. + */ /datum/song/proc/do_hearcheck() last_hearcheck = world.time var/list/old = hearing_mobs.Copy() hearing_mobs.len = 0 var/turf/source = get_turf(parent) - for(var/mob/M in get_hearers_in_view(15, source)) + for(var/mob/M in get_hearers_in_view(instrument_range, source)) if(!(M?.client?.prefs?.toggles & SOUND_INSTRUMENTS)) continue hearing_mobs[M] = get_dist(M, source) @@ -148,10 +167,15 @@ for(var/i in exited) terminate_sound_mob(i) -/// I can either be a datum, id, or path (if the instrument has no id). +/** + * Sets our instrument, caching anything necessary for faster accessing. Accepts an ID, typepath, or instantiated instrument datum. + */ /datum/song/proc/set_instrument(datum/instrument/I) + terminate_all_sounds() + var/old_legacy if(using_instrument) using_instrument.songs_using -= src + old_legacy = (using_instrument.instrument_flags & INSTRUMENT_LEGACY) using_instrument = null cached_samples = null cached_legacy_ext = null @@ -162,7 +186,7 @@ if(istype(I)) using_instrument = I I.songs_using += src - var/instrument_legacy = CHECK_BITFIELD(I.instrument_flags, INSTRUMENT_LEGACY) + var/instrument_legacy = (I.instrument_flags & INSTRUMENT_LEGACY) if(instrument_legacy) cached_legacy_ext = I.legacy_instrument_ext cached_legacy_dir = I.legacy_instrument_path @@ -170,23 +194,37 @@ else cached_samples = I.samples legacy = FALSE + if(isnull(old_legacy) || (old_legacy != instrument_legacy)) + if(playing) + compile_chords() -/// THIS IS A BLOCKING CALL. +/** + * Attempts to start playing our song. + */ /datum/song/proc/start_playing(mob/user) if(playing) return if(!using_instrument?.ready()) to_chat(user, "An error has occured with [src]. Please reset the instrument.") return + compile_chords() + if(!length(compiled_chords)) + to_chat(user, "Song is empty.") + return playing = TRUE - updateDialog() + updateDialog(user_playing) //we can not afford to runtime, since we are going to be doing sound channel reservations and if we runtime it means we have a channel allocation leak. //wrap the rest of the stuff to ensure stop_playing() is called. - last_process_decay = world.time + do_hearcheck() + elapsed_delay = 0 + delay_by = 0 + current_chord = 1 + user_playing = user START_PROCESSING(SSinstruments, src) - . = do_play_lines(user) - stop_playing() +/** + * Stops playing, terminating all sounds if in synthesized mode. Clears hearing_mobs. + */ /datum/song/proc/stop_playing() if(!playing) return @@ -196,42 +234,93 @@ STOP_PROCESSING(SSinstruments, src) terminate_all_sounds(TRUE) hearing_mobs.len = 0 - updateDialog() + user_playing = null -/// THIS IS A BLOCKING CALL. -/datum/song/proc/do_play_lines(user) - if(!playing) +/** + * Processes our song. + */ +/datum/song/proc/process_song(wait) + if(!length(compiled_chords) || should_stop_playing(user_playing)) + stop_playing() return - do_hearcheck() - if(legacy) - do_play_lines_legacy(user) - else - do_play_lines_synthesized(user) + var/list/chord = compiled_chords[current_chord] + if(++elapsed_delay >= delay_by) + play_chord(chord) + elapsed_delay = 0 + delay_by = tempodiv_to_delay(chord[length(chord)]) + current_chord++ + if(current_chord > length(compiled_chords)) + if(repeat) + repeat-- + current_chord = 1 + return + else + stop_playing() + return +/** + * Converts a tempodiv to ticks to elapse before playing the next chord, taking into account our tempo. + */ +/datum/song/proc/tempodiv_to_delay(tempodiv) + if(!tempodiv) + tempodiv = 1 // no division by 0. some song converters tend to use 0 for when it wants to have no div, for whatever reason. + return max(1, round((tempo/tempodiv) / world.tick_lag, 1)) + +/** + * Compiles chords. + */ +/datum/song/proc/compile_chords() + legacy? compile_legacy() : compile_synthesized() + +/** + * Plays a chord. + */ +/datum/song/proc/play_chord(list/chord) + // last value is timing information + for(var/i in 1 to (length(chord) - 1)) + legacy? playkey_legacy(chord[i][1], chord[i][2], chord[i][3], user_playing) : playkey_synth(chord[i], user_playing) + +/** + * Checks if we should halt playback. + */ /datum/song/proc/should_stop_playing(mob/user) return QDELETED(parent) || !using_instrument || !playing +/** + * Sanitizes tempo to a value that makes sense and fits the current world.tick_lag. + */ /datum/song/proc/sanitize_tempo(new_tempo) new_tempo = abs(new_tempo) return clamp(round(new_tempo, world.tick_lag), world.tick_lag, 5 SECONDS) +/** + * Gets our beats per minute based on our tempo. + */ /datum/song/proc/get_bpm() return 600 / tempo +/** + * Sets our tempo from a beats-per-minute, sanitizing it to a valid number first. + */ /datum/song/proc/set_bpm(bpm) tempo = sanitize_tempo(600 / bpm) -/// Updates the window for our user. Override in subtypes. -/datum/song/proc/updateDialog(mob/user = usr) +/** + * Updates the window for our users. Override down the line. + */ +/datum/song/proc/updateDialog(mob/user) ui_interact(user) /datum/song/process(wait) if(!playing) return PROCESS_KILL - var/delay = world.time - last_process_decay - process_decay(delay) - last_process_decay = world.time + // it's expected this ticks at every world.tick_lag. if it lags, do not attempt to catch up. + process_song(world.tick_lag) + process_decay(world.tick_lag) +/** + * Updates our cached linear/exponential falloff stuff, saving calculations down the line. + */ /datum/song/proc/update_sustain() // Exponential is easy cached_exponential_dropoff = sustain_exponential_dropoff @@ -241,21 +330,33 @@ var/volume_decrease_per_decisecond = volume_diff / target_duration cached_linear_dropoff = volume_decrease_per_decisecond +/** + * Setter for setting output volume. + */ /datum/song/proc/set_volume(volume) src.volume = clamp(volume, max(0, min_volume), min(100, max_volume)) update_sustain() updateDialog() +/** + * Setter for setting how low the volume has to get before a note is considered "dead" and dropped + */ /datum/song/proc/set_dropoff_volume(volume) sustain_dropoff_volume = clamp(volume, INSTRUMENT_MIN_SUSTAIN_DROPOFF, 100) update_sustain() updateDialog() +/** + * Setter for setting exponential falloff factor. + */ /datum/song/proc/set_exponential_drop_rate(drop) sustain_exponential_dropoff = clamp(drop, INSTRUMENT_EXP_FALLOFF_MIN, INSTRUMENT_EXP_FALLOFF_MAX) update_sustain() updateDialog() +/** + * Setter for setting linear falloff duration. + */ /datum/song/proc/set_linear_falloff_duration(duration) sustain_linear_duration = clamp(duration, 0.1, INSTRUMENT_MAX_TOTAL_SUSTAIN) update_sustain() @@ -277,10 +378,8 @@ // subtype for handheld instruments, like violin /datum/song/handheld -/datum/song/handheld/updateDialog(mob/user = usr) - if(user.machine != src) - return - parent.ui_interact(user) +/datum/song/handheld/updateDialog(mob/user) + parent.ui_interact(user || usr) /datum/song/handheld/should_stop_playing(mob/user) . = ..() @@ -292,10 +391,8 @@ // subtype for stationary structures, like pianos /datum/song/stationary -/datum/song/stationary/updateDialog(mob/user = usr) - if(user.machine != src) - return - parent.ui_interact(user) +/datum/song/stationary/updateDialog(mob/user) + parent.ui_interact(user || usr) /datum/song/stationary/should_stop_playing(mob/user) . = ..() diff --git a/code/modules/instruments/songs/play_legacy.dm b/code/modules/instruments/songs/play_legacy.dm index fa64656ebc..eee9be3cc7 100644 --- a/code/modules/instruments/songs/play_legacy.dm +++ b/code/modules/instruments/songs/play_legacy.dm @@ -1,48 +1,52 @@ -/// Playing legacy instruments - None of the "advanced" like sound reservations and decay are invoked. -/datum/song/proc/do_play_lines_legacy(mob/user) - while(repeat >= 0) - var/cur_oct[7] - var/cur_acc[7] - for(var/i = 1 to 7) - cur_oct[i] = 3 - cur_acc[i] = "n" +/** + * Compiles our lines into "chords" with filenames for legacy playback. This makes there have to be a bit of lag at the beginning of the song, but repeats will not have to parse it again, and overall playback won't be impacted by as much lag. + */ +/datum/song/proc/compile_legacy() + if(!length(src.lines)) + return + var/list/lines = src.lines //cache for hyepr speed! + compiled_chords = list() + var/list/octaves = list(3, 3, 3, 3, 3, 3, 3) + var/list/accents = list("n", "n", "n", "n", "n", "n", "n") + for(var/line in lines) + var/list/chords = splittext(lowertext(line), ",") + for(var/chord in chords) + var/list/compiled_chord = list() + var/tempodiv = 1 + var/list/notes_tempodiv = splittext(chord, "/") + var/len = length(notes_tempodiv) + if(len >= 2) + tempodiv = text2num(notes_tempodiv[2]) + if(len) //some dunkass is going to do ,,,, to make 3 rests instead of ,/1 because there's no standardization so let's be prepared for that. + var/list/notes = splittext(notes_tempodiv[1], "-") + for(var/note in notes) + if(length(note) == 0) + continue + // 1-7, A-G + var/key = text2ascii(note) - 96 + if((key < 1) || (key > 7)) + continue + for(var/i in 2 to length(note)) + var/oct_acc = copytext(note, i, i + 1) + var/num = text2num(oct_acc) + if(!num) //it's an accidental + accents[key] = oct_acc //if they misspelled it/fucked up that's on them lmao, no safety checks. + else //octave + octaves[key] = clamp(num, octave_min, octave_max) + compiled_chord[++compiled_chord.len] = list(key, accents[key], octaves[key]) + compiled_chord += tempodiv //this goes last + if(length(compiled_chord)) + compiled_chords[++compiled_chords.len] = compiled_chord - for(var/line in lines) - for(var/beat in splittext(lowertext(line), ",")) - if(should_stop_playing(user)) - return - var/list/notes = splittext(beat, "/") - if(length(notes)) //because some jack-butts are going to do ,,,, to symbolize 3 rests instead of something reasonable like ,/1. - for(var/note in splittext(notes[1], "-")) - if(length(note) == 0) - continue - var/cur_note = text2ascii(note) - 96 - if(cur_note < 1 || cur_note > 7) - continue - for(var/i=2 to length(note)) - var/ni = copytext(note,i,i+1) - if(!text2num(ni)) - if(ni == "#" || ni == "b" || ni == "n") - cur_acc[cur_note] = ni - else if(ni == "s") - cur_acc[cur_note] = "#" // so shift is never required - else - cur_oct[cur_note] = text2num(ni) - playnote_legacy(cur_note, cur_acc[cur_note], cur_oct[cur_note]) - if(notes.len >= 2 && text2num(notes[2])) - sleep(sanitize_tempo(tempo / text2num(notes[2]))) - else - sleep(tempo) - if(should_stop_playing(user)) - return - repeat-- - updateDialog() - repeat = 0 - -// note is a number from 1-7 for A-G -// acc is either "b", "n", or "#" -// oct is 1-8 (or 9 for C) -/datum/song/proc/playnote_legacy(note, acc as text, oct) +/** + * Proc to play a legacy note. Just plays the sound to hearing mobs (and does hearcheck if necessary), no fancy channel/sustain/management. + * + * Arguments: + * * note is a number from 1-7 for A-G + * * acc is either "b", "n", or "#" + * * oct is 1-8 (or 9 for C) + */ +/datum/song/proc/playkey_legacy(note, acc as text, oct, mob/user) // handle accidental -> B<>C of E<>F if(acc == "b" && (note == 3 || note == 6)) // C or F if(note == 3) diff --git a/code/modules/instruments/songs/play_synthesized.dm b/code/modules/instruments/songs/play_synthesized.dm index 5e7c5652a0..4df54f5e6b 100644 --- a/code/modules/instruments/songs/play_synthesized.dm +++ b/code/modules/instruments/songs/play_synthesized.dm @@ -1,27 +1,7 @@ -/datum/song/proc/do_play_lines_synthesized(mob/user) - compile_lines() - while(repeat >= 0) - if(should_stop_playing(user)) - return - var/warned = FALSE - for(var/_chord in compiled_chords) - if(should_stop_playing(user)) - return - var/list/chord = _chord - var/tempodiv = chord[chord.len] - for(var/i in 1 to chord.len - 1) - var/key = chord[i] - if(!playkey_synth(key)) - if(!warned) - warned = TRUE - to_chat(user, "Your instrument has ran out of channels. You might be playing your song too fast or be setting sustain to too high of a value. This warning will be suppressed for the rest of this cycle.") - sleep(sanitize_tempo(tempo / (tempodiv || 1))) - repeat-- - updateDialog() - repeat = 0 - -/// C-Db2-A-A4/2,A-B#4-C/3,/4,A,A-B-C as an example -/datum/song/proc/compile_lines() +/** + * Compiles our lines into "chords" with numbers. This makes there have to be a bit of lag at the beginning of the song, but repeats will not have to parse it again, and overall playback won't be impacted by as much lag. + */ +/datum/song/proc/compile_synthesized() if(!length(src.lines)) return var/list/lines = src.lines //cache for hyepr speed! @@ -57,10 +37,12 @@ compiled_chord += tempodiv //this goes last if(length(compiled_chord)) compiled_chords[++compiled_chords.len] = compiled_chord - CHECK_TICK - return compiled_chords -/datum/song/proc/playkey_synth(key) +/** + * Plays a specific numerical key from our instrument to anyone who can hear us. + * Does a hearing check if enough time has passed. + */ +/datum/song/proc/playkey_synth(key, mob/user) if(can_noteshift) key = clamp(key + note_shift, key_min, key_max) if((world.time - MUSICIAN_HEARCHECK_MINDELAY) > last_hearcheck) @@ -83,6 +65,9 @@ M.playsound_local(get_turf(parent), null, volume, FALSE, K.frequency, INSTRUMENT_DISTANCE_NO_FALLOFF, channel, null, copy, distance_multiplier = INSTRUMENT_DISTANCE_FALLOFF_BUFF) // Could do environment and echo later but not for now +/** + * Stops all sounds we are "responsible" for. Only works in synthesized mode. + */ /datum/song/proc/terminate_all_sounds(clear_channels = TRUE) for(var/i in hearing_mobs) terminate_sound_mob(i) @@ -93,10 +78,16 @@ using_sound_channels = 0 SSsounds.free_datum_channels(src) +/** + * Stops all sounds we are responsible for in a given person. Only works in synthesized mode. + */ /datum/song/proc/terminate_sound_mob(mob/M) for(var/channel in channels_playing) M.stop_sound_channel(text2num(channel)) +/** + * Pops a channel we have reserved so we don't have to release and re-request them from SSsounds every time we play a note. This is faster. + */ /datum/song/proc/pop_channel() if(length(channels_idle)) //just pop one off of here if we have one available . = text2num(channels_idle[1]) @@ -108,6 +99,12 @@ if(!isnull(.)) using_sound_channels++ +/** + * Decays our channels and updates their volumes to mobs who can hear us. + * + * Arguments: + * * wait_ds - the deciseconds we should decay by. This is to compensate for any lag, as otherwise songs would get pretty nasty during high time dilation. + */ /datum/song/proc/process_decay(wait_ds) var/linear_dropoff = cached_linear_dropoff * wait_ds var/exponential_dropoff = cached_exponential_dropoff ** wait_ds From 1608214156b5c7d8a84ea59785b0dea02584e78e Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Tue, 25 Aug 2020 13:17:36 -0700 Subject: [PATCH 63/94] gives vortex blasts 50% armor pen vs mechas (#13171) * Update hierophant.dm * Update hierophant.dm * Update hierophant.dm --- .../mob/living/simple_animal/hostile/megafauna/hierophant.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm b/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm index 525388fa61..bd3a6e8232 100644 --- a/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm +++ b/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm @@ -661,7 +661,7 @@ Difficulty: Normal continue to_chat(M.occupant, "Your [M.name] is struck by a [name]!") playsound(M,'sound/weapons/sear.ogg', 50, 1, -4) - M.take_damage(damage, BURN, 0, 0) + M.take_damage(damage, BURN, 0, 0, null, 50) /obj/effect/hierophant name = "hierophant beacon" From e1b8b5a4f007ff7c2ffe1c87678bc3c513dc27d4 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 25 Aug 2020 15:17:41 -0500 Subject: [PATCH 64/94] Automatic changelog generation for PR #13171 [ci skip] --- html/changelogs/AutoChangeLog-pr-13171.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13171.yml diff --git a/html/changelogs/AutoChangeLog-pr-13171.yml b/html/changelogs/AutoChangeLog-pr-13171.yml new file mode 100644 index 0000000000..ecdf59f4de --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13171.yml @@ -0,0 +1,4 @@ +author: "silicons" +delete-after: True +changes: + - balance: "hierophant vortex blasts now have 50% armor penetration vs mecha" From 9d0fafd09e6c6710364739a53e85e007ce270151 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Tue, 25 Aug 2020 14:08:34 -0700 Subject: [PATCH 65/94] Update ventcrawling.dm (#13061) --- code/modules/mob/living/ventcrawling.dm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/ventcrawling.dm b/code/modules/mob/living/ventcrawling.dm index 36a596f42e..6661d0ccea 100644 --- a/code/modules/mob/living/ventcrawling.dm +++ b/code/modules/mob/living/ventcrawling.dm @@ -19,8 +19,11 @@ GLOBAL_LIST_INIT(ventcrawl_machinery, typecacheof(list( to_chat(src, "You can't vent crawl while you're restrained!") return if(has_buckled_mobs()) - to_chat(src, "You can't vent crawl with other creatures on you!") - return + // attempt once + unbuckle_all_mobs() + if(has_buckled_mobs()) + to_chat(src, "You can't vent crawl with other creatures on you!") + return if(buckled) to_chat(src, "You can't vent crawl while buckled!") return From 2aaa9cd2a329489f189fc981726813a5710f6fec Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Tue, 25 Aug 2020 16:08:38 -0500 Subject: [PATCH 66/94] Automatic changelog generation for PR #13061 [ci skip] --- html/changelogs/AutoChangeLog-pr-13061.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13061.yml diff --git a/html/changelogs/AutoChangeLog-pr-13061.yml b/html/changelogs/AutoChangeLog-pr-13061.yml new file mode 100644 index 0000000000..3380ee0460 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13061.yml @@ -0,0 +1,4 @@ +author: "silicons" +delete-after: True +changes: + - balance: "ventcrawling now kicks off every attached/buckled mob, even for non humans." From f908475617acc0cd0a83b92648c0c793bd3b2338 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Wed, 26 Aug 2020 01:01:09 +0100 Subject: [PATCH 67/94] rock paper scissors --- code/__DEFINES/rockpaperscissors.dm | 7 ++ code/_globalvars/lists/objects.dm | 3 + code/modules/mob/living/carbon/human/emote.dm | 68 +++++++++++++++++++ tgstation.dme | 1 + 4 files changed, 79 insertions(+) create mode 100644 code/__DEFINES/rockpaperscissors.dm diff --git a/code/__DEFINES/rockpaperscissors.dm b/code/__DEFINES/rockpaperscissors.dm new file mode 100644 index 0000000000..77ba81938d --- /dev/null +++ b/code/__DEFINES/rockpaperscissors.dm @@ -0,0 +1,7 @@ +#define ROCKPAPERSCISSORS_RANGE 3 +#define ROCKPAPERSCISSORS_TIME_LIMIT 20 SECONDS + +#define ROCKPAPERSCISSORS_LOSE "lose" +#define ROCKPAPERSCISSORS_WIN "win" +#define ROCKPAPERSCISSORS_TIE "tie" +#define ROCKPAPERSCISSORS_NOT_DECIDED "not_decided" \ No newline at end of file diff --git a/code/_globalvars/lists/objects.dm b/code/_globalvars/lists/objects.dm index 4de7c88bf7..fee70ee3d5 100644 --- a/code/_globalvars/lists/objects.dm +++ b/code/_globalvars/lists/objects.dm @@ -41,3 +41,6 @@ GLOBAL_LIST_EMPTY(ai_status_displays) GLOBAL_LIST_EMPTY(mob_spawners) // All mob_spawn objects GLOBAL_LIST_EMPTY(alert_consoles) // Station alert consoles, /obj/machinery/computer/station_alert + +//list of everyone playing rock paper scissors +GLOBAL_LIST_EMPTY(rockpaperscissors_players) diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index 1bfb72a415..d2cc9e58b0 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -192,3 +192,71 @@ key_third_person = "chimes" message = "chimes." sound = 'sound/machines/chime.ogg' + +//rock paper scissors emote handling +/mob/living/carbon/human/proc/beginRockPaperScissors(var/chosen_move) + GLOB.rockpaperscissors_players[src] = list(chosen_move, ROCKPAPERSCISSORS_NOT_DECIDED) + do_after_advanced(src, ROCKPAPERSCISSORS_TIME_LIMIT, src, DO_AFTER_REQUIRES_USER_ON_TURF|DO_AFTER_NO_COEFFICIENT|DO_AFTER_NO_PROGRESSBAR, CALLBACK(src, .proc/rockpaperscissors_tick)) + var/new_entry = GLOB.rockpaperscissors_players[src] + if(new_entry[2] == ROCKPAPERSCISSORS_NOT_DECIDED) + to_chat(src, "You put your hand back down.") + GLOB.rockpaperscissors_players -= src + +/mob/living/carbon/human/proc/rockpaperscissors_tick() //called every cycle of the progress bar for rock paper scissors while waiting for an opponent + var/mob/living/carbon/human/opponent + for(var/mob/living/carbon/human/potential_opponent in (GLOB.rockpaperscissors_players - src)) //dont play against yourself + if(get_dist(src, potential_opponent) <= ROCKPAPERSCISSORS_RANGE) + opponent = potential_opponent + break + if(opponent) + //we found an opponent before they found us + var/move_to_number = list("rock" = 0, "paper" = 1, "scissors" = 2) + var/our_move = move_to_number[GLOB.rockpaperscissors_players[src][1]] + var/their_move = move_to_number[GLOB.rockpaperscissors_players[opponent][1]] + var/result_us = ROCKPAPERSCISSORS_WIN + var/result_them = ROCKPAPERSCISSORS_LOSE + if(our_move == their_move) + result_us = ROCKPAPERSCISSORS_TIE + result_them = ROCKPAPERSCISSORS_TIE + else + if(((our_move + 1) % 3) == their_move) + result_us = ROCKPAPERSCISSORS_LOSE + result_them = ROCKPAPERSCISSORS_WIN + //we decided our results so set them in the list + GLOB.rockpaperscissors_players[src][2] = result_us + GLOB.rockpaperscissors_players[opponent][2] = result_them + + //show what happened + src.visible_message("[src] makes [GLOB.rockpaperscissors_players[src][1]] with their hand!") + opponent.visible_message("[opponent] makes [GLOB.rockpaperscissors_players[opponent][1]] with their hands!") + switch(result_us) + if(ROCKPAPERSCISSORS_TIE) + src.visible_message("It was a tie!") + if(ROCKPAPERSCISSORS_WIN) + src.visible_message("[src] wins!") + if(ROCKPAPERSCISSORS_LOSE) + src.visible_message("[opponent] wins!") + + //make the progress bar end so that each player can handle the result + return DO_AFTER_STOP + + //no opponent was found, so keep searching + return DO_AFTER_PROCEED + +//the actual emotes +/datum/emote/living/carbon/human/rockpaperscissors + message = "is attempting to play rock paper scissors!" + +/datum/emote/living/carbon/human/rockpaperscissors/rock + key = "rock" + +/datum/emote/living/carbon/human/rockpaperscissors/paper + key = "paper" + +/datum/emote/living/carbon/human/rockpaperscissors/scissors + key = "scissors" + +/datum/emote/living/carbon/human/rockpaperscissors/run_emote(mob/living/carbon/human/user, params) + if(!(user in GLOB.rockpaperscissors_players)) //no using the emote again while already playing! + . = ..() + user.beginRockPaperScissors(key) diff --git a/tgstation.dme b/tgstation.dme index 79c4274722..de6ee1a6bf 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -96,6 +96,7 @@ #include "code\__DEFINES\reagents_specific_heat.dm" #include "code\__DEFINES\research.dm" #include "code\__DEFINES\robots.dm" +#include "code\__DEFINES\rockpaperscissors.dm" #include "code\__DEFINES\role_preferences.dm" #include "code\__DEFINES\rust_g.dm" #include "code\__DEFINES\say.dm" From 5cf06be877d66bdcab68dba1aea05c9e4db247e2 Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Wed, 26 Aug 2020 01:09:51 +0100 Subject: [PATCH 68/94] cancel on move --- code/modules/mob/living/carbon/human/emote.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index d2cc9e58b0..04747ffcb4 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -196,7 +196,7 @@ //rock paper scissors emote handling /mob/living/carbon/human/proc/beginRockPaperScissors(var/chosen_move) GLOB.rockpaperscissors_players[src] = list(chosen_move, ROCKPAPERSCISSORS_NOT_DECIDED) - do_after_advanced(src, ROCKPAPERSCISSORS_TIME_LIMIT, src, DO_AFTER_REQUIRES_USER_ON_TURF|DO_AFTER_NO_COEFFICIENT|DO_AFTER_NO_PROGRESSBAR, CALLBACK(src, .proc/rockpaperscissors_tick)) + do_after_advanced(src, ROCKPAPERSCISSORS_TIME_LIMIT, src, DO_AFTER_REQUIRES_USER_ON_TURF|DO_AFTER_NO_COEFFICIENT|DO_AFTER_NO_PROGRESSBAR|DO_AFTER_DISALLOW_MOVING_ABSOLUTE_USER, CALLBACK(src, .proc/rockpaperscissors_tick)) var/new_entry = GLOB.rockpaperscissors_players[src] if(new_entry[2] == ROCKPAPERSCISSORS_NOT_DECIDED) to_chat(src, "You put your hand back down.") From 4f891a47ea06318d18e42699329090e2c3f403d8 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Wed, 26 Aug 2020 00:12:30 +0000 Subject: [PATCH 69/94] Automatic changelog compile [ci skip] --- html/changelog.html | 28 +++++++++------------- html/changelogs/.all_changelog.yml | 6 +++++ html/changelogs/AutoChangeLog-pr-13061.yml | 4 ---- html/changelogs/AutoChangeLog-pr-13132.yml | 4 ---- html/changelogs/AutoChangeLog-pr-13171.yml | 4 ---- 5 files changed, 17 insertions(+), 29 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-13061.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13132.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13171.yml diff --git a/html/changelog.html b/html/changelog.html index 9adfbe5691..89d877475f 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,17 @@ -->
    +

    26 August 2020

    +

    ancientpower updated:

    +
      +
    • Ghosts can read newscasters by clicking on them.
    • +
    +

    silicons updated:

    +
      +
    • hierophant vortex blasts now have 50% armor penetration vs mecha
    • +
    • ventcrawling now kicks off every attached/buckled mob, even for non humans.
    • +
    +

    25 August 2020

    Hatterhat updated:

      @@ -1474,23 +1485,6 @@
    • wataur bottle item
    • wataur bottle and overlay
    - -

    24 June 2020

    -

    DeltaFire15 updated:

    -
      -
    • Choosing a random item in your uplink will no longer sometimes reroll your contract.
    • -
    • Syndicate crate event cannot fire as a random event anymore.
    • -
    -

    Detective-Google updated:

    -
      -
    • singulos no longer succ infinite rods out of the ice
    • -
    • one of the directions for the diag hudpatch was blu instead of orang
    • -
    -

    timothyteakettle updated:

    -
      -
    • bonfires/grills no longer produce infinite quantities of food
    • -
    • slime's alter form ability now updates their hair colour when changing their body colour
    • -
    GoonStation 13 Development Team diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index 08203d0c46..270e71f740 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -27086,3 +27086,9 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. timothyteakettle: - tweak: I.P.Cs now short their circuits when expressing emotion, causing sparks to appear around them. +2020-08-26: + ancientpower: + - tweak: Ghosts can read newscasters by clicking on them. + silicons: + - balance: hierophant vortex blasts now have 50% armor penetration vs mecha + - balance: ventcrawling now kicks off every attached/buckled mob, even for non humans. diff --git a/html/changelogs/AutoChangeLog-pr-13061.yml b/html/changelogs/AutoChangeLog-pr-13061.yml deleted file mode 100644 index 3380ee0460..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13061.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "silicons" -delete-after: True -changes: - - balance: "ventcrawling now kicks off every attached/buckled mob, even for non humans." diff --git a/html/changelogs/AutoChangeLog-pr-13132.yml b/html/changelogs/AutoChangeLog-pr-13132.yml deleted file mode 100644 index a69e52b6ac..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13132.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "ancientpower" -delete-after: True -changes: - - tweak: "Ghosts can read newscasters by clicking on them." diff --git a/html/changelogs/AutoChangeLog-pr-13171.yml b/html/changelogs/AutoChangeLog-pr-13171.yml deleted file mode 100644 index ecdf59f4de..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13171.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "silicons" -delete-after: True -changes: - - balance: "hierophant vortex blasts now have 50% armor penetration vs mecha" From f611fee1930a69c628f2735402e485f1a380eb50 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Wed, 26 Aug 2020 04:06:53 -0700 Subject: [PATCH 70/94] mecha are no longer immune to goliath tentacles (#13172) * Update goliath.dm * Update goliath.dm * Update goliath.dm --- .../mob/living/simple_animal/hostile/mining_mobs/goliath.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/modules/mob/living/simple_animal/hostile/mining_mobs/goliath.dm b/code/modules/mob/living/simple_animal/hostile/mining_mobs/goliath.dm index 12f0b41d4e..fa67fd8e3b 100644 --- a/code/modules/mob/living/simple_animal/hostile/mining_mobs/goliath.dm +++ b/code/modules/mob/living/simple_animal/hostile/mining_mobs/goliath.dm @@ -200,6 +200,8 @@ L.Stun(75) L.adjustBruteLoss(rand(15,20)) // Less stun more harm latched = TRUE + for(var/obj/mecha/M in loc) + M.take_damage(20, BRUTE, null, null, null, 25) if(!latched) retract() else From c6c26149c37e49243d767c5da2d03db7b3534a8c Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 26 Aug 2020 06:06:56 -0500 Subject: [PATCH 71/94] Automatic changelog generation for PR #13172 [ci skip] --- html/changelogs/AutoChangeLog-pr-13172.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13172.yml diff --git a/html/changelogs/AutoChangeLog-pr-13172.yml b/html/changelogs/AutoChangeLog-pr-13172.yml new file mode 100644 index 0000000000..240f29920d --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13172.yml @@ -0,0 +1,4 @@ +author: "silicons" +delete-after: True +changes: + - balance: "goliath tentacles now do 20 damage to mechs at 25% ap" From d877a8c0fb2de233187a96417951b0c0c4bc4867 Mon Sep 17 00:00:00 2001 From: Timothy Teakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Wed, 26 Aug 2020 13:14:19 +0100 Subject: [PATCH 72/94] qol (#13250) --- code/modules/client/preferences.dm | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/modules/client/preferences.dm b/code/modules/client/preferences.dm index 778b5175a7..ae2dfee7a7 100644 --- a/code/modules/client/preferences.dm +++ b/code/modules/client/preferences.dm @@ -2092,8 +2092,6 @@ GLOBAL_LIST_EMPTY(preferences_datums) else features["body_model"] = chosengender gender = chosengender - facial_hair_style = random_facial_hair_style(gender) - hair_style = random_hair_style(gender) if("body_size") var/min = CONFIG_GET(number/body_size_min) From c6e1afc09ee4c451325916b35ef4386624134634 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 26 Aug 2020 07:14:22 -0500 Subject: [PATCH 73/94] Automatic changelog generation for PR #13250 [ci skip] --- html/changelogs/AutoChangeLog-pr-13250.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13250.yml diff --git a/html/changelogs/AutoChangeLog-pr-13250.yml b/html/changelogs/AutoChangeLog-pr-13250.yml new file mode 100644 index 0000000000..b52cb6694c --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13250.yml @@ -0,0 +1,4 @@ +author: "timothyteakettle" +delete-after: True +changes: + - tweak: "changing your character's gender won't randomize its hairstyle and facial hairstyle now" From 1b30adbf2a1deab4ec664fd457acd2cfd11b3ff8 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Wed, 26 Aug 2020 05:14:33 -0700 Subject: [PATCH 74/94] Update robot.dm (#13247) --- .../modules/mob/living/silicon/robot/robot.dm | 75 ++++++++++--------- 1 file changed, 41 insertions(+), 34 deletions(-) diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index 9018c49b2c..d8299d42ad 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -289,50 +289,57 @@ return FALSE return ISINRANGE(T1.x, T0.x - interaction_range, T0.x + interaction_range) && ISINRANGE(T1.y, T0.y - interaction_range, T0.y + interaction_range) -/mob/living/silicon/robot/attackby(obj/item/W, mob/user, params) - if(istype(W, /obj/item/weldingtool) && (user.a_intent != INTENT_HARM || user == src)) +/mob/living/silicon/robot/proc/attempt_welder_repair(obj/item/weldingtool/W, mob/user) + if (!getBruteLoss()) + to_chat(user, "[src] is already in good condition!") + return + if (!W.tool_start_check(user, amount=0)) //The welder has 1u of fuel consumed by it's afterattack, so we don't need to worry about taking any away. + return + user.DelayNextAction(CLICK_CD_MELEE) + if(src == user) + to_chat(user, "You start fixing yourself...") + if(!W.use_tool(src, user, 50)) + return + adjustBruteLoss(-10) + else + to_chat(user, "You start fixing [src]...") + if(!do_after(user, 30, target = src)) + return + adjustBruteLoss(-30) + updatehealth() + add_fingerprint(user) + visible_message("[user] has fixed some of the dents on [src].") + +/mob/living/silicon/robot/proc/attempt_cable_repair(obj/item/stack/cable_coil/W, mob/user) + if (getFireLoss() > 0 || getToxLoss() > 0) user.DelayNextAction(CLICK_CD_MELEE) - if (!getBruteLoss()) - to_chat(user, "[src] is already in good condition!") - return - if (!W.tool_start_check(user, amount=0)) //The welder has 1u of fuel consumed by it's afterattack, so we don't need to worry about taking any away. - return if(src == user) to_chat(user, "You start fixing yourself...") - if(!W.use_tool(src, user, 50)) + if(!W.use_tool(src, user, 50, 1, skill_gain_mult = TRIVIAL_USE_TOOL_MULT)) + to_chat(user, "You need more cable to repair [src]!") return - adjustBruteLoss(-10) + adjustFireLoss(-10) + adjustToxLoss(-10) else to_chat(user, "You start fixing [src]...") - if(!do_after(user, 30, target = src)) + if(!W.use_tool(src, user, 30, 1)) + to_chat(user, "You need more cable to repair [src]!") return - adjustBruteLoss(-30) - updatehealth() - add_fingerprint(user) - visible_message("[user] has fixed some of the dents on [src].") + adjustFireLoss(-30) + adjustToxLoss(-30) + updatehealth() + user.visible_message("[user] has fixed some of the burnt wires on [src].", "You fix some of the burnt wires on [src].") + else + to_chat(user, "The wires seem fine, there's no need to fix them.") + +/mob/living/silicon/robot/attackby(obj/item/W, mob/user, params) + if(istype(W, /obj/item/weldingtool) && (user.a_intent != INTENT_HARM || user == src)) + INVOKE_ASYNC(src, .proc/attempt_welder_repair, W, user) return else if(istype(W, /obj/item/stack/cable_coil) && wiresexposed) - user.DelayNextAction(CLICK_CD_MELEE) - if (getFireLoss() > 0 || getToxLoss() > 0) - if(src == user) - to_chat(user, "You start fixing yourself...") - if(!W.use_tool(src, user, 50, 1, skill_gain_mult = TRIVIAL_USE_TOOL_MULT)) - to_chat(user, "You need more cable to repair [src]!") - return - adjustFireLoss(-10) - adjustToxLoss(-10) - else - to_chat(user, "You start fixing [src]...") - if(!W.use_tool(src, user, 30, 1)) - to_chat(user, "You need more cable to repair [src]!") - return - adjustFireLoss(-30) - adjustToxLoss(-30) - updatehealth() - user.visible_message("[user] has fixed some of the burnt wires on [src].", "You fix some of the burnt wires on [src].") - else - to_chat(user, "The wires seem fine, there's no need to fix them.") + INVOKE_ASYNC(src, .proc/attempt_cable_repair, W, user) + return else if(istype(W, /obj/item/crowbar)) // crowbar means open or close the cover if(opened) From ff6beea525b7356820f2b1c2be8ffcd6024d0969 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Wed, 26 Aug 2020 08:19:29 -0700 Subject: [PATCH 75/94] rebalances shotgun shell stripper clips since no one else wants to (#13116) * Update volumetrics.dm * Update ammo_boxes.dm --- code/__DEFINES/storage/volumetrics.dm | 3 +++ code/modules/projectiles/boxes_magazines/ammo_boxes.dm | 3 +++ 2 files changed, 6 insertions(+) diff --git a/code/__DEFINES/storage/volumetrics.dm b/code/__DEFINES/storage/volumetrics.dm index c3f45976ce..e6b732e083 100644 --- a/code/__DEFINES/storage/volumetrics.dm +++ b/code/__DEFINES/storage/volumetrics.dm @@ -24,7 +24,10 @@ GLOBAL_LIST_INIT(default_weight_class_to_volume, list( // Let's keep all of this in one place. given what we put above anyways.. // volume amount for items +/// volume for a data disk #define ITEM_VOLUME_DISK 1 +/// volume for a shotgun stripper clip holding 4 shells +#define ITEM_VOLUME_STRIPPER_CLIP (DEFAULT_VOLUME_NORMAL * 0.5) // #define SAMPLE_VOLUME_AMOUNT 2 diff --git a/code/modules/projectiles/boxes_magazines/ammo_boxes.dm b/code/modules/projectiles/boxes_magazines/ammo_boxes.dm index 0b00c89c02..8cd49bdf16 100644 --- a/code/modules/projectiles/boxes_magazines/ammo_boxes.dm +++ b/code/modules/projectiles/boxes_magazines/ammo_boxes.dm @@ -149,6 +149,9 @@ icon = 'icons/obj/ammo.dmi' icon_state = "shotgunclip" caliber = "shotgun" // slapped in to allow shell mix n match + slot_flags = ITEM_SLOT_BELT | ITEM_SLOT_POCKET + w_class = WEIGHT_CLASS_NORMAL + w_volume = ITEM_VOLUME_STRIPPER_CLIP ammo_type = /obj/item/ammo_casing/shotgun max_ammo = 4 var/pixeloffsetx = 4 From 6abd541d89cbe3da95d3eb5e4e1d21d6702f56c6 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 26 Aug 2020 10:19:32 -0500 Subject: [PATCH 76/94] Automatic changelog generation for PR #13116 [ci skip] --- html/changelogs/AutoChangeLog-pr-13116.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13116.yml diff --git a/html/changelogs/AutoChangeLog-pr-13116.yml b/html/changelogs/AutoChangeLog-pr-13116.yml new file mode 100644 index 0000000000..f6ede33644 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13116.yml @@ -0,0 +1,4 @@ +author: "silicons" +delete-after: True +changes: + - balance: "no more shotgun stripper clips in boxes." From c264d901409045fe2c10245a8eff7b53014d2cc8 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Wed, 26 Aug 2020 09:00:27 -0700 Subject: [PATCH 77/94] Update eyes.dm (#13254) --- code/modules/surgery/organs/eyes.dm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/modules/surgery/organs/eyes.dm b/code/modules/surgery/organs/eyes.dm index 049fc5b5d4..9172ce00bc 100644 --- a/code/modules/surgery/organs/eyes.dm +++ b/code/modules/surgery/organs/eyes.dm @@ -265,6 +265,10 @@ var/C = input(owner, "Select Color", "Select color", "#ffffff") as color|null if(!C || QDELETED(src) || QDELETED(user) || QDELETED(owner) || owner != user) return + var/list/hsv = ReadHSV(RGBtoHSV(C)) + if(hsv[2] > 125) + to_chat(user, "A color that saturated? Surely not!") + return var/range = input(user, "Enter range (0 - [max_light_beam_distance])", "Range Select", 0) as null|num if(!isnum(range)) return @@ -396,4 +400,4 @@ #undef BLURRY_VISION_ONE #undef BLURRY_VISION_TWO -#undef BLIND_VISION_THREE \ No newline at end of file +#undef BLIND_VISION_THREE From 7a7a773751bee96f40920a54f429932906856460 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Wed, 26 Aug 2020 11:00:31 -0500 Subject: [PATCH 78/94] Automatic changelog generation for PR #13254 [ci skip] --- html/changelogs/AutoChangeLog-pr-13254.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13254.yml diff --git a/html/changelogs/AutoChangeLog-pr-13254.yml b/html/changelogs/AutoChangeLog-pr-13254.yml new file mode 100644 index 0000000000..97f3d8471e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13254.yml @@ -0,0 +1,4 @@ +author: "silicons" +delete-after: True +changes: + - tweak: "eyebeam lighting can only have 128 maximum HSV saturation now." From 97564312e32334cba9823e9b207d6972349bf2db Mon Sep 17 00:00:00 2001 From: timothyteakettle <59849408+timothyteakettle@users.noreply.github.com> Date: Wed, 26 Aug 2020 17:06:58 +0100 Subject: [PATCH 79/94] mindreaders know your move --- code/datums/mutations/antenna.dm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/code/datums/mutations/antenna.dm b/code/datums/mutations/antenna.dm index 978802fd80..ad08b8ebdc 100644 --- a/code/datums/mutations/antenna.dm +++ b/code/datums/mutations/antenna.dm @@ -90,6 +90,8 @@ to_chat(user, "You catch some drifting memories of their past conversations...") for(var/spoken_memory in recent_speech) to_chat(user, "[recent_speech[spoken_memory]]") + if(usr in GLOB.rockpaperscissors_players) + to_chat(user, "They're planning on playing [GLOB.rockpaperscissors_players[usr][1]]") if(iscarbon(M)) var/mob/living/carbon/human/H = M to_chat(user, "You find that their intent is to [H.a_intent]...") From 020b8f64eebfaf55634aea4ad1b5e05ceda13da0 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Thu, 27 Aug 2020 00:12:55 +0000 Subject: [PATCH 80/94] Automatic changelog compile [ci skip] --- html/changelog.html | 43 ++++++---------------- html/changelogs/.all_changelog.yml | 8 ++++ html/changelogs/AutoChangeLog-pr-13116.yml | 4 -- html/changelogs/AutoChangeLog-pr-13172.yml | 4 -- html/changelogs/AutoChangeLog-pr-13250.yml | 4 -- html/changelogs/AutoChangeLog-pr-13254.yml | 4 -- 6 files changed, 20 insertions(+), 47 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-13116.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13172.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13250.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13254.yml diff --git a/html/changelog.html b/html/changelog.html index 89d877475f..870578cae5 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,18 @@ -->
    +

    27 August 2020

    +

    silicons updated:

    +
      +
    • eyebeam lighting can only have 128 maximum HSV saturation now.
    • +
    • no more shotgun stripper clips in boxes.
    • +
    • goliath tentacles now do 20 damage to mechs at 25% ap
    • +
    +

    timothyteakettle updated:

    +
      +
    • changing your character's gender won't randomize its hairstyle and facial hairstyle now
    • +
    +

    26 August 2020

    ancientpower updated:

      @@ -1454,37 +1466,6 @@
      • soap cleans blood again
      - -

      25 June 2020

      -

      Anonymous updated:

      -
        -
      • Added kepi and orvilike kepi. Available through loadout.
      • -
      -

      Detective Google updated:

      -
        -
      • Medigygax
      • -
      -

      Detective-Google updated:

      -
        -
      • malf AIs can no longer yeet the station while shunted
      • -
      • SMESes can now properly use self charging cells
      • -
      • ghosts now show up when the round ends
      • -
      • away missions
      • -
      -

      Funce updated:

      -
        -
      • Mentor SQL queries are now deleted properly.
      • -
      -

      Linzolle updated:

      -
        -
      • analyze function on chem master is no longer broken
      • -
      • organs now decay inside dead bodies again
      • -
      -

      dapnee updated:

      -
        -
      • wataur bottle item
      • -
      • wataur bottle and overlay
      • -
    GoonStation 13 Development Team diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index 270e71f740..fd9523fb15 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -27092,3 +27092,11 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. silicons: - balance: hierophant vortex blasts now have 50% armor penetration vs mecha - balance: ventcrawling now kicks off every attached/buckled mob, even for non humans. +2020-08-27: + silicons: + - tweak: eyebeam lighting can only have 128 maximum HSV saturation now. + - balance: no more shotgun stripper clips in boxes. + - balance: goliath tentacles now do 20 damage to mechs at 25% ap + timothyteakettle: + - tweak: changing your character's gender won't randomize its hairstyle and facial + hairstyle now diff --git a/html/changelogs/AutoChangeLog-pr-13116.yml b/html/changelogs/AutoChangeLog-pr-13116.yml deleted file mode 100644 index f6ede33644..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13116.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "silicons" -delete-after: True -changes: - - balance: "no more shotgun stripper clips in boxes." diff --git a/html/changelogs/AutoChangeLog-pr-13172.yml b/html/changelogs/AutoChangeLog-pr-13172.yml deleted file mode 100644 index 240f29920d..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13172.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "silicons" -delete-after: True -changes: - - balance: "goliath tentacles now do 20 damage to mechs at 25% ap" diff --git a/html/changelogs/AutoChangeLog-pr-13250.yml b/html/changelogs/AutoChangeLog-pr-13250.yml deleted file mode 100644 index b52cb6694c..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13250.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "timothyteakettle" -delete-after: True -changes: - - tweak: "changing your character's gender won't randomize its hairstyle and facial hairstyle now" diff --git a/html/changelogs/AutoChangeLog-pr-13254.yml b/html/changelogs/AutoChangeLog-pr-13254.yml deleted file mode 100644 index 97f3d8471e..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13254.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "silicons" -delete-after: True -changes: - - tweak: "eyebeam lighting can only have 128 maximum HSV saturation now." From 2a15e64be3e595310bab65322cb4909927ded23b Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 27 Aug 2020 11:42:11 -0500 Subject: [PATCH 81/94] Automatic changelog generation for PR #13265 [ci skip] --- html/changelogs/AutoChangeLog-pr-13265.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13265.yml diff --git a/html/changelogs/AutoChangeLog-pr-13265.yml b/html/changelogs/AutoChangeLog-pr-13265.yml new file mode 100644 index 0000000000..917e5786b0 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13265.yml @@ -0,0 +1,4 @@ +author: "timothyteakettle" +delete-after: True +changes: + - rscadd: "an ancient game over a thousand years old has re-emerged among crewmembers - rock paper scissors" From e3bd5ea51da7f24448bdef3371962b4ff015d90c Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 27 Aug 2020 11:55:30 -0500 Subject: [PATCH 82/94] Automatic changelog generation for PR #13232 [ci skip] --- html/changelogs/AutoChangeLog-pr-13232.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13232.yml diff --git a/html/changelogs/AutoChangeLog-pr-13232.yml b/html/changelogs/AutoChangeLog-pr-13232.yml new file mode 100644 index 0000000000..9571dbf2b9 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13232.yml @@ -0,0 +1,4 @@ +author: "timothyteakettle" +delete-after: True +changes: + - rscadd: "you can now choose a body sprite as an anthromorph or anthromorphic insect, and can choose from aquatic/avian and apid respectively (and obviously back to the defaults too)" From 6bf02c7ed7f6a1b60eed204c09aaecbcd7d8a273 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 27 Aug 2020 12:01:33 -0500 Subject: [PATCH 83/94] Automatic changelog generation for PR #13261 [ci skip] --- html/changelogs/AutoChangeLog-pr-13261.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13261.yml diff --git a/html/changelogs/AutoChangeLog-pr-13261.yml b/html/changelogs/AutoChangeLog-pr-13261.yml new file mode 100644 index 0000000000..f7db074c8c --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13261.yml @@ -0,0 +1,4 @@ +author: "lolman360" +delete-after: True +changes: + - rscadd: "atmos = radiation = chemistry." From afcb9d343227c80bee1dd42f6c1433f3c47bb96b Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 27 Aug 2020 12:02:46 -0500 Subject: [PATCH 84/94] Automatic changelog generation for PR #13258 [ci skip] --- html/changelogs/AutoChangeLog-pr-13258.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13258.yml diff --git a/html/changelogs/AutoChangeLog-pr-13258.yml b/html/changelogs/AutoChangeLog-pr-13258.yml new file mode 100644 index 0000000000..fddef7348a --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13258.yml @@ -0,0 +1,4 @@ +author: "shellspeed1" +delete-after: True +changes: + - rscadd: "Adds slow mode for iv drips" From d3968216598d483bd59c00c2770bc69212c28342 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 27 Aug 2020 12:03:18 -0500 Subject: [PATCH 85/94] Automatic changelog generation for PR #13257 [ci skip] --- html/changelogs/AutoChangeLog-pr-13257.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13257.yml diff --git a/html/changelogs/AutoChangeLog-pr-13257.yml b/html/changelogs/AutoChangeLog-pr-13257.yml new file mode 100644 index 0000000000..10aa50d528 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13257.yml @@ -0,0 +1,4 @@ +author: "timothyteakettle" +delete-after: True +changes: + - tweak: "customization features appear in alphabetical order where necessary" From 0e70b4ee4d172ba3a4fb3372a7286c568c922dc4 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 27 Aug 2020 12:03:37 -0500 Subject: [PATCH 86/94] Automatic changelog generation for PR #13256 [ci skip] --- html/changelogs/AutoChangeLog-pr-13256.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13256.yml diff --git a/html/changelogs/AutoChangeLog-pr-13256.yml b/html/changelogs/AutoChangeLog-pr-13256.yml new file mode 100644 index 0000000000..f92ed28504 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13256.yml @@ -0,0 +1,10 @@ +author: "EmeraldSundisk" +delete-after: True +changes: + - rscadd: "Adds more paper to the library" + - rscadd: "The law office now has a desk window" + - tweak: "Expands most of CogStation's exterior airlocks. Slightly adjusts surrounding areas to accommodate this." + - tweak: "Updates some of CogStation's paperwork" + - tweak: "The rat in the morgue turned themselves into a possum. Funniest shit I've ever seen." + - bugfix: "Adjusts some area designations so cameras should receive power properly" + - bugfix: "Cleans up an errant decal" From 40eb26a71b823b6c18773a0bd55181a6b0ca422d Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 27 Aug 2020 12:07:08 -0500 Subject: [PATCH 87/94] Automatic changelog generation for PR #13237 [ci skip] --- html/changelogs/AutoChangeLog-pr-13237.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13237.yml diff --git a/html/changelogs/AutoChangeLog-pr-13237.yml b/html/changelogs/AutoChangeLog-pr-13237.yml new file mode 100644 index 0000000000..db13b39aad --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13237.yml @@ -0,0 +1,5 @@ +author: "Hatterhat" +delete-after: True +changes: + - tweak: "Traitor holoparasites can now only be bought once, because apparently you can only have one active holopara." + - balance: "PDA bombs can now only be bought once per uplink." From 68020ec842958bd5acb5c1aa8850f4cf21e8fe10 Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Thu, 27 Aug 2020 12:07:34 -0500 Subject: [PATCH 88/94] Automatic changelog generation for PR #13235 [ci skip] --- html/changelogs/AutoChangeLog-pr-13235.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13235.yml diff --git a/html/changelogs/AutoChangeLog-pr-13235.yml b/html/changelogs/AutoChangeLog-pr-13235.yml new file mode 100644 index 0000000000..ff22570b6e --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13235.yml @@ -0,0 +1,4 @@ +author: "timothyteakettle" +delete-after: True +changes: + - tweak: "bokken do two more stamina damage now" From 9799efcef293fe2622819ea54c80e8f1714aab55 Mon Sep 17 00:00:00 2001 From: Changelogs Date: Fri, 28 Aug 2020 00:13:53 +0000 Subject: [PATCH 89/94] Automatic changelog compile [ci skip] --- html/changelog.html | 43 ++++++++++++++++------ html/changelogs/.all_changelog.yml | 27 ++++++++++++++ html/changelogs/AutoChangeLog-pr-13232.yml | 4 -- html/changelogs/AutoChangeLog-pr-13235.yml | 4 -- html/changelogs/AutoChangeLog-pr-13237.yml | 5 --- html/changelogs/AutoChangeLog-pr-13256.yml | 10 ----- html/changelogs/AutoChangeLog-pr-13257.yml | 4 -- html/changelogs/AutoChangeLog-pr-13258.yml | 4 -- html/changelogs/AutoChangeLog-pr-13261.yml | 4 -- html/changelogs/AutoChangeLog-pr-13265.yml | 4 -- 10 files changed, 59 insertions(+), 50 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-13232.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13235.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13237.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13256.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13257.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13258.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13261.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-13265.yml diff --git a/html/changelog.html b/html/changelog.html index 870578cae5..0a2a1f3086 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,38 @@ -->
    +

    28 August 2020

    +

    EmeraldSundisk updated:

    +
      +
    • Adds more paper to the library
    • +
    • The law office now has a desk window
    • +
    • Expands most of CogStation's exterior airlocks. Slightly adjusts surrounding areas to accommodate this.
    • +
    • Updates some of CogStation's paperwork
    • +
    • The rat in the morgue turned themselves into a possum. Funniest shit I've ever seen.
    • +
    • Adjusts some area designations so cameras should receive power properly
    • +
    • Cleans up an errant decal
    • +
    +

    Hatterhat updated:

    +
      +
    • Traitor holoparasites can now only be bought once, because apparently you can only have one active holopara.
    • +
    • PDA bombs can now only be bought once per uplink.
    • +
    +

    lolman360 updated:

    +
      +
    • atmos = radiation = chemistry.
    • +
    +

    shellspeed1 updated:

    +
      +
    • Adds slow mode for iv drips
    • +
    +

    timothyteakettle updated:

    +
      +
    • an ancient game over a thousand years old has re-emerged among crewmembers - rock paper scissors
    • +
    • customization features appear in alphabetical order where necessary
    • +
    • bokken do two more stamina damage now
    • +
    • you can now choose a body sprite as an anthromorph or anthromorphic insect, and can choose from aquatic/avian and apid respectively (and obviously back to the defaults too)
    • +
    +

    27 August 2020

    silicons updated:

      @@ -1455,17 +1487,6 @@
      • felinids now nya when tabled
      - -

      26 June 2020

      -

      Ghommie updated:

      -
        -
      • Snore spam.
      • -
      • Hostile mobs shouldn't hit their original spawner structures or thoses of the same faction.
      • -
      -

      silicons updated:

      -
        -
      • soap cleans blood again
      • -
    GoonStation 13 Development Team diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index fd9523fb15..139ca99af0 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -27100,3 +27100,30 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. timothyteakettle: - tweak: changing your character's gender won't randomize its hairstyle and facial hairstyle now +2020-08-28: + EmeraldSundisk: + - rscadd: Adds more paper to the library + - rscadd: The law office now has a desk window + - tweak: Expands most of CogStation's exterior airlocks. Slightly adjusts surrounding + areas to accommodate this. + - tweak: Updates some of CogStation's paperwork + - tweak: The rat in the morgue turned themselves into a possum. Funniest shit I've + ever seen. + - bugfix: Adjusts some area designations so cameras should receive power properly + - bugfix: Cleans up an errant decal + Hatterhat: + - tweak: Traitor holoparasites can now only be bought once, because apparently you + can only have one active holopara. + - balance: PDA bombs can now only be bought once per uplink. + lolman360: + - rscadd: atmos = radiation = chemistry. + shellspeed1: + - rscadd: Adds slow mode for iv drips + timothyteakettle: + - rscadd: an ancient game over a thousand years old has re-emerged among crewmembers + - rock paper scissors + - tweak: customization features appear in alphabetical order where necessary + - tweak: bokken do two more stamina damage now + - rscadd: you can now choose a body sprite as an anthromorph or anthromorphic insect, + and can choose from aquatic/avian and apid respectively (and obviously back + to the defaults too) diff --git a/html/changelogs/AutoChangeLog-pr-13232.yml b/html/changelogs/AutoChangeLog-pr-13232.yml deleted file mode 100644 index 9571dbf2b9..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13232.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "timothyteakettle" -delete-after: True -changes: - - rscadd: "you can now choose a body sprite as an anthromorph or anthromorphic insect, and can choose from aquatic/avian and apid respectively (and obviously back to the defaults too)" diff --git a/html/changelogs/AutoChangeLog-pr-13235.yml b/html/changelogs/AutoChangeLog-pr-13235.yml deleted file mode 100644 index ff22570b6e..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13235.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "timothyteakettle" -delete-after: True -changes: - - tweak: "bokken do two more stamina damage now" diff --git a/html/changelogs/AutoChangeLog-pr-13237.yml b/html/changelogs/AutoChangeLog-pr-13237.yml deleted file mode 100644 index db13b39aad..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13237.yml +++ /dev/null @@ -1,5 +0,0 @@ -author: "Hatterhat" -delete-after: True -changes: - - tweak: "Traitor holoparasites can now only be bought once, because apparently you can only have one active holopara." - - balance: "PDA bombs can now only be bought once per uplink." diff --git a/html/changelogs/AutoChangeLog-pr-13256.yml b/html/changelogs/AutoChangeLog-pr-13256.yml deleted file mode 100644 index f92ed28504..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13256.yml +++ /dev/null @@ -1,10 +0,0 @@ -author: "EmeraldSundisk" -delete-after: True -changes: - - rscadd: "Adds more paper to the library" - - rscadd: "The law office now has a desk window" - - tweak: "Expands most of CogStation's exterior airlocks. Slightly adjusts surrounding areas to accommodate this." - - tweak: "Updates some of CogStation's paperwork" - - tweak: "The rat in the morgue turned themselves into a possum. Funniest shit I've ever seen." - - bugfix: "Adjusts some area designations so cameras should receive power properly" - - bugfix: "Cleans up an errant decal" diff --git a/html/changelogs/AutoChangeLog-pr-13257.yml b/html/changelogs/AutoChangeLog-pr-13257.yml deleted file mode 100644 index 10aa50d528..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13257.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "timothyteakettle" -delete-after: True -changes: - - tweak: "customization features appear in alphabetical order where necessary" diff --git a/html/changelogs/AutoChangeLog-pr-13258.yml b/html/changelogs/AutoChangeLog-pr-13258.yml deleted file mode 100644 index fddef7348a..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13258.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "shellspeed1" -delete-after: True -changes: - - rscadd: "Adds slow mode for iv drips" diff --git a/html/changelogs/AutoChangeLog-pr-13261.yml b/html/changelogs/AutoChangeLog-pr-13261.yml deleted file mode 100644 index f7db074c8c..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13261.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "lolman360" -delete-after: True -changes: - - rscadd: "atmos = radiation = chemistry." diff --git a/html/changelogs/AutoChangeLog-pr-13265.yml b/html/changelogs/AutoChangeLog-pr-13265.yml deleted file mode 100644 index 917e5786b0..0000000000 --- a/html/changelogs/AutoChangeLog-pr-13265.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "timothyteakettle" -delete-after: True -changes: - - rscadd: "an ancient game over a thousand years old has re-emerged among crewmembers - rock paper scissors" From ca34a50726e18e5c81bc92649174a6c75bc316e8 Mon Sep 17 00:00:00 2001 From: raspy-on-osu Date: Thu, 27 Aug 2020 23:39:43 -0400 Subject: [PATCH 90/94] Port "Better Explosion Echoes" by NotRanged https://github.com/Skyrat-SS13/Skyrat13/pull/3295 --- code/datums/explosion.dm | 39 ++++++++++++++++++++++++++---- code/game/sound.dm | 4 +++ sound/effects/creak1.ogg | Bin 0 -> 125071 bytes sound/effects/creak2.ogg | Bin 0 -> 102788 bytes sound/effects/creak3.ogg | Bin 0 -> 52507 bytes sound/effects/explosioncreak1.ogg | Bin 0 -> 151778 bytes sound/effects/explosioncreak2.ogg | Bin 0 -> 111558 bytes 7 files changed, 38 insertions(+), 5 deletions(-) create mode 100644 sound/effects/creak1.ogg create mode 100644 sound/effects/creak2.ogg create mode 100644 sound/effects/creak3.ogg create mode 100644 sound/effects/explosioncreak1.ogg create mode 100644 sound/effects/explosioncreak2.ogg diff --git a/code/datums/explosion.dm b/code/datums/explosion.dm index dc9569a4d5..2de7d2da7d 100644 --- a/code/datums/explosion.dm +++ b/code/datums/explosion.dm @@ -103,9 +103,20 @@ GLOBAL_LIST_EMPTY(explosions) // 3/7/14 will calculate to 80 + 35 var/far_dist = 0 - far_dist += heavy_impact_range * 5 + far_dist += heavy_impact_range * 15 //from skyrat13/pull/3295; carry further far_dist += devastation_range * 20 + // skyrat-ss13/skyrat13/pull/3295 + var/sound/creaking_explosion_sound = sound(get_sfx("explosion_creaking")) + var/sound/hull_creaking_sound = sound(get_sfx("hull_creaking")) + var/sound/explosion_echo_sound = sound('sound/effects/explosion_distant.ogg') + var/on_station = SSmapping.level_trait(epicenter.z, ZTRAIT_STATION) + var/creaking_explosion = FALSE + + if(prob(devastation_range*30+heavy_impact_range*5) && on_station) // Huge explosions are near guaranteed to make the station creak and whine, smaller ones might. + creaking_explosion = TRUE // prob over 100 always returns true + // end port + if(!silent) var/frequency = get_rand_frequency() var/sound/explosion_sound = sound(get_sfx("explosion")) @@ -126,11 +137,29 @@ GLOBAL_LIST_EMPTY(explosions) shake_camera(M, 25, clamp(baseshakeamount, 0, 10)) // You hear a far explosion if you're outside the blast radius. Small bombs shouldn't be heard all over the station. else if(dist <= far_dist) - var/far_volume = clamp(far_dist, 30, 50) // Volume is based on explosion size and dist - far_volume += (dist <= far_dist * 0.5 ? 50 : 0) // add 50 volume if the mob is pretty close to the explosion - M.playsound_local(epicenter, null, far_volume, 1, frequency, falloff = 5, S = far_explosion_sound) - if(baseshakeamount > 0) + var/far_volume = clamp(far_dist/2, 40, 60) // Volume is based on explosion size and dist + if(creaking_explosion) + M.playsound_local(epicenter, null, far_volume, 1, frequency, S = creaking_explosion_sound, distance_multiplier = 0) + else if(prob(75)) + M.playsound_local(epicenter, null, far_volume, 1, frequency, S = far_explosion_sound, distance_multiplier = 0) // Far sound + else + M.playsound_local(epicenter, null, far_volume, 1, frequency, S = explosion_echo_sound, distance_multiplier = 0) // Echo sound + + if(baseshakeamount > 0 || devastation_range) + if(!baseshakeamount) // Devastating explosions rock the station and ground + baseshakeamount = devastation_range*3 shake_camera(M, 10, clamp(baseshakeamount*0.25, 0, 2.5)) + + else if(M.can_hear() && !isspaceturf(get_turf(M)) && heavy_impact_range) // Big enough explosions echo throughout the hull + var/echo_volume = 40 + if(devastation_range) + baseshakeamount = devastation_range + shake_camera(M, 10, clamp(baseshakeamount*0.25, 0, 2.5)) + echo_volume = 60 + M.playsound_local(epicenter, null, echo_volume, 1, frequency, S = explosion_echo_sound, distance_multiplier = 0) + + if(creaking_explosion) // 5 seconds after the bang, the station begins to creak + addtimer(CALLBACK(M, /mob/proc/playsound_local, epicenter, null, rand(25, 40), 1, frequency, null, null, FALSE, hull_creaking_sound, null, null, null, null, 0), 5 SECONDS) EX_PREPROCESS_CHECK_TICK //postpone processing for a bit diff --git a/code/game/sound.dm b/code/game/sound.dm index 0feb01c223..b012ba4e2a 100644 --- a/code/game/sound.dm +++ b/code/game/sound.dm @@ -130,6 +130,10 @@ /proc/get_sfx(soundin) if(istext(soundin)) switch(soundin) + if ("explosion_creaking") // from skyrat-ss13/skyrat13/pull/3295 + soundin = pick('sound/effects/explosioncreak1.ogg', 'sound/effects/explosioncreak2.ogg') + if ("hull_creaking") // from skyrat-ss13/skyrat13/pull/3295 + soundin = pick('sound/effects/creak1.ogg', 'sound/effects/creak2.ogg', 'sound/effects/creak3.ogg') if ("shatter") soundin = pick('sound/effects/glassbr1.ogg','sound/effects/glassbr2.ogg','sound/effects/glassbr3.ogg') if ("explosion") diff --git a/sound/effects/creak1.ogg b/sound/effects/creak1.ogg new file mode 100644 index 0000000000000000000000000000000000000000..0cad4802ffa95dbf56228e95ce6ecafcf78c9f1a GIT binary patch literal 125071 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°%C$)iBM+kCr0ubHuqeVx2_YWYAj4e{bj9uPEyPg3XZis{*d zUx8?TqfOmMK4yQ{JNBENT-v#W{x$!({D-z1az~IXpM0*o=@s*DM?asvt+!B3;V#e4 z*%M+M7J#aFrY+BNHP^St!agaCk>UHuxl-NpZ{4SrPA^Dsj<>}Io)o;wF@duI&?LO; zzBd95fDgxVk$~7qPh8l0EqN<$>2@rDQA#PjjEr!aQl-oQ005wP=1WYl{xr^2nDMHh zZsKCQRF2EAYgH{b8^^W%&F`;x)3V=n`{(NutMPi%>W1hUr1p84-H`kFweDS4+o8Na z``J+2%Xl2z<7rIjEPf|8=ybk--rRC+PmR6m{oT#S=l1pshoW9?Iqz3{naznYKJh)X zgdz63x+=!K>KI+W4=`$X=MHqzb03H>yYyodj~Y~HUqCW z-YYie=+R{6Vg>V0-upQ(0Ql11XZ~WTuU|F?G9U9iUsM@%pM8$(lSfa>zSx_oTAz%L zDxQ`|sk-DPAD7+FvTw8O_whWsyjR~b&>&y!?;rAPfwq`!IsNBreZsRTYg(C%O@F`W zoSpslm|?MjnbGEiXL0;sdj zI~%D~>YhegPlmjUwR7FIo>X`Hpa1}#C486ZTsQ}W22H}d8Mh!XKnY&#Q!pU7fAnz3 zWlj40{aTm3wzioV&m{N4x_~mu$PM5EJ%yQeNTqCL5&!^zQiE`y3WrtTtOKlM%D?zXVpUGPQgWZ&-SR=Kt zA8cAWl+-8QPptGO=4(lQxyb#mS@N9t_xHo&pVI51`T6u0hm7}`{MrxQZPTmlX>{)& zn%x(^Ep$0qS^7pl={raji;A`715cJ+;>_%JT9&T2*|b=W(>}=G=})Kg?HBa09n0zF zx`}G(MfP1Og}G&p*P)GM#m@X6tS_&wb#gnsWekkZ@Sm6P-aEGBtK*JSPr5yKXv)Ye zP5rKK_lW*h0|(Wc{6z*e?v#(FE*Br~%KJR#70;|{QuL+Y?)lQhxwQ8LJG#g1mpnB=Wu;jb5Jo==AqN>@Bl>9@J74@(X(rv)UjIUUQeR55ZyL9VZ$&nor!K zdE^WxWFy|JNS_B4AxJZ;`!Cm!{$4fxJI%j?actWC7Cg3~*-z5^Q2kTMH@Ci<>Z=Z- zy^3_)Z_lN44%qX$U*MkH^l@AZ-fJP@0sv2EXHx(KK#PKPd0f4LEYo1P*MgpON7vlk)k^KGfnwzDK=a#EW-=p;~ z&^H$sSO7}_7QmPRHUL1+(pvyaTh)@80RR91?9kx0Jx|YAs|qqM(S6S#_}~0q@7u%A zFGLIJpLyRcEf2}oZnDeJpNcXW0w+;iCfnqPh~K#$zoHcEt+*G9%{LsWi5FUdN?be3 z{c9__M%6^0kg$Mt#}@VDhAzx1K`~+=)Xt?cZ$E7~Td^%(9UW_2e9HWF@;BZ0dG)A< z`$AKB*6YX2{(VN_!}Dv*!Q$X@|A6+U;(J>0Kd*;*Xy!``aj^mG zw&B4*ZJ!uGQ%QdttY%9{vZrFcRHOOb5h?GS350k^{d�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

    k`qm`WvGx`rAwpGozW0a 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 literal 0 HcmV?d00001 diff --git a/sound/effects/creak3.ogg b/sound/effects/creak3.ogg new file mode 100644 index 0000000000000000000000000000000000000000..88ff37a339ed5b1f068d3e874d5b0f724aaa968a GIT binary patch literal 52507 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℞Hno1ih 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%0AG@@;}TMjIK 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 O00000000000001OTIN## literal 0 HcmV?d00001 diff --git a/sound/effects/explosioncreak2.ogg b/sound/effects/explosioncreak2.ogg new file mode 100644 index 0000000000000000000000000000000000000000..75d323eb06f8c4f49de76838f81e4db58d39deb7 GIT binary patch literal 111558 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�Y>5N$FN3_MDOnihXu)c-oofn4jI*9 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 z z$3CI=nKq>DdT23Z5xG38Fj$hzhP!jS;(;s$>CL2*G@;5gKFk`|s!uTPb&Et%Rgm<& zxI6w*%c5|BVTLgv%zbsq{pK2LgnYvVdRe3>*K+aHDEkY84AU98+PIEsJYMu(&sFs< zf+C?)%LNd$%s;Jm@Cv5Z?jP(e@h= zPCqnEwV;axv^DyfAx?`PyFKIUbV}mYA~r+?WY=3F>qc-p_ZjBJ&|yCSP)2TN)W66B zFTFyEnMZ1s&3DHZV{T4}uAaO2v93NyQ3->TLPfy@d4O$+H&cwcwI&`L{IchUOHJVyg8mN=I+LT$Vma9#uGOmhpIxj zmQ;fHWB2my870ZaH>*7}-YBAJVs_&g^?|=5vYPSx8L~J(ArxiU8N_rrF?3&S-p$Ed z*~tSmDtDp{u7rhi6&|NG-R|s2%Qf~@J0jGlM=-aTLlz4=?++7$i=R83oq%kVd9!h)e_d9B7dgTB{*$gl#xR$jyVoYmMx`vcT^2VN zCwIXD1uDi4neOeGb~^^s;b=)w7QF>)+=t1o-ZXW1qf3@K1jQ{Kj#^Twf2AK8c9VkL zZy_^?e>}Yeq*N$h;q*7)iM_LDq$A+QZY&W}Mmko1al4K5S9I2yR+HnRVk)#b`0TI( z=%s5sxVjbSltY#{e6fm0ze1A#mp^tJ_BUIP`v}oqu038dT-^~T0+D>;JNN@Bz2yUp zv-;r2;BU~4dY!JWlmT~>Zbqsqh7Z4_(Pu29^m4n4KEwJ&dL}5f?Ao5piVY(`S z9!_rR)9eQ$cW-ME-nCoSw3~>&KtYaE5`el8Pm`{oObqE1n<9Or5(F_`3N!l^7t_&w ztXc<6t5W^xrYzf@qGT6%7~@dBdXWj?7fOPRX}+9FD_EuSi(D?)vd{l96Mpsn>^Zl% z_Zkt{V)v86mOggUt-9d)m!sV+b6Q5~xzFC27A5+D>JQ+zYsQ>cB3^9tC-A0*ctp(? zn_b_QTRj-NU`^))KYf_B5q&T;QI=qVr7D^mI?E9OC-=NH52<*ZsKcIqAb0|e$&uV1 znRd|FSL!bXgU$X0jWA}Yh7~9OpCt5o8X0FYORU-~K>>62aeH%92xXk-tuUa7GfvUi z{Fe9DXC|B`gbbM+vt(bh-u+#rzS;OUTL(SQ-_^Fd>voe)%NJ#)= z5!4`C-LRH^6Um)|uIg38#vQl^XH+PXOV&c)_B-xKZQYPhu6llmbh!+AN!&4a^T9jC zbNsu9-1Mv^=bq_uhSS**U%rq;2^oC6F!Cbk=tB0HNv>7)|T~vh5 z*@qCf#|(~dTaj(rw+YU3;IW6ppvEG-zwnJGPzu_XWo|)}J9nO1swp7lS6h6&$4eYIXN5q0VQ%e#g#qxox`8e& zLI-+Vv&sb)^6>7ouNDHD1Uh3S2^qsJlFB+#L&M;fy)08{{l$ZJQtR3;Nmsq_82b&n z zb2wALgqh9Sc@b61B+}#%OW?zw`+!)@Iq?ub=aepo2-obC#>1zI6i6dXWtN2HN^M-J$nK&lb%q$ zDp^X6SPHpZygrcdPwacVqX!~Te+pXdwS{o7?Ob~*u=IItM9eibad+9s`)aV7HIjhJ zWIRA@8F=%lRM~|qEHMIuv9f*sd(Dj+i~1?|{eCSLv7rrKRR=&xm|s#0#7LxKbI!`+^vK%yJqXC^7|^)a!VJ{0eQ?Di+KSH$To#We;bpFGsd zowBV(uoyqj;C?KTuxb4h`ujoHag5gB<%pKzsJMJoLU&ub1;y4@WN+qND= z-+5(!Z$GwANJ7xTmOK#jj`qcM_EI9+ttIQ^_B9m5y9#8afN;cT_&{u2+G z2k%|=<()ldxeA}N>+`D(tEEx;{Dc21`tr-J-^4iHVCRmq&C}HtL~T7>ddL+3=2}YaAazd_<~`YqSyW`^sr^5Gz7Z}`<5Hj6_Pnt`8z zCP!yq{-0)KbzU~7wRifdA3W4_nEm8Gu*?DLFk;$h7Df>4&8xP@dqc6-)h2kB3Vl`tL{CH6l5ZX(9W%_1&IbBj_8`~Rb@Hm3e zdTT*u-_VG}q6?DL;23PqvUQ9!ITE3Z)0DBK11(@F$>a1Jgz>WgTMvIKvsF~sQ0bm0 zzn+=M9i}l<7#3_B4bA)WsP$z|NOGls?_SQ9-x!ve%5HVib!lxGn~|^6@U!F?j8O8u zoi$aURdr)1%%^376f>=l+xOstdg|YO3?EcNt&r79O*xu=gbMKF=<#~G(cC{T3cpNlwxUz%sN5N z7B$a|B!jAQW`@e%{5`e?aoKOqzWCU~r)1O4it0Puc`Ehc%i3=nSdE1n_e?~)HVP%> z3UIH=#8sc4K|W^?BNSt8@5L}HV%~1?ybKU&m&9pxIH2b3Vx}Ygyg&wZJ?6?)Eqa!p z3c~Mfs>hwo27V!G-m-a@E9>MM?5VzzKQU8yuSPx$JPZiZ#HthRxInOzwM3$ zyc58PN#F=q+j#24dmM0vo27Kh+ZmMa;u@zdInCFmo1(LQWMYof_XVFtx)gCef0p-w zBd32Og$auC&Gq_?qV!)ZJlZ28 z)CP!BU0UVl(=@lTlsd{+JjQ3Hd}*YBp1SU^&6cbr9{MXw-^uhMz z@nz4i%YRwHFs~hL?BSn}?1409czqSRcU2!KTA@sY z6&)brkFN}!vIeLsnvvC_qpw0PE%f-P)u1O7-@>_i$62_8 zt0W&E#lxJ8+(v-`hKo)5zWJleS5()_f+h*Z<{;b3l~F+4FS4-e!o(U#(WYRXmrSmQ z?IcL2O*JnL)Rg1P3}F7cQf|#M=G3%ucxzzU`ZqrL661FM>7r`D^v8SvZ-XH`(+e;| zQ)c<_a5^tIENu_&r(eil#GmQXWA4S07rqmllcCmN4#Td`jxZ(pNdRzKo!)NV&0x+z zH{m)i%B723?4e;fHpPM&dB9yFl8?LA%zmWic5?vm#d~2Cn)*iBmI3WgU8N+j;F?cF z_K4u=5~L-Sl50VuO1DMW5tt?)ili!Mn`zxJY==QDh6|d9dEZyt>!lx2j}i8zw@(6a zA~;Efov&{D(nC18G0p}hi)61#7a4eJ@QW==#_O3*4=gm_*9D{NesO@CN(A!I69Kun zDc;91(khU%w|tH6`>trMm&*A4ujN0@vaW1}Al`3){GTDIlWs-xhy3p6RU#0e{8cN) zugFyU^yh`m_3Z~WH1M~|No7_#3XFCwI?P!(jE|LeZm4Qpdan zhg2_<_&L8(+0C*3rBNuXBv89qBKa6(rp_YHQ>E=Tw9UDDy2m54{(kzb;MRg=^xY4& zJFx%F89@BYTsgAE!<)}6Uw7Z587EWc8A-FejCpFqV`+y$;DzZsv%Kwzz&iU>tN-h< zOQwW`)or`Bh<5?ssF0rb{laV3tY5ZtF^WeOU^clP^SF_X%3q2VN}44$uMo4B*>MA7 zr%WdDmyLUkf9bE62xo`l_Xy7{hYJVjof+^FMfL?eOM&-xMR(T4X#)d;`~e0)n+;h< z#Khu@{QY zH7;qW@oYV4{2jLLPML#GJ8SLI547-oh_x2f1EB{_)-e*OHSXWlt*-(C1P=_jHyVk| zqhm=d5z#&_R1V)(G?AMJ(#>xN3HwBrgNUC8fqzp>GEDk#_dAy=!VSHzmSd&IHtz$P zUn$j!ONISA=Ahy2%9hhnf`1-P2-)q8CZ+%Z2UP9sjmxlqr4t_xJ;I`!w-gPdok;o; z!S81QQ7I6Z7PSl2?7HY+4cENTf4t^jq+Dh2qB8L7O+OsDz6^9rT_kq7ww1pDig}uM zUs63f^Q$}_tet+0XqAqVtxQ(qKb!BFqZvozNgHeY@<~6Jl9gUmS4Yu>g()Nb?plb2 z&EZfhFjBM{et92wc%0lX(@xxVE84$yJeyc3F;cBgaoTb<<)KxJ^$rX{Z%NdNY4tCG32JNVQvybdrVb zhYVcNzmPn#AV2lJD9sW3`c|TH2IRi7G_zF{9KWi+sB^a_MrHH=d;18wpXE@bk=zJkmL3fF0#4deWD9fep%6U!1K!$<-f zwz`89Tf!sdmyX`Oo6qiquj)oc^(UtVam`GdM149w7Hkfyc$Qp4i_HBy#cqSHD~+J5 z8kW~D&!;=oz80&xA|wStIZGKh$QcTOIKJ@D7pGUKG+9=zlkt1#EnTL84_?Vb3&S?^ z^&o^tYyYvh|BtBi3}?d)+kQ~h)@o6siY|Na9oi~Yo6=IF_NHc#NE9utRl90c?HPL$ zHEYJ+#Eu<1A|$W>b3E_yd`a>>$8}xz{kzZeyxfV7$!bJir4DM+hyjQ9t-1O;1LM1> zZqvh_JD$aqB6HL!x)nh;>!*wg2;}7V0YLTU$w7@q=HH(|m41%IR}xu<&prhz_T5zp z=E`i1=}ood@I?i}OFbXow^Qa7ggB5SrjhUgSUA)4#9aRK9y~(D#H=em?wDZp`Wi5X zH3r70Ys&8ke^IMVJ+Y!TT^;mFB0388y9yOt<*ekP zhThJf-+wY!%le|F!ct(~^5HKUJYuBO?e=>jJHxBC+-;Rix43&<451e-H4;pnf2)$u zRD^ibZ1?ysrqo(}TO{OIE~f&`CvE^MY^210RfHW&@jUsCeAi#Omj3*2KL7rl2T%mV z+=xfNnx0TU`{0DlNI6?gRD;EMy^`o@iI!j*1JBBrFLu-XTB{;rkEPMlN0IgRR@Z|P zA*L^95`#Cm!u9&sJusADt5Y>E&*7(F%dzxo5;$HTtrf=<<0_+}SD z*5|*a7_6qf!1%ht{81_|Ey`W_M6IztRSyZ=QV zp%}v^dCCp>`aNt#V+#k~Ur%0#@DQ*1cQfx|&-$CVW`WL-iqvy&?kxRLGOR zEs&{?^s{1s?n7&w)S#lPXYHlqT2BhpQTX-01_OuXcZpH6(Q|lg`=0#zpS)vxql6j2 zB^O;lN%mLNNJYT9S9_0N)Y(X^eCHec@*y z_$n^3go}xsDNVjim;a;(IN%`zGW>rU^6LL+ z$i3@-LWnS7Lr45aoF+~Y8;QNwzuJkz#K8=8h&C}#+VTa-l-3IPlKw@I)FX0mzl6tXd@ zR{zW}9psW?R#!Ts13LwhFc4a`XDXzT88M{PVu5hGj|E4E5=ZB^2%3?y=7{N+8@*49 za(BiP)_G#L92GK1FDpV=LN|vjUy1K5Je@%)%;IB}b%1#W%3D0+nMn3Q8)vx1dhVNA zVs_VkWVq1C2*P3#eI50V%Z28rlXnqDB-&M}Q>AXQ`$dr~@#CD#9k||Q6-Dg-#{RkA zg*M6g%I?x~pGiPg!$kL3QGGA#W$-N=!Q`DCJ2u1qa!4WuR+9l`FZ6EqtmIry9|WuM zJO_1tKSrw(`YUZF1NzWIP%Oi^EE|4KryM3)=#~rfaab3#+*qIzJ%1Y3vGl@aPxt=D z@4Y~isdYl7auUhnX44rWivbXw+BtP8?M+6tWZqS1Emv#2I|-p(4HTK(ZGp`!?njQO zabQNiN={!jHdbs1IGafW+L-STi;$fxirWW~|A?*S`|s`Lw|0gW-uaHjL&O`C9K7U2 zm;`I5UZ6BDe3F}^y6l3v2!?9SktyD=T`f@T5nbFE#`rPPsHN8W%tJ_%;BW`m3iTJK zMK>K0Rc`>fdLxs6YT+Ao$S%FQZ{cz#Un;V6yX@(2m&l*)5wI8UsR%NS|@i zUf!1&+~f~OEO<_=)@<26d?P#q1NT<_fF7A%RiKlIEc{m*`zq$}&=NeK8r6Nx-TWy9 zXa5+g&HJY5h_s{Qy%skFoW-z=I2C;OVbtM+7Fj{ zZFBTSMN5Ow?CV?(ndTEEOS$2j2RzMFh^!m0$xShrmxlH!3bQQzRab#08~tOx;^tu* z5>p@*l&Ia#iNkCMj-pby28r64kKCkCIgNu>U(Rx_Q$q0?w^J*7N_+3jZs|wS zw2{scid9<9;m;4s$f5S)a z+s?jyGuxnM>rT~Qm=6>`XrS8g^v{R`DT?>7SM+8q$-g}{#5+pkt=U`oM~TC|mqV=P zlwSn{BatpJUs?G)S$ud#h1&^1**-5P6MU@k2YJamy7S-(UR!L{oKhxcb3l4ngkmd}>}|iURPsm@#%qI&b4;gV0l@RLK6l2b5>%2BW_-@1H+!y$}C* zJo$}D$zFHKepwH&xCx%b{Jx`EPn+Bsv*qr%K;`ghMW%s%k1XTERAm_$ zp!{Hp2ITwLzP}wA+u{xgq6Q3Wu!sj~rt;bTmoA{7)nX$w_mWig?EBWh_7qaddM6Wt za)JY?K${+4)q894Bw!&W`GG!>IiU2qTfcp9DU&yy?<9i)5 zUV2K1ouwa4q^VR&QcnDW4~_S^a3lu)1~$dj&(g}C+mI;a@fUd`FiW7 z!D;p!R~-#vc%vbb4=)CP2INDwt{7p(_n&#rCgO+WAGu%uan&eJ4Jw_=nNV-DP+Biqh>j8!XJ)c|4QliC`)}Mcr|tcg4n8P)ylbBK)ax`&SG#}t(a0Y zG9=UG`ngpsP@Gl{(;_K;7PnUX0TD?273K?u^;k4Kkzb)rk(;5$BzVpSb2O69NGO715A=ukrYit6o@SgKO47S$k#Q_hrQ`qMYXw~A1qE?! zZ)dZ6hOa-jIoRZAM~=CJe#CW)=2X~rYsZfdPBe zD{%_Dj}m4xf`&3^%d+`tSlypFh3M4zE&k%9QY0f!15(rEbAw)+4wN08^qcDD+N;~q z?{5C`0wS|_;6Se9C}6aBCO^c;;+?u~3vfJ1O{7htZD<3kdI(PFqk2Po7LTaM+gOi} zH47StD!qlYs{G5w_xdaSaz^2jb<*MkGS!6GR~SBw5}fBSmrtNAiw*8jBO8cgk)B)4 zS!q zxf%_ba3}8)1(Hz;xkx7uW5_c7MM}!+fTu#j*cm104Oasfg8m~VD0}O{9K6T01$Q2r zrP$z`&p&;sYE=tJeru7>e^zjB z>tg^c%0Ox@$PK7}wBbh2C5hUSBqkk+!ui%f15yq@gqbgo&+J&&!Y9Lkg; zcE5iXK95e&<~7K3{VxshQ365kZk;?-@lW};a|h$*Rz%J-eU3(^w>s*xw_b)%$txB} z&xgMx>~&=w=c@`?oZA>7OJR$zk+VWvvkc;Iga(CujSczej*2NLT-x1)pHu)7fzLzN z=U^sR-qk~uLXLG-h5ZvD$43E<9us>a^Io^jk>yFe5EnS-+>Q7i?kSyhjtuPMqM@=& zF>xpK6|f~*o6&$SWdMRTA)!aBjbG5V>^A-)TaTma-m->H_?yQr2Wv{gBbhHY!<7)L z2~|K{z-<$VJHGW)!XdL%o>-}2?odsAkeA|5=z71an(lOiCD93J(;aZg4rNDQ?Il@C z9CN^0g?%5Uqqvv?qd6!rGxWWLz45$v8%h>(ZO|3+2EPC!)hCe11ut&Ie%+AwzPb3$ zuAzK_0;2g1N9-b4_p4)`Jq~VT#X(*8Pnny8!m4p#@=kxk4I#gzD0x;=AEYZ4`16#b z`Npg#_umFP_uK!*y8S6Wwfkd%J_^$wiBf#`bvgJM%1NNt{S;Hq;Qje;K#2fU0M>5v zk>OJ&cB@}nECF2ir0M=kUkMK5%{dPm%Dyk6z9fJ(zUvw2#0RiUc>LwX+}o1t@(YSS zpVYPb%Kd_pQN}mo{ovIyR@yG3eVfJ+nT&P!FDuT8_D1sd55afAooIcLSK45ZuSGb0 zQO7(Fi`{M24__mvy_)_C$Em^wK9D+;7A^04d{9P5F)<--XFI4kiW})x!~eW(Pmtil zeR%qqRB!X@q(@;QyI$nf|2St?2kwU5JJSq>(Tq>=1An5YjtkU#lVGe#eVY}X!hzWt zvPIZf6UC!zqs6Ko`>)vkNsIn<1y7S{UVwWWzPJ{Yf^U$MOM++scVncPARA4{F0(le zrB}x!^?Wsv7bXz}WpHcq@?Yb5ag;98hxS-!@^x>`wAMhE)poa0VEG@<@b>kp_X>;& z6p}c7??T%!bTy)1X}`Y$v*(wYa;sU3JAHIVp5JD{w@^vs$ipt>ufViL1AGfrb{i`h zo*pY@KDdPD6lHmyU+eu3{66$V+-wz(+Db=3;wT#x*q<2@NUwpIvnm#fUSfl2=Qz4ys!= zRn7g>MozlEPtd|fUgf@Th$~s=>9Zl4JaP9I*RNjRNil?!z+|Nhg+$W?w+U}};Xa`O z_3mLFEMA3)RNCS_b;g{(^Y%tq8#(C)2t2K{JLy@od1J2TE?E{@V?)uAn@$EbJ{O|8 zIy|L}T)>GbOEKNLw^7#cgK06w2PWz5OKXLPxPil*N0kq4&65dlxdww-A#0axnN$s# zx9?u1J%C_eqBr-L*^z?Nc== z&i1(RmEB55kC?csaU>GE<~W_7=koY=SuulBqvQbS+dvW@f4keFFhTv(`lH6(R@Vg4 zbqd0FTtR=aH3hP_`X_BC6|sE`Q*cI`e4!K`;^3gBv2zQfTTC^bk6$5=HM=@+|BS6k z%XuTL-Nu@(8T58X5^GcF_*X7n=?6-8^emhVFS-AZv$bEt|24jJ@OSgYBSdfo=^*1} z=-hJ({W9}~ZQ%7AImbcY;Q#tM9RCj@{3mZGpEiWkU4w%*VjppU*m3@K$fKzOT>wGkB4oZ~0D+*$ z#akM$=QIa3HuIP%b_ z|Dsbza*!)C4}8{Gyg$P^mDAQUIfMowIbb>yRj(ygPKX^H)#>n<_p>4S$e4W2fBvWi zfYnfqFRdv4rGPM8&3r@o>LHDQ;K6lbN{+6M7pv-Rj4Z7Fh!A&BM^U9l8|OnSmWrwi z82KUWGGvSU{_7ite`@Unlae)KA>;hM5|!W@_$8o7ibf}J#5%7x(0$JvAxT> z!Y7v~fwMJZsGbc{M3xikJ8xk+i|V^U*U9SWXbW1`yXbAnM-2$?tmR^fW+LKlFX!o# z04y}JBB@NBH_Mz9U8Tfv3ZCjhDAF49x7U;Ovdn_h%$51mqssFUSS~8k-2SIW=KUIJ zsju(v7Uw^EtliN$0ph4wk85c;nFwmX3FLUhq^o3C-g@Uz)xS8(pf__y|7l|~>dWLV zB`nj~@f!P+4PVb3y+$mwE{gw5i>#*6v1I%}OK9vLVau{@uvY2cK4eUnF)0n!b%<>5 z7#>fR{w=H^cl>qpYY^>KjQ+|M7Po@XU1L-G)596aGaE=L&Be80_yB!xOL|<|ZM-5V zaP}UDQbrZFi*rZ&_r*ou<+?$-(A!0Qy&GJumx_CGn=GDB5LAW@V$fs4Ih0ACTiiDg z*u0U?!*p+I^=bu#@wrPFB{o^v*|uNC!cp$^bKsHDhBGhBWiE|ztMC3TJMYS@^UuNx zd2^~#gO``5XhLBbY9it;`$wxh$Jng(^ocX^4EN=Mln@lK4(zt?D(4%3lHZsSxI6jw z;su|&=SL)Vp^su{<5I@Jpm(UXx~grXIz5U4MUR@^a>QiD zTyW7ka~E~3GheeO(G0A#YSvS^)$HOF)pW>DrGGfD)4uGd9G_>9w{n<-Iw`veq#rf% zsjC(O%y}TSnZXO1Z8yR?=Pu=UNrOYn@fxqd;#;>nawdi)&j_-OK8HP8^4%h;XMcSv zNQ8b%w7dlvzp=BK)i3>Thz_4xpEIkJ8Leb{26JBwHu9J8IVnl_ZV;cii^g+-5s6!H zZ$#gBBoMVuoIzTd*Lp=av!^fI9Mo_s^2G~?p&Ei2qtbUgKl$B|8pcgYvIIuB%6*kX zqG=v8sxys8cD*y%pI|6@?nUdp@Ne_qyG~4oT_2M5&xl>GMMi_Q=Z=BHUV=_$L^tMV z=FumJ!s&U@kFl{Q>T91~LbE)?$p-q-U&#nw*pvng6MZ&3R}qW*)W7ypcD4jUuea4`w=SiaX5-Nm`mZyZNxb z0n8izJwkZS+m=7pepU?sPWdtsOSGyc^M3->m8Kn?!XS}W(dsWq=Z=*{}kNsq7%x^o9$z6q|2DQ93_ zntlzzW_}VEc~B3vt8#iFHGJ}|;#rcUAe$b9}Nb>sM`(+N8-K`)Kw*6)d6 zp~f#*22Mo?DfUVXdT?t>bLSkN7z~C`3Cf2tZrQo%y81=oe6n(H9H-`fu?W|Z4zt*e z_p9m~bEf`&w?}m^nGNyUMod1v&MPJ^adJ;-wb!_5MnyQ-;EG>*M{hkbS!U;k{yQC| z9+dt*UJP)v8#k9|cDcZ0g-Y3=U340$gDF<~>22Tx`lJOhdPx~Npvlz_xrV`)_hb#B z)w5TztI}2aYK@4|X9pQW#vk<8=f9&^r^r2a-~ZyDn$qC4?ivhr=nGa_z+1Avh>vNIr%*pyaQPJeQXVF{K!sg%3dP#hCQ~0b ztiNF9P}M>DT@Umx-9;Zctk$_|)~a@9I&|C%4R$nhX!uHjy|`cg5Ex`V3!-#O&p&;p zuGPD>r)1T0$Pal~_*noPBWT+NUh2Ew1_nIEUq<`^n9E%LRI-kt1N?BfF3$1NHs&^_ zBBy}_OVW!R_vyn4irP8JyaL)9tDA34mc&hh#K;DeW6gLv+;U9Rxvo3ukEfO)>BFUm zo@r?1j5(YvNJ*kFlOXW@WUYCl1DQ3&{s!;lI^V zW^wK;2gqaR$s?|e19W|pOtwuIaz#bBZqoq-(szA@C0Jo<}kvHa91;ww*q;BykeK`QXzvbSx zB=t}9QeFx2i9MTU?{4k=l%krMNRYBhvx68X#dZE>)_JTKc7r~n0k2wW{g03F{8w#2 zW=iWTEvco_N3nk?{)4ZV?1(#!EV@fvp68N*`RulTI6o<>9S)kH&<%XnU`j=pEtSX~#y$Ln>ZV5^v{ z@Y5-Rpx~?OtfzlO$D6fvI4%J0{Y#1txms~ySr22cJ2f^8A*zj(#@GbtTI= zoN}V_z{|Kz3R>m*4=(;n0}z8p4Ox93HL>Wst=$!>s5iTA^StA=C_QVbutd@8?pLRC z1(~&s+16Dg@>?>vw4dQS&UY#nQHHs6)N49P*z3ov~I7?Cf9)2kb zR%LgS(PGI?-wy6<_2i@uOfvw4i|l&y9_)~W#+EA1hwYL<}RkwAILHjyf z;ZeKA%+=qRb{#j}0Nl<0G{5Qe`m(}XDF0+|e@INKR!vPOfy%v51OhkG1O?r9il>#y z7r7yM?|RwoUh>xSG5}{mm%hK-`q8swY9b`@>Yr@dJgDip!C1*ijpUtg6L&vm1C%pK z_<|T8iG2}Q4o$EWxBaiLihe|%b{2@sZ*(+`4xSray&C+~EZPMl-z zvn;fw(O@7{;|w7M?-Y>8C_>&2X3PvqbLoolA?8g#ggd*3@LHj2JKZc;L#SC@@J+Xu zde^yuX7EGVc-YAVd^t5UF@Si6k;lrt1!^yw_a1T%O*;@cuVb%P6!T9D(buttukrgE zBXr+-((26iDs(;I7oZ+<5F%^t<>kAzp$z6xwV3!APvV>A)zSoSCl#coABHmh7S_aQ z*Ei56-B;kLp8Xsb%%AT~S&|V*r?}u;mSJwsUu@ z*0Wzr!u>tQ&xrBSK*8fQ`k8l!{F!OlO>11oP@A8y5lEo;k+3aQDpdgCrZ30GeB&j# z@w4apZfnV5d#XpQF!9pqDjTB=+0u-6b7P|Gjm9_!@vzHZ;ZtD{Hzia)(Gmzv(7}g@ z>A1{vBAU_hj;~}-BoA#iDgL38bv)t{XggTW>ZX%ml*R)fSG|C4T3VKYmGgDCTa_`t z-omnLT%+suZO(PpQxo!-dPfdP!N>$7+nGo7qBDP+t@UR?S=8WzswA;66Y}l;w4f`} zvq{Yr6EC|K+tU+XSI&||Rz5@_i44QqK%dU}Bb_r2%pX#Ap3CT%@b&IzI&FV2;D9i* zpqn(%P)$B2}|Folda4M$dk2{{UD@HiIn)&!|vm`;4ygZ0UT=IvwGUad; zDbIqHXpI){wZ!pv@^us&h#XWq+r!=a3m-MJ@~h^9#fF7NazK^q!#CS;$8$SU#zQmj zyEpn0uL!*sK5l5+3?c`#KXOEh*%xUXY0cSd7seM2_+@jt6C;x;S;a4r1y@TNKmw5} zl0SYlaCO*cs4NXxmDItD9szsmKdVq@a&;|vF~_%#6Uy>Y-wNYX-<5$7Q!z2mGWKcJ z+&x-H;XtNg!zYbj1Tl}1MAl$}Ew?lD$_v;OgWl}QEJrppAh*B>n0>>AIlUPTasBQuB-3HI-@fsi-FK&yC=0q2bEo!Z z*Nxo`GW&M0|FW4#b#JIN*Y{s$3%mzm%b>*ENf>itADq_$w`IsOX2sxjfZE;at{ zC--BA%GI=rx`6Yoz%q@7KGVzy%$f&IOJ6nMIlh_xO<)5<1e`Y-b^P1(k7K_FHSJSPzSf6pk z7b@e-u4ZDI^N$Le-E)MBt021f)9gSCQGE-mdnEC?a#6?TxO(EY_w_opu>mGWR>U;4 z(ml0`T{-KxY#BbIal`h9U6uT}(1Y%ch~BW9&gNS2m9;)FVCFZUiMHextM0uc@e1g_ z7@xyCeudr{Q&C6N^3iLza7rsSw#y7HEkEgz%^+w@Qymr95#xAy+KH$o?kQQ42P~kI zKvNmKAcBpYOu$A8mN6Zs&LF-qceqw(YtWprC9FUvZx!T)>v_1Qnw+-&`m&?>&Ygea z=m_G^@T3jnX3uyXdljTmgp}9JnDvl`AJng$jyWPOARJvQ^FQF6s1BZ@#$tQ9h9VSg=7nY`M80h%k|G3`4 zfzY*+a!_4dKIL*Y7m^&Y++U`4TUiaKOhY zQe6m?oYkDWIT<8F!%#m%58ReN^1Z88`BnIZR`m_a;ZlQLRg2W#MwDXrgaL4FuiVuP zJ3m`(^pJc>4xrNilLYnk0pNbyO~8A=edXwCwm3cm+v~e2ote6Q!ue2;i89>q?Y_>@ zRF|?N>s1kL^ghs^K$8a5x&%9pO3A$myvJWHh#`BZF+v133*O5lbxTnSIdi=t>2TZW zdU5Cc6<2n#8-oPjr`YhZW2;q9_8{Z*K#_|=D(hUJAIplk!&^Zce0JO9y}36U137JV z=Pubg&r5kHc-of>yOi6NP7^;qzfUsO{buGwwyC7GNUC1=ITwu)zK*NjB1&Qg-g^AA zrno+aK%a9g-(vS$t~&S9UEr!6eJ^1h4B^IQ^^6_C)z)2=&?nkP5DU8UTnqXKZR{8Y zOFQ;X>y2{uISvK*qKbP?OeHnX^RadIm{X&(??d@0wbxFd?T@b$2Bo zd@q3D!kakKS6n-ZFj}8J{0R;oHGibXM+<&A{4Cv`|~lS)|#6{Jg73yf-SX4MtiGuGUYFRevuH1d%^2-zikq5Kj2i z0Uk*Ml%s(pKcasa)regK#exQbj-Kt$rqgxyD&Y^U2sk!aU0PJ18dqeB0&xOgtO#G6 z@745OKl^@SV)VmsVF-+^Y`iQ)$1T47x7i&gpIFf-=>SzG36>)@EXI$x-Djh~OomS0InOlKBD8jIU`AYv%j}N;s>{cx^ zgl$2wI80GFqTYUj zmm)r-Q<$Sb^+93FZvNee$g9JUW+}n``{SUAY^=D_*m>bpS$y$^W#WqCDQiIiH29SKiGp?bug5s}I0~Mrvn$yKLQqN^b(}f>`ce z^LiUQyJQ-JTCx9(1i1Ij0S}JUV~Fpl(|35x&C`>jt>L;{ejaNjps~@ZoqUA+4@@K9 z8(D8rc^Nm+C?=2B7EdBmeO*PfHDcES38zJj6FiT3BLzN4N!6`Xb!fSMHIm>VzdM(N zv)GF*uly+uXB1c335jFY8 zfnb``y&hRJAFm*G*K#?*+G9uFoAEXrvCVR)bt~U0Pq9xCSnox7bBdfk6AlhW3(|AN zU1NR+U}X+#_~B}D@7hVn+e?LBU7Pdm!|X}<;loFCgIBo&`?$7%_s1tv@3^CsK=4Jo z=-4k72ih&%Ryy`n_^nhI{>I?JlL)_`%}rpt%v6hq_DSZkMEj;bmK%sFeBzDt7sHs> z(c8(gO=^zE!8_fo6Z)rtgV(#pGc%PQl1II!Etek3Gf8;Vi$@GxG}!-g0!Zw1EQJ23 z{_Pp0Ybnl6*B zYM0?>S1ai@W_?n2vavpO1JuYp9?F7Q06;KEKv4Ofly;$%f!#Hvy=A+O+#MNxDv&9Y zd$If>imEoR#6?eu_0vHqGg?F3dVJY^^{c)~k{nQ{sr`a(_PwS{fkz{rKLYVY?|S^G zKGV~h7k-9H{5B^N99e^#`4bS1(haF8`0}|hIiHzF*3mUwVV&JKGtk1KW`#qk>z}!4 zQ6U@QGpqo(*t%#~m&{Q$Az*Tmn}SMGj{JZSgx@T0~DQM9iy`n}9T8eX=*(qk> zR*Rqy17XX`W`B&$c=t(lem4HW3#x%&U~z8GUc-xa z?VDb~3w)W)W+xP#{j8It!%F}OLEsZvL%pDWDHNc!TOTukt&4TL_b%8L)Lrh0A zykfq8iNidTU8zx=$+Y}nkHQxhC<}$m)`hWt#DRfK>83+IxAc(<5p$^^7JoaQc;U=f zf`^;+SjR)|g$;odTPsYhYfiFOM}OdQ^nt_jo2QrW?{Nfwn^BmNl>s6osJfeVEcnWV zdhF-+%?nv+CoueHEyg6xIp@(4vUq#bKGzaW=(NHsN(8P6gI7jYET2Y;`RP{@iX8TC zJXQ2;Lf$t)4v^mS4xz`_eBDZqlupj0b@t_m2358|k*+uFT zuz(Zc`+$rS^rDwr z%+vA9z*-i29nKGc@5Qte|4Oiq$qtin{Tb`RxTvCMhGIVS?124gN&t`>l4I}p5KutB zc%|mY@GMBlgBRe?J$U<<$L?B<0cOVSr-h5*@63`f{eYi;1xG zlCJz@^#xy6(T5K&i%28pE@NbI5altDd5?;Quv3U`q5M0ff}Y7UdB_DKJH{jEbgPM; zR3zJka(JJ|L?!aI=_(fcaSD9=BvCMUvXnIV#QcKLv}>rSM9z|EP|OYwwHVTtfN{sL z4ax?{_6PpbB0O1r-S@b1bX%!(A(&5%$!Ecc2-hLo)xQiv&Ej_NE)s=KDVh{fUITeD z?$!a1D(?N%@0V|24rR_Hy8f-rE8`+}c+tf1xEv%FMG9`t5)mZ@B z?O!3UWaI}!+Fu*~-&FpFN+4d2*|63%uY(R3ZN-j_7K&%jHo%d$9idr} zPBWL182X{XH8qP1Kqe)D>$+EagG}t0KPxSxk0Jxvcs?zO6D9SfQk2anpHZFg=j`}{ zoGXFr`*WLKugEtZ6u1G#MaW$46p-9+n`Qt!+MVeVYkzyK8o!1@;cVjuF9tJVC_c1_ zsm~6hj-3XZ?CfPOW{NhN^bKmN->tE?rTpa&XIf*c_yFmTXM{7z(Y86|+lx!t75Z8W zHyTnW<=1;gg)L^ITDE{}^4jJb;YmjN43Elm}kA3!8djaCgW;r;&N_{41#0(LcG6y z`YwFzG+D~R;1xj%$l$(o!EWwUQ^i^8oF`^jN&}YC?2Y(&Phb34D8-CxK9Ez0mv6gC zUeX8{s~&Cyu$lt8rvU(2n>?Au>O|w~W@p zWRlM^RbJjT*X3PSeFI*oy3TmI5gG3}0_j;0N|2(Qp#9m#R&eHhBaSMcy!x{{-~!w% zyK^>5(3TdqJ#mW4C?@>Asp{jdTRJc($_4s~G}&$>WQVe~r!M7u+nSt*nSert>H6 z7nCJW-*5Khn;?4}$Ll+wdmcB*_F+FU{=6tRj~@RCe^?~#h zYSMCVOR+c!c|cG^UxV%@}}Op2)=%1bu)} z!ef&Q0YbB8aNs0BN?3KUw+;Wr4yo-wG+=B18LiD@@kCG$K%V{ls=igLsPZ9K53Z@m zlhA%YD4171bdBS)-RG#1X)Ud*oxBsHGiXD9A*bsE{_A%g*<|T6w(a?^vUN*~vMl8P z-?&imf5d>{deZUQ8sDHJB8dp%(6!cJ=vsTwOI#ri5jMcpA4ZFRTlGKI_M1SCv%2)X zmN_mhMu(BJJ`<)LjwDGwY_&rLmgHi0CEED@=N#L1P5#8lPDFpPD1R-j{q^h`6s%a0 z`AZv6X%7{1j8}ZFN7y8n&<(nUFt(253^ArZCbvp3#AZUroSWYW@mO}WM?r)z+^j7m zzd}i0s9gM+)`>s1IVk}C6gOhQ@LaivP4a!q8d%c(qR6S$n#EAWb<@(JMdTt4ib;0^ zS@)QIUkH`ktFH1-EyzvZI~U6gatSnQPvv-_uHHS9yj!=xcj)oaM+vo_3*tH!PhTh| zf;O|yP(S3vreN@3o&F(zURjQlWoQld3#xbrHS@}w>w$Gs`hh|96xepCcj5Y>#au72rX4-Y^8pDGwM&Z!f25eYw8@Rc@Jzq z_o8GQh!XIxVX$dsx2W+H+@A^A?n}42pQ}`Wd7Sxr#yJCk#saDEMDC;f&gb2` zbysm)3pF}{Cq5i(I&xAbL5v>-g7j6T#KaAL{m<%bKU_^M%y+ zeYe-`YaU7qmmxiYXKo@hhlEdu(euf?u5ONV|EgMGYF{?**R^gVPR^-T^o+jYROWhy z?~8Bj%x_GS4zbnM!#2KQJ;!HXDq-J;HsQF2rJkv1C zUoGuVE#F9)OUf$r=O5RxWQai-?l z(q8yWvEhsNenx*~Nq*&ONYCl;+a10efuE@Xzkgm0#Xt}yh!Si49D2$EOil#tu)$4A zc5X=BhiSI!YYB8xZCezuG=|Q945)4GVVm5f3S;0&^+=)hRj4})Br|P;kT3zfGXQVw zSnda<0YW3+8srUJSNZ9ARWYMR+4b_qiQ3oO0ZOicpH0a2DUe0nSh1#$OW5fFVP%*1!Y>LF$aPa$bOjP;{ zwXv$fop4nK>B&(sRk8}9=WlQUoc3jLus%_dcc*&k?Z+MIdJEUFMP8rwZBE{c@0iG5 zY`?xk$NouoQSJBxblX4u#k+g(MBKl+QD=A>t6kDi(Ih0rf*_`VU#2Gd`R<&kDA_6^ z|Ka*LzerMe&f=z~PkUN_U~X-gk_MPL?Qm3YMc4N>u?WLxZ!n2iueGcUbd_3|dvr&z zNyX3KJ;Y#N^@h=gR3>waLNZ;2?>zH`g>9q-mI&<~=+_Z!GXoR7x}aCTYdK(5h^G&{ z*!g{`das;s=`qg6Vagm~NS!Zh@<-zoE37OlNIYx&Gg12C6j^3jE%GJD;us+c9j^mY zAL+-oe4p%U>E)HCVu$Tkp}bDBK5ja^I3~sza@MEIBmz!-_7hWE!Jjz>@qxM*}9|Be4tZ^YUx#vuS(tJzye? zc1ApROv?7ZTW0-L>%O6Q`F3to(rG5GrD0Qt&lwc)r2?7<32MB#(GZS`U$!?azOt<{ z3!HuR!Y-@!ROA$FQcO5CGR0q+V^m+}cQ?)KwADC~A z-@sA~h!!8Ru5XWNPrr<2TXd&oN%O)*6+;)N-~rQHpMzoj_P84tay2jWf0?onX%v~} z>YAn+TAnmXNw+e5=^PIX=n`D!P||`D?bl9F8-44hPQ(Au3l|Q4PTo4$8z^_KD^VKv zv(Adxk4l>uCS&B&-n4nHXII+bW`zx<1J5wXW#Whi!8_7HV>@G8G5a{+USKAoo@-#t zKcA=<9l21{P#iSX`|yG3Zk2_(mt;-c&&~Aq`DPz%f+0zo#fs6ov1n=p6Y<_KHpARM zhoe-S((n~-JEU=T=IaSKF*)<0(^DE>tz)J2z{f$SFG)TK%oiD_nFUJ`IH7+sT0Jjh zD7#SOK<(8eG%Wb9~sN%E%P`{#xWAb_>m_dv;BaZ3pm(>E7-gLprF0YUm1HI(pD_B$N zgR-B3$s4J&2)2)81#AoELmkls&+k?78hdX2au z63kR4RohsE+*)mgt(o@3Y6c7hox36YnS_&-kr}eo<JwF z?Z#XkMMC9dsJjI=9p-uR&)%ArWvP%Y$5$kYNyJmH?Z(HO|0)2XuYT6f4kTP3d)^el zZmnhxOh3zP?S5W;$MWm(4DwS1e)oQRI2QU;zOiNVWJ6j5GtqG6jwcL?miJXSJ4GPR{=+NpmJhea_ z8tM8}y{X6BH@utOg@ig zWL)9wJl>{{=wRiy23|B1U=J4*jqMH+FM6g}(z#aIaVH-d&~VqPU#eD@#zu5{)WvN> z{UuA#Zm?SX>*#MSmj=JR(x04fxO1z0Yzz4ovl&K^YJ!vgU19rj(f)}HBOeO8G6Q#coy`Nhw6T zOrc<6hvOGLfU=_)St&lLdNS_IUpior%C_qHrSr6U z&XT))vKeqKL%7ySpF}d8-Ff5^R`_3NY>;`1>XV&kB6FVnkC{t`N}fu4gJgVFOr7A4 zHjc;|{@t98odM@~y0ALYmb7=ek=bC|?l&2=;-$eudmx~E zOx;CxQiTlkL3giTb=iZj4LjMSXQ(Rb{`0EE&%$P<&n)za>1WYm*?Qk5yw1m>G>;l* z;j-28UnlUxgkBeX-3+MgI89a>Zkk$@;3f$_B9EmzYUV zikfi}$%{DQ>?l>XKd>#gdkwm6q-+Ms9S&$PJdi`Taf5>)HLfU-utycHZxEu5(@22}an9PIrI$BmFUV z1w4T~Mizc7qagMiHN-fQR|6gcEOJ;LIA!rW|GOahTYZ{T=%Qu4Ob$GLqEx;d1o542 zBj+ojIrhw=P)+d~kbEMl*3<;{Gy*8$Hk)n~HTtXwT^Xe;3Mgf}J*`){DCQ zdHSE{^3T+yFEtJ3x2J`uYi}x~wUp9g93_hyn7eP3pO?~XU$RBs?qF{O7ww++3;I^Q z#YX9-gl@dOh)BdzI-w0%A@0nJqD+%m&q1$u3_8jRNzc#&9rgO3^tl_#m^zqsu?qcp4>yM97d03x!{B%%9b;!oW+e zursT0>C{D*4ta^zJOqdQiDB)+LEE=4+WwB03PIidB5-!OxWLWh&py3$-z<`+sx^?J z-UkgZREt)180n|?TT_P}=M7T4LC9I9T+c+K_juRaVOgR;wOh}h_Ox7Nz|-?whE)}= z;iBp0+CqH>feX|5=`WR2Wc+*OSIKO5Fe?*R3>AP_r8RIQ^#C9WZQvLo#xh2F?BFMk zzTddzby-DP!TEaa1JUguja*EZ{6Sjnyzat3L`ZBUd;IWrXlL_b@ms+=#t2Gq5l=-~ zh|5$Sk3qR~1|2BUQa~ONP03U^VTz=X60r|YsSFyrH&97F>W-E$x0g#mm=xcTCD2Lh zP&Am?RP*?!k6H_SQEejY{&D*40bKYYEQAd0Dd{8fgU(Ww?`vqo%G>@(c&>`wf|z{U zG5%&8^a*HL^}~eC(8b01ZO+Cv>35e$%Fy#G*FXkS=u6zyjp0fM@6!u&ExNY6m4aVZ zpi2VGaMOix_h@QoP^dg>9ds$RsS+o1z*LwCzJm`x2s45NfCBt=WObK3*4`FAWBPCr z_7)Nx#FCskn>YdNRK0W_Hg82JyAr+%+wW)R+v$z$0yo||zI_40WWP2Hz=m4!*(N<4 z9+jB5Qw23Aaaw==mV_!ij>OE-I%K4Kp!J-RvQS|EG&Hv(iu7bL|3hrEZntC8g=g* z^-F%qR=r=f#{ax#eh|d}9s--6oL~FQUF%EqkWIhX+SmtomJ>&|g#!C!=Udq4&Hgca zLP_HaZyWC(c~w{h-M}TTUmNC+rF@gBjGHto{H3)@0WTwos0}kO-d2uY5BfW&_x?0D z#7K0F_O>>IXr1Q@`_}*qio?M0Z=Y2bB1z~_l=z%BzU|N;)tq_`d=qE8YN-QMbT^0l zsnSVezG0l~MmCY;rH@~#<$Pu{9&J;o%_~0>xeU%=n;usj%lUNIFswAgQ$;22*Myb% zT{*&{9L`#EyDiE_Rw@B+l?~+^ne<8@qW zmxj?k7cDhco#{}YJ;1_TU8my5%-soddow5}!L80H0})yOclX*eV1hMY(*DIePUY)5 zK$iAvzq$|4c9O=uC892Cg%@SWIj#Wrs62|~;?^z2*{zI$O=Hg|wyFvBBJO&IS|P<= zT^zG*s1~0548jZB6s`NrpZh3(DFUK?ngEEM3x{ZO+lT+eb};UlzSICV73o|)uBeBq zBq)RC-c)4k+@qdAQ-Qxo=zoBIQYlOjNfgy2$~$Bz zU|P>BSv1dp@JSszhdGbyUX6a0O1!UESZWkT@T%}Yv_>-yj|w$Ag(*HklV_5LLZS;k zzq~%~Pw{LS2w#a~IXzT4u-nY&j3c544JwJRAPB#zbX8Ehb?9hHVF3>HrXg?aP3?JH zo@_TKuvw$Oi5z%1${X{mOt&zE8tmc96nolh?;K^9s zmgabX3c{+ljvk>qT=!D7wlaFm%1x9(9VHCD$VSMIlU`HlJtr~w&Pa_}bL7a&uFwIQ zX8l$or6-Bb)6MNkF*G9qO#Y&3JhYmk!1H2>v1A4K5`*jWd5I({!0+q?q^`*nBh5np zttEjXmU`SA!3EM{`dRZhN`=JJ&WP!;NY?k}dupOQ(-~&E0z{$b-&+Ti3;e4T&qec( zqbo%Y_}e(bdXis?O4d;Z{lQ&`I3?~BY8<0Zg0v061J~N-zQBN;`n2js_u=`Ir5zn-X4%*w*9x@(OCn<8TY%YCDn-j4afJ`)-5b_yq#vw-!<9vx#y+_unS1WeQ6c4`hFG0Q@+iQ?i#L=@x@?o>97?M83u&jSXoX(v!f7i)cWrJY-X(TSZ zM}5rRvZB3S7cH&RlN2QxpAwNLqC<&LHj9~{B(VVQx~2ukG4~0F=BqM%ev0(E`7KW} z@YD*9vtcL@R`nogxvg3|Vk;|^70N|DzCU)N4$`AHR~NRPs~)0l9{V!_`L;J7_I{Qu zBEbIXU~qgwn!IEpb3z_HIHfMKoNu%$QXyWzkT&ZDEc=&J{>RQA2vj&nf%+@abmewL zyj|zJ*Zw2UhOTOcNoUhKdo;HTvCfR$PhI#ffE2i6W$9D>Yk0-RgZ7R=Uoi7L>R0TLLnYyAOTabhrt}d`Tb8adCFZF63d( z-byc=gH4eFI(e}bnbkxZ0xy=MDS1Y{Co4-dSL^md_arnR_ghl9R6?$}Yaz=Y=HHB% z#{di|kx4RBQXJiaED%;BH?nMIz8fW};rUYfpRKYl=-`lg#WXR8RiPZ z^m~{vn(FaJ&;U{uDZnAhy4vE^gotpGNv zhAlO+JDUxmA1kUqSb~L!#f^qHk3GytS?O$EzyH9TX$8 zGTEPFBBZz83@RRFI#pHF+z@0vvA_k1Y@;+kaE3w|e?d;K<}yLJ$~{xy@!wL!Y;cft z%P<)4zn6S(d^Zwyf6?7-8TlR2rvA3QGIK-Nbo)CPNMcsE zB%62p*2zZZ20o}XsQ^XhwbE{&v0D#P-CEwPRAEOyj7;tqXp-Ebtn`aL~Q$r4hTQ#?p}~ zRHQXuHvA92Wu6rM%h40wCVPEG+q{<$0QX4Uerc={KCZX`WU*E{8d!Tsz)w0&K%cAn zGGv?AFd)hRumJNNx_fm zYQ9Sjf4giN)F^>E)29}-Mh1o~&hHB=f$Yxn3>8%_)K*(NMOggQ9`ES%a zIwAL)Ak4?jg_*r^>x>kSpnH2&Tw3}Auj6Xu3kx%R3Yv_^({M!g+K_&jwtX*hGqD0|r;R9pOwOE9s~EKY@EzQS#TXNrbwV;;kop zNtrG3-YlhAkP{1M?LoWPgL^pVL}PirfY1ro4!hKYk2V|i87^V77IvV;AGNaZEKtB! zIdw7&wj3V5f!a*W{G1$Vr%cnB7ysz}W8i1kisd}*G(WRXBHFsfzQgeFjj9xLK5U)w;)H}@v%T7o5c@S*J3y)@39LAQ*zL%VixO307ZyUum5;M4}){hEi~ zg|WE>TgTed;}OSg2~X;0crb36Lycp1^ZdP#Z7xp|S856!BwHlFZ6oTXpbc=}M=|iI z=+JnJCr1f+YDPl+U|e03;R)NFp)a8h5kvJU)vg08UP;3-uc2p=Tt5O%N)GI`*<9b(MOW)0jul{W2e8W&i_z1AMDp!F2RcaQ~P2@3@6l>#LK6Fh(|b z^orkSuoAGFKbpAnLG3NcE57`r^FB9jCQWKF5>Gc0e=@*Z3zBC~7vI!9CTfo!{Cc@- zulg1IROV*j=lF5`m+n1IH|nFw?FXo-x~;-b+uR#2!r-BLF>%?nbt4P0d%3Y`iVF<; zR#Tc*Cg`Uty+_Rt-{{z@))xjpte%mOEIS&+PS?;P8aUbHzDM5nqhXJ^Q4Pxzc>Y&+ zRj=&s@@>`Iqmh61(Fqz&Gho9^j1SZ$Kfd(tHLh&nV5{EfvOxRU48T0yEp8etY**{D z6_MZ8oT-Fp+i}=>h`Eoy-rUM-xUlPxm@k0Eh%WCf>qmx82!0s=24CMt&3!%l8`^Lx z<-a#&*KGHAVtLYMtbpjwK70gJP1K}321|Fghd^4tLS@gZ>|eoEMUR>1I#k@JLl0XN zwdUl5wI&7v1v6VlR868IPK&~d@>&aJky+;kURF#E5txQ>)vvv1c3}Ix$m4CYaJcUk zZU98M=W6xh*qjCbCZc|7i@d}OX7xEgWCbEX3MTou>@u(cDUIJ|lDP1E$IJy2ewymo z8~W_lQ?6JOBjr1QUi=;p_?%FP0@qr~N3mc|dLV~kVA5L=nW!)8#Eta-5;ThfP)`n7 z&`FKI;wT8dY&k5fhsI0?6*e0eREjp$HZ@h93UsUv^kBESFe$NyBIxuSZv%V zK|Fog!^(jQ0l<7{30J7A)_#!JJ7cG_M92XIx_V$aF{E2+EfahMMBm-4o!Okn9%Vr> z#0k=}w21xc8>DF)Z4M*)j;K)k^6QUM*xNphmYSD7EL6HLzq`GAXbdIq;>V4r)~c6n zo&9c*ir4jW)wrg9-8dq83_Uhg;eo6XXUA0_;2`umH&qF~AAowuz-g7^*#QAPCs${> zeST4Zg6)ZVs82auh=;5OXr5d@C`Dyo8hWlM=|Ms(dtRh~Q4!ekw+78Pq$Mla$U^Ao z5xt6FAV%mE?RXMtP@-#G9JU?|UVtll!romSC_Q@HUcO+F|FK=Q!hh#+s50XguSxw) zRp_wRz<0(>b=Sd1dh-kUf7UlPOh|3e(^5d$>13v;_o6g|uk z-(jM0!T=F>7$A(R@L|Cm#ry$6fYF;Eq}S;2Ye3#eDjeR8WMmEpldJ%Nc!MUW92Auu}GAx^_E_w_(k>7B72AGj>s=ECx;ePj_-G}jzqsp z1UyMb)jZ6$Bm3~H418_dK5f@Ctb5az&4c9#mPQdKQm6j<9yz4Z3!&4o%OyO)%`=?z~id`0Hz<{e9+>;x1$`C(oCyS~xE8a@odC zsCPe}Mf~O8@Kqn&1$;I_KcWoXh4|gJqla9$Wyoo_0Y!-2xVM2)=Q`%>8-YzCFS0O- zs1}#|K7v7k>r)4Zlk|0n5BN;UmRN@oKbJ!&CNiUQxat^%ZyJcMwZb7$2lZhS7i^aT z2U&;ntSru=oozY(AZKL?pI_5sm^#COI$DzRnP56|@GDD^Ciu=vFB!bncu2|kM`R9O zysq$d?Lg%Dv3@6J1J% zwX^AfI{-W{)-=gA*sAo+JDD{@WrxIo4{k9&fAgprSrg`QH>6s6d;307_Z`PEs~5+x zFcHH^kw*IKA39v6NV2P}7o27J+n87kzcM6!0#Up5D!u(@y8!1T-JI34J1B;`Gt=6 znc%W;Ssc*;O+}X|3sOr@%nH-#x8&^0Sd7$SUQ8V*E zyJzRiDy7|?H=!tFi!@Y`={(DOx9yp?gyS$IyCpSn+t?54b$w zgS=0gut49694LZLZXVnEWBtfZv1aeg6Dz)QrN;5~d*r`R>f$dK-l(vH`?J)28FcI} zpy&PuL+Z4Z$zM9{juex-M{e9Q9Oh~|bkM?gjgJWB-yNmqB_myJdP4({o4u0-&)%&gq2V^M zeqaZ%<;7NM>9Zt|++xDcPFzXxJ_mGWUGlj-ddTiWwmU%q-3;5?Pzmj;ZkiJ3bdIP7 zSVrxW`cn*+TqHBRF&+8`2)@wKRT8>m?!ri1^V)n-=lVj6uMq$Z>i%qLS|J$MXj@w| zRvkHe+_$}V0qCpKNc}m>k(0KGbZHzdAx3k&FiyeQzy&WGs20aqju-`a^F@Q{wdfuL~ z6Hw8c7sZFj@p8~}!=!Klh_Xt7opW`~fUNSgqOExV*4B7CAoDijr*Y^R>V?IGEjxXL zw7prPHpQtQ;6Q5EXU4-o*7?BaQAVnrz8=xFijFV@hY4@Db<`NjDo!kE8IuXqbU7&; zHVl*X*5ijeAzVig#e1cZ3xa|z0`qMpON=g&6~4w2C>@nl76=_sS}gwWK|!R~UU=f< z)Xk2TXQ}D$l($oh^m=BtJ1%H=k54-z*57@LNRQHNof^`W8h9i6_&8^|#ge1_*6623 z;GMk)i}9U~LVp9J^L3@;;NVh0VfvHz|9y3c!b<~^n~iYAvkjf3tYT5a#qA&LU;evn z1zcV^ld9#N1hhX5-pTf?ca#Gs9qbgCvHq|D9x!!L^=?HTpbCnD!xJhWi2cvfn8-FF zxfm6Z{GF5YPh3_anO-~BGs1xon|~f?z!AcI!-S5%Dt~9}`In$dp1;`#KEY9_M1CxL zZGoJ`dG39;_C#CRKEC()JNS(3rjJ=uI}f*0c*GMEOA%i?6Wg-V$F_5o$ZL*(-Hyx| z;c7pP(w06W8VlhWK#-*F(Ukk}`opD@S_nJ?3x*)?PGS`M)Fe` zRwnb$sQ@|V9`BL2AVilx>0hD`DE^voi9MiQRC(!LwFPlPE)CRh0?x?4eWS63XpPJ| zmrlMH_SZFQdB!TUqeK#7$3NXDVy9#GrTBeWL7!H4>%XH`^60ywDdex{&~T*-5612v$g!!Z(L=7yA9F&o?uq15lu8>qq_Gw`Qqq zt-$=5?ng#GSv^t@hB?-xBNF?I365rcrx~+3G#kx-gXg6hApFgs=ecd>&meS##kB?t z94BX+$DhE-IV8G!Z&S>Fr#9RRf-aISofj*@zzYsI0AKq>WGWj@L-5 z+}RtDX|Nr~E0K6r(${7xwxYW}dsREVjKkZdqpjC%ynmeU-u){N8Iw~!3RrX(IjI_*56Z9jpAzex3D~(up9?ZZT9UtysN2#3fL}XD!!T4?dIVx zugQIK0W!BIg+6ZWi&#>waitgUj}oe{WNM)I$&0mj64Ap(Mp~(hk`WFs8WX%Ga)SbrGfQcm*yGY;Sryba8#p|pPzfuXWoDxp2j%3jSYxc@50vY zegw+vGaQ#+aVNZMBXB&TP0uHQH+*X6q@EAXZjrHB7XyRt%w9MCO7hn$aJ}3;Y_f%T zVkQYz=~I&>JRS8`h;@QD90_BJko>{-vbg^$b;SfZ`op9NC?jFjo>K**4r(P5&= zdvkkP))6Rj{0HrJy*U#5I8 zt-paKUAcDM_y=QA9mQni;n3kY#g`qt;5uW{*VNjhIDL^lkra^NJx7(F`FDl50V>4q z#ltc9J^=O+RH7_I3F!1on4uPm0=iQ$H{JAGB_nH@E}yk0(dBgNjAHplo&}&`QJ;M( zDfkb`E&pSCA>D9yC!Kl_Aq2LaCU^zUOZ# zi`3-NX~K47AYCmQJ_46JU+0eqlM{TuM514(a>h=p8t@q35jq;Fa3slWdTsF@$5p!@ zF9G|G5h<5F5NtlU4#G0-Gb~fm-L^BqtR3Wo&rOd}+n24a8^LVg1H3agnyC*WGdK-ZXaA!9-ZKB-j3~hH|P}6vg zM!=&}ge(Tj^P4BK(5+x@dID?_m$lXz@a$oXl0q(9N*-2e0RtiDTNJ84rRTJ~=Lr=l zTyIjX|5Z@&Mw<~%5NTt>JQ+iFG}=@Y6+Q_)FOg?_@?l6{nqs*ka}V~Y<@$iT3Hayp z`BMehXrAr$a%$SxYc|7>HzA4m=YgkVd^}qT>7vvs|H7DqjM9YqcQ(9YvCUR2z_Q)#pRK* z2EKA{{}1;{Lu&T>QY)<5DIdNu^zM*O@(*Y#Efvhd8%xLW<3=iSN%_|2#J6wz|LO}h zlia9V_`_#I19#QDg^IDXiX+fSpU}4I2d&iVxXMI4DfsCpwWJvrCEQOH{n-YyS|L5H z`g3A}3b7qO`KwVCZ=2icN%9cIy(5y&|{~hZ34GGYg-Mf$*^7-~+*q^52Pu z1-tmK0g$#<5GIhLj89Lzd--_JHe0L>Z9bj^5&3Uo+q8nIBUPre0T_nakl^gFv(4gB zJs!vZew~TCxfyOzZ31H55JWIOY@UxjaaItU(BUd+PVmld!Z$(b?z>|xbx;w#Lj?-)V zhK7dl>8hsDK^efkZv`*@WRb)O^{^0E+oZg4m;84X##>qMp=U>D2s2BVx2ltSsYqN# z!7V?&>}%Mu)o9~ZxReoTOa59cjC7`@QDGqaB4X~HLDDyH_(%X*P{3?#BKeP;VzJzo z7o_b*zyFpsWGN(Um5%?Q`y=@xX=*VvF26o>KIm$>23U6bTF{ac$IQ|oj_TN!o<@(D zo|v}7yfPP%on@kVev4K{)DbKpbD=~xw)Adp#nDC>q&n1w;&C|d6_lpLK?DxLo*RTG zds~|AYmEi>pf(0(!+-NV<>Nii{YfXt)zRHszaKI2)ll4?|S@)GD{a&to54z0AI8m>Cr~UBuidMD{z%2KL{RV!_ zRZ7Zh_i0qGMIZcz)fBTE`@tGLEb8`lHlNE6>sE%G zZGC!rI%0eG|8N%`5+g$V{o88EMEs)DhP3VwmI!S`^8_eS3eit|+lYul51t46vQ$UB zv;t6njgQw8XuWzw5<6l2@aDUk%CZ0CrYbPCXw(!~Fre~oxKEMYk0VT9yAw&?Tuf8< zm)9gu$;r8LUl_+o>P!9m3pn0$9{t^H5X`qnI)J2#$CqGod`>>4o~&(K@!G=>c6XOn z@ug;u7MwAXN~(s#<0=Br7qWUZ?yXOVSNV4@?hl?rSJ%{Y_NNA(HAd`OSB}1106Q@> zq=iH#Y(`8RVT zFZZlpVmTHOs8Y^$9J*P4-%CZr4<(m51|5B`xYd=;U5W}BU?{E#2(xjeie>xbU6zD0 zG&{_lRo?0PNeS6&_wH-VXjE*vWBMonbIEi5iQ(5k0V3Nlm_T}1PIxz17w!lP4w{u8P?zq#Nl-@0L@xq-Gob_zj;9winuRn6;E`{@P8(<{W~Gp@TQj;erG~vLS2ynK=hlGj}SdbU*YY?-Bg!SV0;YV?Vg!U2T?LrOine{D< z9b@8!=KJvF4#8&hgUY^g5iLpeF6`1tXktyo2oG!@2;RZwV7wMQG1?ecWb6x-<)MxbFM{QC(Q<1)SGc8qG$HP7VA8R z%%p=35fhx>W^|gW$vnNql2dPGnOjiTpGXeWnd;tr=!*;*jQRK^SBWL`wFmMP{R?sD zSq~eHN&6eVJcQnpHFCf#XxWN_I8B3y2KdteJ~85z69>HkU7?wMTmnBn*R%%KGYK&> zIaFp+|5#$*ibay%`#T6Dbu0wDWnrN+9j+jf$$V#vw^V*K2i_h;>!06x_K0<^5K%rm zt)_YZ`+e5SN&MxRP<}@MVFr@E?v)mTCW@*YmJa%(x!)}O*GsaE*98==$kn-cG?2fS zE;Tzfp?tAupXKKDp$D_IS02!B_Zc&~x|#e3QPHkS$`MB&QgwcL>Az9RR@WdFs}{_r zXuQFC&w4w==bcSEC7-E>v6iG9D%S9iZ3Ibo>hoN@(yJ#-U%%rjFo4Z~ zUJL$13?vaeEBf3~a%N z?!O}L-*}*xk>=K5`j39{D#_~t)Jc&%X7?C+eNxf+2JzpV7=f@1RwlG8sela)J#B*a zXNs6GZNou`fi_^A&qdBrXVc@o8>~aS`j~}89``mb6*fVcQ;BmR_g%*2!|k6}L2OQ< zj^+~2rnFYZ?a~`vVWy>?JLIf;M{llDez|dKeekT9dWjeEQ#ncra0PE!M9ee9 zmeF?3yfHCr3=?Q zCepE&BW&;Y=>N-1`EfB?{U`_YO2$!#stqYGqWt(#LPJ;%I6Uz?;D9WR$e4*@tIg!q zI28L|eRM;qed)<66(>rGZxX2)`a|y!+_g|C+*l20NJW;Q*{GsjG)7=2aV&}Qv ze@0@L@Rk}BMOk0(<0`awF1KKN_Ey`}-yaPI2#i+PMBTq@7cPRCgR`SV4eYegsLQ@{ z43JI25aZwU;6Rk)LNojCzJv0Lt)FWCD-N6h3Kl3mCF&BPR*b9pXtDF~`s@kencX)0 z)0q8sYavSBFV8M|Li$1g^8DvA91nEr3;OaU^NZ~^I|TbGA|m(l!DRhB5;Gm1zjcaP z8c~TmHP>mCwFYa7m|y4W^#uirS{zu9JUkGi1p&m{S%Z|NffBu zwBlG=S~paH-1MK$GPF6R=AaaNyd^YfzIwpqZ|u_AU@?thN?GaVI$YRs`rcoj@QA)W zALmpvIX-jNyVq$5)*5wP?l2RnNM~MH4cG)=Smnt)V!BL-+cg_}e3V9eXvTe%G3H;t z{cI?K5K!T_kIodc^x?s@FqtN zz}9&x*Q_@DQ~mHiw16LrVX~EC(^Ba@@>dfi{=`6186_nvOBPEt7&{Yf{ay$0dNCQx zS@YAxc;HpCn?aHc!=Xn2t(z2g=uLGR^`;L`Ed|%YO$=$yQ2;- z{A+G;34W>7!jJ9af#0+|3U}ja=f7?EHTqMsu(JY!S^`wFfhAL}IT3BRpu6IyzX^xz z=;?mp5p&_|N?unU5 zIi|hBW|u!lGG2mL%BU658lJD`nR^pnLj%o$iySRDdoX+rcmG_QLJ2c7`Mjl-fZYjo z-s}js9J>EChMv9PXDw(aEEqF&8=_;EJL(VjI@_SbIR#7Mj_kC>YMe`yaaFXkkz<52N%o?o-?>iAAX~5ig!`4)&0C9J z^IbHC+k>*d?3X&nRkuML^i<@l4_;W zm@xHNHnchJY@q{qs#oQqA!8g|=fi)^Bip#J>%9HJ8?8fIt~uQPDjTGb9vR7qZw=-d z-Yw;{h0nhQZcA6G`Zd3Q@5uIAr!y%cGuvG=>?~Ji>$3juxSXizwWe^O!tLTP!f}3t zU5c0QVJfBum#fkubx7P5Xic=!OeqK##&@2fyAubVBgmXVx_`0dUQ)k$VRz?!W?{Wz z;D-h)*E%kF*I#}mdHQm3=H_FB3-|;Sj6Ft&td9FNuokbXiw2# zEiTfqoezpOij0psKi*2QMb|ocUjz<3QP^il75;;Wf#4P0JLOO!zHBZ%8|(d?vd!jV z==52p7DWLEu;5h3qp4>G)G)_lv9FNVza@vq9HqU+UGCGK4b{_Wy{-5w8o?91!|~wz zS{yfb6YYm3CBN|p_!hb(xAeTFi0bP>MfOKKjFh)QayxMX9=}X=Xt(YQsINvN{=}Nh zgGT|KJlMT}>^D*Xlbd#7!mefCZmy!QM}ny39~NuoL@j+DvX!!v+BYN7O?nhR{W7Dz zc+dgy+mG!#23olUt1r$e zun17B^H+4RtbjvR91ad3diWJry|Iz`DzR-wlzQ(LY4Vjv;@19*N&nut?-uGULGk63 zTHdlym(y6KUxZw4TLa}>vZ;WN$S>CFwA$_pQuS;ULWLar66yBkvi? z$SxJoN8Wom$-ErkC~uZYC)vb&%<=c;b=*K}O&#t!U=HX4fm%J*rC3`f9!g1}4bM3z zLF#=)DyZ5vXkwdcBhrsi=MeoS?8tfkW^F1YOIDWs+GIdB`|@NpN@=;%s(Rn&&6Br| zuUsnD=&servnLQ;OceX}k)5w6uQKB+MwccsA-MJi(5QaZjoG26lXbhYjp;v$G;XMs)po*2kY+Pt^hcho%r$K2D2d3 zYP)y~@+C8P(`qA9Gt0p3nMWV?-#a^PH{ja|HuO$`HwxT*GDCrx}T3X=F z+_L$4OM`4t;S5q|JcE_LRJvp0VW$#!cVeAaTcZ!@_MI@My%YY~+uo#Xy~)FhxFt6C zxUJ|_?6{=G!?*8d#y=Fy&b=8ympZ!5@jqP*qEHC?%S2Aje{_KO%F;L}%FV2qRMXr+ zz3fA)7!p zzpy&n{hio=4rFY8*@XKMTu=IT3nRYMRAE~V#e?=1+R2yL7z-2E-fiiq+-{(@xc}3vv8dk}M}8e~V15n^IE$D61paTOd-e z#BFXpG%PnA?7#tVZp?L=eG;j2BwcL8c}X$I<8%L&6w0%I=iDU&g6&A@xE|)1(KhcS zvp0!qk0Sq9rnXglX90ZW#rotukprAOU+jRT+_-gf^>0_h(ckkGi~imFUDjmx_~Vm# zwp=B8N@S$}L9msA29Krg)W}UsE;PjZu=|2VIGJBHtP0P6KivwDE#T~sPlBS40!<0! zX<#QehNO5~rSisB`JxP(Tu&+=tIuAxW*;I(+aH`6?wXJ1Wx+cP4xCy(c}>eRy0Bsv z&@|i;YpHe%OB--UePXW%XWA@Pjep5iB4jViu_GGa396-4x-2c9sD*4vnonSqVoPj42Mrc?`tnz`W<$~2gYgs&K_1MePyM{ay4NcT%PMxs^oWV;x zkPD2=#mkG}%5&%}W~24u^FZZ3&lR|3QW+?SDoa6ScQ@w$#%Dm@Dp4PwfRsd@Tv!o|?1N^wXt^e@HE!i^u=&2=>F*$PbUgqDd$zuvBaJznFMe zDqtp{mdd!1Tz`*cQNgo#TxKI5FG#S^I0k=oed>Q@E#>qvje+!8Yg<^A)Qg6Zu$JG| z*&mmX+jknpTD>)di$H6OYU+cwO`8X4A%Z$`w3HMQtHJd{2}!a!1uIvpx#~Wb=DFWB zTL`-YqL?e+XgsvcXEfk?9*gnXb35UZ-2F>o%%Y`d;|)+ukh@(D)pQxBKGBP zv%@4Fu0>@ZL)mNHBg*Yhlq$|$ijL-E@RlLF>$fNGoeK_kye@2)-oa#@iTZ`>&|hbf z*b<~!=aCSwD!7%~4H+z(`tg=7r+fTOQ_eV1eqo+#hNtJ&d`WdLFKN{nKTrxCY9jwk zg=K1zS{3DF|M_(%n48w!39{cia-+T6DY3WT^3$C~>~bxFTCte^Ch|^~YH&N4FI%?B zvhi%B^@IsZ!NG?`SZlDj0=#+%*_lx!fE^)_$8CEpHLb}mg`Q_{%xyvQw%#Nxz={~e zakU{{!Kh`Tr<)r2*T&}-=|nlxH;gE~B#qs-hl5|;zeiYx4w`|Ppt{%fY_q(52azsu z+C5EUgWM~1=~nxN?B;D-pmQn6@K2{q`@EYjs_vB&6n}XeB%}gnqwTOj!+;O<4QdR3 z+=cC^R{#bszFZ%T1x_l&WOWN%Y4fA0V#j`pX0XrnCndIKKU{CfvB z|0POUJcdwv?1MYn*oTx!G(nz=Dt!l~!QY1+TN*65w4ip{ILmxeb31qgPs7!*4@4~` zP>WYZ3tArt5mgS^)|eQGW}E2dp~}4meMH>=#u@2T*5Kbcb_qPkqW30SN;o?QaA=p` zS6BDh$^~IAiRbqSyjiC;FJRX{fStjIjK!7<>c&+gy*WzWChoM1Zm;NjZm{|;#*6Y2krG7AIUx|aVj z;deU!izlj7Fqef63tG-m#gy#*v?30@f!5w5pXy~f?vxW#5y`)oTr}eAQ1(ANu(u&c z_nq=NRKkrU;z%wh&Kp`MfgU=12eb}s$0ATm=nH7y7sJK934(f}6h3if0_CGsA(Pho zShZuB&JdhIXC=!uu?|Sz9~Qx|kDybSN7@K-4kfDF^@3qSLA|4Pz2oK;yEb1gT0p6t zSoYgHA0R!(iR99pDt;&fdDi1L74&Aqi?lq4ccu2Bw8kUU<^eO`i3j4D;jNG5;QklP zgNmcb_|X&ENNDb{nP|kNsL+2$B(%UMwCtD;uthkHkp<=T1Orb~> z-$uTqvlcjh3&B{+r0>5kD&SWsT}=xfy5_;jz7zzKW|?Y8OC(WDs?G^tOs6h&*;e&KaN@ zGqNcx-Zr%vd}QGv!!qaUyjLlw`T!xUvXC-4^^P+w+B4_w}} z-12OW5Z*;3_5N{DH9+tYqqA<&ec-U_spC8tx$R%`pbpg6%SmpRG_R?O?Yu4uN<2%o za}!!Gu;zrcb`GpRRl&d2@&T^w*n>Ii&_>L2d&aj^__hj63xZ`Z?kxNqoU|N(k{#lN*Q18R21;LxRVx9yVdb zF<g#_Tb{vx{f?pN?S6N`-+Hq7OwmnYnlk2~0}-m(vd0b~~>Ez;wb%H=aMj zXZ$Yk4eAb8#-3KW$pqs=RTs|Nto%p-zH!80sUbN4sZ2Jb`%4 zpkU-`K2e`HNu#c6o9T~y#xt{J-iBMLk)F<_(^Rwb#gCiFaQr$I&&i0n_9_Qkzi$O% zH%G$lU)z4~*%r9G7!7>a#hpKmD_Auj0?*K(P}n)-XbDv@x09b=;Wyd;i!jw@ja`aaW#P@-1XF+?m|O6lZKOhIojM5LDX_Mr^;V>Xv=TOz zG3+tx$Wh^ZuNd8)H(H;3E;n2$p5*NPP1HJT|L^qv1x?BjT5nUyQuU?!HA`TZ?MmhXs$61obV1`+l6HfkgrI7<8xseB$QEl|G4SriY zI$2;u%mbvyX@Nr%+!FFEX0UA+rI*`_ZEa1*q#z_^OQB5vXGIa;r>gX2ZkUz#fjVS( z+piXHzoa<^u%a*wcQvU)$O|igChg#~j2Fu4tYb`9Z zDraNoG`Z);n1@_%O29rQKnErkfqivCWW5ZdM}{Qru& z4u7iu?|%`pn`D_A#$+}cIX{MDV!y(gJ_)1~&eaN(UxKDp2Mg^#!MKPxdCUj${>542GakG-;% z5Rum{chr83*+=(jQT@7h-B%^jVkGa~a5QMnkQMXR^P^3?u2kn7k;gP@4D7Cy2~JRYY#JZIc#G zu1;6J`@Uf=x^8-p@y^cJ+cRo+{zfQ|I1% zYz)fN;whF7Fu_yel6Sd;ajR|MteJWFKbB-r5`D4Mcw?K5&EP@GOg3Mgk3RY8ouukC zB;P73osrP-#1|S!krA6d;I&^hppBYrB2Ir7M@I&Rul`9^V$f~87EmdV2fa-(xQ7JO zAMzAc_xU_}WH##b$j9uUVjmIZM<5yAY_uI0U)yz5n-&JPu2oZ=2x^~x_aonIIbnoa zPLHoV9h`(3l-E$IOb_?T*kBD5W2(@`1-OCMgFf%B?dtNY13{5?rm49)?yi~#-}B!L z*MjDDN=9NX_z_<8r^ZO)t+8O8u)W2kJ)1kDf75?%862#zV$bn29#zx|EAmu-J^Ey{b5!7m8Wku; z9P>cV_q0?^?1eWU*{%DG3-?N6%A`@SoHAyP3~bTwXIe> z1NH5V$r~T`^jXlsQ-XKqEShCY^?M}Fl6_o{#>OoWcUZrf_df*wCi=11_5l&`(GlU5@gkF%J!Vh#frWnP{lMWAo_7u^V-5bP!CwLpKNm<9QZPSjS;2(tWmmX6E(^2P zjd9SV{3&=L{SqifvSH7NcAI`Mx8&U~IYvBItjMO^Fuo}2Yk1&rbh1eKQ=npO6)fvMq!0I zqUjJrzp#sjwGZ4$*`2#%hd#kYdhH&&B1zTs{(f20f0}^F|u?6PYu>G z8@~Os5V|W4E7`5Ky%?6iCk7Wl73%xENp5+$FX1maJC}Km+TW~X-`~78oIsKKOBDrv zYlxjmF;GTVo`xzHImrW)RaCRZ>#8=##yJ?wRAO zcMMZEbFh2vmDChGl)N#dLb2QA+-ig#w|&V=i~9FMm86MDxU zA^nppd}nFI;(TR3;%B?jh>ur)zcf#pk9Kta?Y3YXWztxXl6hTgcB^q4S@IJ~7LgwO zI{ERln~8;@?a<-T@!#LQ=`YdTm`_%^h94V`J7l*~7A1xsJ|uY4hYEorh#Lyp&MCx~ zRafN?44c|ELr;$BKaIxbTXS>GG})Gr+Yl+>0vA$WokRIG*6%AjH`Z@B_e+emV z|H*`!X?d$OdJlDo_De>)veG0%nJm;hhIPE@@m>2Th5QA8imfFg>N%*fQa!BBcrD*B zS-etff>8FPWj5G__XA_D`HM-@yWz$O)>(OZXK2oRa|o2d{b8l2xLC;xc_`>SpIOQdnAbR%Cr&noVBG)L42OfVUAtnkxa#EUnwYwi0Uy07wi}f28 z?Zb`RqS=%XQ^x^=8J5j6&HBm(QLV@6aHtC;vaMm^wcKq#uY=(uYayNWukF$8h>_j{ zuSHAyZHT2`1}YW*Fps;0Mpci3|-0#A&nti55{B{RxD z0VvUhD2(J6I)HPR_RfW&yL1t7iX;o&021fj-Q0?uFI$^IKX1%jaMn(JF8KYQ>Wg03 znJ%*!k(B)X7VsABBQY%tb=lA#Z7Wq?et_r;1kI*`s&X=xO!n-Qt9L}HUk$08qtJ{b zm{h$JdPagO)+PRy-!tIlYoPvoT8NT%A3^mNkzpXWkckK^f5slRSFd85zRJ_BT^p`|L2>VVwt?o6`?7zXi)y>fmZKl)Ge#fKY1NG{@Eqi{*4ONcF)_l;x$Jw2ek?t$3EQCOf0vk&&fllh`PD`QkY!8*h9Ale#@!bvBL z*L)bC5ZhTQq7j*W_R77zG(s$OO|26;qYqAV;4HYUoU6 z;RWhyy(2J3Ugd~qcGozo@!+i|UPy-Tb0;a;b98G(hz0()IJ(+J>`*WKJ^>dYRHs}b zmgRQ##Sy1Zw2kzPiWDj0&?1;90QI`$u+-$1a*y5+Gk|_~gP%3&%rg&U1h>w^L3~;v zNw*#5ZEU_#3XmBSspN<`LlGlur^>48F?8ew;G9_;X_Q%K!XgH88_XnPJhX3;R?Btl8_o(cN6g4p81DBC5h?owkAl`&Edh% zlg7^?KfEf+j2|(DfltWWLdKViXCS5nXU62gGmYx%gmz@n=`k zi3TyD{HY4mJN*$dwiH_Nffub=mB?yWtESL;q8koFO6cbd0u?PYYI+8_cKrKyK)+ox z25RZt_J0w%(q1GHMwc+^2=OhD{>W&2i>=9%}I`=8SpOVAZ2nAAFy$2AAah0NoE`TZ5%eH;)=!GUfWV zpvNcewXX_DimHT%GtG78nD73rX(!dzdrgc;VvV20`|M>Z3E3a*+L zRLFu){U?WnIU%ltULW3(-hsPdGE0xyI~RQDPT696bk(ayrT(m=6;Rs)iep?``|79$ zZkAPnRX*~hwxHQ(#(Vta3IcFdSOuQfW`FwjZ*$aVP0pfiuEvzDT0SAPc@?6eG7;^Eh4DRsRk!$;zXCFqo$6Ic*gX*d@Tow8947obfZ78`u#kZFV zUW2l#*PMhF{`Bc-p*Qr!np!!{ms5f~SkANuzFG)h5SR>y1-ACK&{wO5ZhUmh+qQZz zbEkPp;yL?d6IQFe3`fw^3|9aKKLKRUdYJ|bU%Lsv;k$&E@Hyx(%horn_6tWetdr4u zD33hm^hDxx(1$mX=vi|%1cg|+m$_2D(VZp#93@A?b!a1wcB4=LV0nZ{#9X_iu)M#E z3%Rc5P)nNGO`U~BzI<~Nq@I9P6bri$9PSNOPxOp@`*5)U0MUVz}ifO>Y~y|}_Se}?V6 zlfBXOoiSX#vUm#nEn9 zpOk+v4s6N!y1M?Off$);aJK*u4PrI=p*An09^5U|Id9iOZDBkliM6FyV4p&t9AoFK zLLy@k{KWl(%-E=;{=JJ z+8(+z56GpVktrp5#W(c6J>-OUhFEO%Nzp-7KD_jyoxa$`CH1k~XS;K)kJ^Fgncwvo zsPG1=kgZcjV#`_Qmp017I83=UvYq9ocJ~yq;3xb-%@v<}s&(OS&}cU2^aFuYA!^lW zxbNe_(|roCGG|l~b?Blk{^6}lEFS-(Vo*9318zH+dv6=0FyeGE?OHVt?+4Y(7pUGr z1VLY5O_fT(f$kDr@1|{AH+k*M#km?gtj4p+rku}=+R1Wny9*GnFq~QS7IITP7vIBo zl@aNx{jA(k3Ev-2x2*<`)@tZoR}2o&a9~T;fEJa!OS!US+na_{{$w=$VLzl)>vP?Q zvP_|!czU~-Z*O{Qa-;7(NiCQSy5BVGeK^Q=)11-dpK=8Ki8=HgVCWUCJfl6g`1=K@r|nSK9xT06lK=j}y|^A~a9X_8& zWNTa*Bu7ga!4HC|`)+zUGleM^a+1BtRal;|okP&h3;i)*;#{{R4oPfMP>uK9=u|sV zwu(+Z*bAM%PxoQu$`P>9F#Clv`sIukM}|R{A=n>UcDa;T`Z!RKV5dp;JUP;!L0&y= zdj~y?d2Cg?$$9DWC1z9|w|h6wXH>V<9EMgZo^heNt(mE|^rd4S@R7{SGPDeJb++8j z%RcB?Pa;>{aP+R*V_9vfGXPne(lZXUrT;*%HOog3?@KmCbDg0y&^vu;nFg^vk-qw= zZqC)Q>Qc$G4tgOmGQ`Sla9UO&Ms5X~Q^P0^SZ+Ig#(DK>S52!;c*`ttzejO4l(OKW zCoJed_vfi~jNJ+QgnJCj-8l<4rGGte^ss|C^Jt*K#x2EzY<{4Ke{GAD-ikF7o_ulv zyO?0FIgY@^kIqyEkggdg9S5aKJ8AjY{cd>fyQ#aw6g>HDD;Ki$gXK*#h(7mR`PTKJ zGKV?St^Y~Nnla(n|$5T;Hz@1u%d z438Tk+PGI0yx2eH&sc7HP-|?hH;5cvJ>ieVtl-sa%u%=W-VOCj^T+?>#oGJ;H;iDT ziw>q%?OV0h^kH1qC55z zZi7z!-P#Jp%#PiVzb^3!-qxL}15tRb{8l&v$Gtgchdwi1W--y*+u4?cWHwayLZ24> zUTbcaH&zamoJj^`CxX~vN~yKMj6c}gco;Tri^I$vvakQFwQFTv7Ah+cLy|s5NT(~R zXP9b^6@KU97HFHMK0;z##U7P>a{cn*E=2yFgS$TzEI~eA)u!Y9$H5|Axi0Gms9>RD zec5Of9>HqZOQXBju?jLLeWyZ8yKUl4^059yO{rpi9$v}5c0d541n^xNP;%CA44_(C z=KJkGbMKkY`y%mgdL`e_+B_%4NpU(-=bmuPg&5dR_lOcHd691d6RRGyem3KBB>P84 zH`>EUo=yz$Ei3XokMcQJ%ry*q#slv`qS883`v>2Vjg)gtif9)0iuId?xj$nf;D~;9 z-^Djp%5GlVf-4dD-ywxoy)F4h-y(w7sxFcGnm>YbTBp{JC9; zr)YgI_wdh{El~3-n?lSxe~KH=0W8V8FT&9 zD6HCkM_k!l{eaERS%8PniP;piA82svH3_I;kMWBu`})Zmr*~WH)oS{9?QJUexg=iP z;5JoXyI?9KBt7hdTUayeO{y;g%LLE+sQ5_N3N7HWz5NFOxJZ zrc{WdIRS)Milu`bN>LB|su>zuw%l$t6?zF=MGpKYbvRBoJM~-7ESGh50 z2EYlsj9$vGgpf5E;4KN-&IkwRzX#*7-(wXt+Qob7uzDR58fdqSh_`&>{={^@=vn?9 zL1mb)*+w)x^oIVg%p^->de}h2g-4GU?!)x0`@Y=%?YQ}v|B-+rJhRB(6B@XT1}ZOT zF^v&=uWRoRpB6WXjGc5rD=M7YIfNtprbRzs%QiMsLt95&_>&=Wgl2f@Yr$#FG^RAF zNGH3Dr*;eHuyER-C zPpL8Xz`Axo&z%`cA}@|B1&tUMtYvi*zlu0_Q{B%(C!nOGDcLg(2&3!T9D5t`QXMxb z`rcPm!(KQO+SRV1kM=%t!PTdF*cCz^9=?3(|55Mj;DO!fLEe&wL zlDC(x)|Kf(t7jsV0Xat@_ z+Bxq*@90sfU6JK)RtwV4qP<_V(SMEI)$sB2fsD@5D<_S|W?=N?9!-xC#pL0OqFBZ9 zkM`<6XSw-M?;Sss84JQ97Ln1xNGoCXPR#RSVB8T^>GIfXEkTMaq&?%MkF$;?U z+8TVDb^!CY0X3Xe>X?WDD*W8s0V+Yn^CXt8R%u(uu$E*VGbD@DmWfVse#=a!J@#KV z?Jaj~D&(3K!Ue5JR!H5`7Taqteh`&!iR}H(sP%CX)F`W;CC<`({5YTZhnU9kZhuh0 zVy(j2uX$u=&Qm5PLt2fB;$PS1xTq@`nkKCE@d)0Bs^yQmovwsSxok)z;?~mGL-1|- z_lK4qW7dvIuAw?D{@qlHS7)|XKVsLoj}(o$_zQfuA-azgJ8OAVtZdnDOC5965^~3^ ztuzo)q)Qhgb3hTQ{P(R*3K*dSZ*=X3e=QhES4{0ZNZk!t!DWATJdNDcbUMKQY)P+A zAp^>XPs_|U^dn~|?Fko_{Cut5BH|PlJFCc&&6gIGG?yETH!Fz+V;gw2JmHL{*FKP} zYg0TusX{lhpdmJ7cYJ29LjR?$hnq1JQ^bK|?ATBQ2S=UDx5cR(4SRY>^a!-Hv>E4x z(qn9+mPwsk3o!zItI3sm3O)!UUcXg2;5e#GXE0%sTULoMFKxBJ`vxUk=$MQ7X=p*pq z#=2Ms>*#lgQPL?@FgS|DeZlE1)=WnePL;v-l#1CEfR(PM+91nvO~(O|AGEK3Of5Pt zSJ{rJBN}1LQ!fVdtY!9{9w^4H9&&JN9LE( ztu{VrV|`R59>Js^d_rI5Mb|ni(K7qx*zBbGjqZBEAxkX~m z&}vxwo2d)H`0yfSJj~!M1IKbwldR~)jw}2D3FXt$d1+u?Wc2Y|KOI~c(nYcQy0e_D@PiU2KF^|X8`A8N*LhIXNJ-Oa!6#MH$-A5I` zqqfd{^dxvWKY9B|JnK*ol z=&F|Y{11v}aqUqLYm8`G(!u+-*_u8E! zEQ-GC6`%@>!5{Pb(66gR8&^zIwva#lG?|CFiNj-@6Qy^TjsOmsrlwJC-zmOY@tLjjslBBQAu@q8vrR3u_b_$L zQrp=LN)_c&vm<##V@&1vDDRHHj^TvRPtbIY!;rh zU^bzmyLa!s3tn_w?n#fkmK_uywe-EXq}vYf(yf*Hz(vPGLS4J#@t8hRLn|qeu$gGN zP*{n9CqHJ6{e?;@9^5(|O|-GM1Fi?7Bws3j&^O8q#`7u)@PS6&>K^5;%4 z$f>MIEnDLTqd|`kV@qqz-LC+OC^NUsC}`33(bm2k>%U3D8m04SagrBmN-3x;3Gp zF?7dl6JflCtuvyCZlKX|*ljm%$p+SUrt`tWX&nY>>!T zI{Ajwg}e=@?A>l^=q?B4!EV48h3r%1eK0om$LFbf_`0crwJQwx%NIhu%Bow6Ejyb~ zcGQeE8gU-R0}cYEZn&Zr>`b-o#ru}(!}lYbj>a@C^P;1~#q%(`-h1pTsKA;XGwnin zsD`_kP370jkseZ(Y%4j+;?p^67G*0|?9AUb)aDd|Yzwk$AbxjNutOM%&FTs_IVu}< z5Qic|S5#MvH2QKDc`c-=-SV^AMb*l}R^dXmgwjapHHDO+DK@eJk&Jt>ZP+I7W)@Z< zyyW&#>e`irS+&l5T9VGJ8#Fw~?3)=lrNxce-s(wCX@y%8C2;|3u z=yIRB@PmU^OMf7c=BnTIidtnRutqDUjcd|7x^*e;*OoNNM}q;rC}amgU(Y!4>)CfY zMH30g3%)#6xsSdQ5~4Jqhn}1A;(GS09lD0q2h-)8I^P!~so_V|L|t%Vl`q`?uu(cE z{1{B+jyRS;8B2t!HB>8dkN4`q?Z3QwVtwIt%Je{1=O1IbEx+Q(cTKZL3nugOi#Du4 zPr0R}>rD}!$~ms`OY@#4$QzN=U(MDWqq2@ueaD0qd#lxzqh_#K<>O&Od!m5g_~`MZ z{L>3U3U7C3SLdn0 zZGQpvMCI2%;pW6b$asdt0{l@^-h?NVrUG~qFYwY%pHjo6acrV{QoS}9%sERp z*0>X3Tdjw=DfCl+kC|nbhVbIcYY?jUB~|Al`)M}rsVf+KuCza zoIdnK?88Slvc%I*2DMx!PZ|4)h#P1Lv&t-AG*|TJN@l>v@Mn1i8;lb-&jRECT9+5d zU;NK?&{e&p`T^-yS(LsD6>+>NmIwHX`0y#!-gc#@FtU*~+%H zePpuk#)6yqW8-QdBL8HCsKMXsSd39hf7Q$dt7iLx5PIObq>etiQk#?CC2G~gmc9ZW znja4@lDlQR6BvnZvW_h#ZJ&ozL`JK|-2Y(AhD1CAFtN5vPZnd=D^!1+9sBaLxoj$V z2}U}PuXBW>cA`_hyVu%_6hNvir1hg-Y$G&^)bB5;&TML5Bwcwv_=b!7q?f*{`nPZo z9*YEAzz+NMH@4H{9Y`Ubfns&~El-E5sYI{l%FN*wo0EdL`<$-P8lT7V0Pl(;|C|Lx zEXC`HY5Mtx6Ly#3d85SFiUp@HAt4X$^V`W3T&D25WkKyR*GWw literal 0 HcmV?d00001 From 96d006f551e78e5118da2bac4bc9fe379ce74df0 Mon Sep 17 00:00:00 2001 From: raspy-on-osu Date: Thu, 27 Aug 2020 23:48:19 -0400 Subject: [PATCH 91/94] oops --- code/datums/explosion.dm | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/code/datums/explosion.dm b/code/datums/explosion.dm index 2de7d2da7d..8c8906a95d 100644 --- a/code/datums/explosion.dm +++ b/code/datums/explosion.dm @@ -106,21 +106,20 @@ GLOBAL_LIST_EMPTY(explosions) far_dist += heavy_impact_range * 15 //from skyrat13/pull/3295; carry further far_dist += devastation_range * 20 - // skyrat-ss13/skyrat13/pull/3295 - var/sound/creaking_explosion_sound = sound(get_sfx("explosion_creaking")) - var/sound/hull_creaking_sound = sound(get_sfx("hull_creaking")) - var/sound/explosion_echo_sound = sound('sound/effects/explosion_distant.ogg') - var/on_station = SSmapping.level_trait(epicenter.z, ZTRAIT_STATION) - var/creaking_explosion = FALSE - - if(prob(devastation_range*30+heavy_impact_range*5) && on_station) // Huge explosions are near guaranteed to make the station creak and whine, smaller ones might. - creaking_explosion = TRUE // prob over 100 always returns true - // end port - if(!silent) var/frequency = get_rand_frequency() var/sound/explosion_sound = sound(get_sfx("explosion")) var/sound/far_explosion_sound = sound('sound/effects/explosionfar.ogg') + // skyrat-ss13/skyrat13/pull/3295 + var/sound/creaking_explosion_sound = sound(get_sfx("explosion_creaking")) + var/sound/hull_creaking_sound = sound(get_sfx("hull_creaking")) + var/sound/explosion_echo_sound = sound('sound/effects/explosion_distant.ogg') + var/on_station = SSmapping.level_trait(epicenter.z, ZTRAIT_STATION) + var/creaking_explosion = FALSE + + if(prob(devastation_range*30+heavy_impact_range*5) && on_station) // Huge explosions are near guaranteed to make the station creak and whine, smaller ones might. + creaking_explosion = TRUE // prob over 100 always returns true + // end port for(var/mob/M in GLOB.player_list) // Double check for client From 4f2f6b537e393069c1be24a7a78b14b86a8fc04d Mon Sep 17 00:00:00 2001 From: raspy-on-osu Date: Fri, 28 Aug 2020 13:44:41 -0400 Subject: [PATCH 92/94] credit's already given in the pr let's not --- code/datums/explosion.dm | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/code/datums/explosion.dm b/code/datums/explosion.dm index 8c8906a95d..246226ceba 100644 --- a/code/datums/explosion.dm +++ b/code/datums/explosion.dm @@ -103,14 +103,13 @@ GLOBAL_LIST_EMPTY(explosions) // 3/7/14 will calculate to 80 + 35 var/far_dist = 0 - far_dist += heavy_impact_range * 15 //from skyrat13/pull/3295; carry further + far_dist += heavy_impact_range * 15 // Large explosions carry further far_dist += devastation_range * 20 if(!silent) var/frequency = get_rand_frequency() var/sound/explosion_sound = sound(get_sfx("explosion")) var/sound/far_explosion_sound = sound('sound/effects/explosionfar.ogg') - // skyrat-ss13/skyrat13/pull/3295 var/sound/creaking_explosion_sound = sound(get_sfx("explosion_creaking")) var/sound/hull_creaking_sound = sound(get_sfx("hull_creaking")) var/sound/explosion_echo_sound = sound('sound/effects/explosion_distant.ogg') @@ -119,7 +118,6 @@ GLOBAL_LIST_EMPTY(explosions) if(prob(devastation_range*30+heavy_impact_range*5) && on_station) // Huge explosions are near guaranteed to make the station creak and whine, smaller ones might. creaking_explosion = TRUE // prob over 100 always returns true - // end port for(var/mob/M in GLOB.player_list) // Double check for client From 785a99cfd1b5ebea1abc72b0dda1cc6b0d247bdb Mon Sep 17 00:00:00 2001 From: Changelogs Date: Sat, 29 Aug 2020 00:13:09 +0000 Subject: [PATCH 93/94] Automatic changelog compile [ci skip] --- html/changelog.html | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/html/changelog.html b/html/changelog.html index 0a2a1f3086..edaf74afca 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -1477,16 +1477,6 @@

    • support for custom blood colours implemented, slimes blood colour now equivalent to their body colour
    - -

    27 June 2020

    -

    Detective-Google updated:

    -
      -
    • Lying down is better
    • -
    -

    timothyteakettle updated:

    -
      -
    • felinids now nya when tabled
    • -
GoonStation 13 Development Team From 98c26bca04bb19a717024fc1f1684eea0246cbbe Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Sat, 29 Aug 2020 00:34:44 -0500 Subject: [PATCH 94/94] Automatic changelog generation for PR #13282 [ci skip] --- html/changelogs/AutoChangeLog-pr-13282.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-13282.yml diff --git a/html/changelogs/AutoChangeLog-pr-13282.yml b/html/changelogs/AutoChangeLog-pr-13282.yml new file mode 100644 index 0000000000..877c0f79d5 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-13282.yml @@ -0,0 +1,6 @@ +author: "raspy-on-osu" +delete-after: True +changes: + - rscadd: "new explosion echoes" + - tweak: "explosion echo range" + - soundadd: "5 new explosion related sounds"